From e6f604eb0d1e3127f51c3a129e3f8c0c122b6db9 Mon Sep 17 00:00:00 2001 From: edgarrmondragon Date: Tue, 5 Dec 2023 17:29:30 +0000 Subject: [PATCH] chore: Bump package version --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- CHANGELOG.md | 6 ++++++ .../{{cookiecutter.mapper_id}}/pyproject.toml | 4 ++-- .../tap-template/{{cookiecutter.tap_id}}/pyproject.toml | 4 ++-- .../{{cookiecutter.target_id}}/pyproject.toml | 4 ++-- docs/conf.py | 2 +- pyproject.toml | 4 ++-- 7 files changed, 16 insertions(+), 10 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index f2a57bc7a..36729ec95 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -15,7 +15,7 @@ body: attributes: label: Singer SDK Version description: Version of the library you are using - placeholder: "0.34.0b1" + placeholder: "0.34.0rc1" validations: required: true - type: checkboxes diff --git a/CHANGELOG.md b/CHANGELOG.md index 793353995..c340f1f44 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v0.34.0rc1 (2023-12-05) + +### 🐛 Fixes + +- [#2076](https://github.com/meltano/sdk/issues/2076) Make a explicit dependency on `python-dateutil` + ## v0.34.0b1 (2023-11-28) ### ✨ New diff --git a/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml b/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml index e87c41bd6..c2908aacb 100644 --- a/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml +++ b/cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml @@ -22,12 +22,12 @@ packages = [ [tool.poetry.dependencies] python = ">=3.8,<4" -singer-sdk = { version="~=0.34.0b1" } +singer-sdk = { version="~=0.34.0rc1" } fs-s3fs = { version = "~=1.1.1", optional = true } [tool.poetry.group.dev.dependencies] pytest = ">=7.4.0" -singer-sdk = { version="~=0.34.0b1", extras = ["testing"] } +singer-sdk = { version="~=0.34.0rc1", extras = ["testing"] } [tool.poetry.extras] s3 = ["fs-s3fs"] diff --git a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml index 162c96bba..2480adff3 100644 --- a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml +++ b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml @@ -21,7 +21,7 @@ packages = [ [tool.poetry.dependencies] python = ">=3.8,<4" -singer-sdk = { version="~=0.34.0b1" } +singer-sdk = { version="~=0.34.0rc1" } fs-s3fs = { version = "~=1.1.1", optional = true } {%- if cookiecutter.stream_type in ["REST", "GraphQL"] %} requests = "~=2.31.0" @@ -32,7 +32,7 @@ cached-property = "~=1" # Remove after Python 3.7 support is dropped [tool.poetry.group.dev.dependencies] pytest = ">=7.4.0" -singer-sdk = { version="~=0.34.0b1", extras = ["testing"] } +singer-sdk = { version="~=0.34.0rc1", extras = ["testing"] } [tool.poetry.extras] s3 = ["fs-s3fs"] diff --git a/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml b/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml index 0c0361242..e0fefc92c 100644 --- a/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml +++ b/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml @@ -21,7 +21,7 @@ packages = [ [tool.poetry.dependencies] python = ">=3.8,<4" -singer-sdk = { version="~=0.34.0b1" } +singer-sdk = { version="~=0.34.0rc1" } fs-s3fs = { version = "~=1.1.1", optional = true } {%- if cookiecutter.serialization_method != "SQL" %} requests = "~=2.31.0" @@ -29,7 +29,7 @@ requests = "~=2.31.0" [tool.poetry.dev-dependencies] pytest = ">=7.4.0" -singer-sdk = { version="~=0.34.0b1", extras = ["testing"] } +singer-sdk = { version="~=0.34.0rc1", extras = ["testing"] } [tool.poetry.extras] s3 = ["fs-s3fs"] diff --git a/docs/conf.py b/docs/conf.py index 120171bc7..2fc5daee5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = "Meltano Core Team and Contributors" # The full version, including alpha/beta/rc tags -release = "0.34.0b1" +release = "0.34.0rc1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index ab873b7c4..ff78cb295 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "singer-sdk" -version = "0.34.0b1" +version = "0.34.0rc1" description = "A framework for building Singer taps" authors = ["Meltano Team and Contributors "] maintainers = ["Meltano Team and Contributors "] @@ -163,7 +163,7 @@ norecursedirs = "cookiecutter" [tool.commitizen] name = "cz_version_bump" -version = "0.34.0b1" +version = "0.34.0rc1" changelog_merge_prerelease = true prerelease_offset = 1 tag_format = "v$major.$minor.$patch$prerelease"