From a521b23072b1b81c3f84679b201a6fa7a9310113 Mon Sep 17 00:00:00 2001 From: MeltyBot <105875157+MeltyBot@users.noreply.github.com> Date: Fri, 23 Sep 2022 13:38:21 -0400 Subject: [PATCH] chore: Release v0.11.0 (#989) --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- CHANGELOG.md | 16 ++++++++++++++++ .../{{cookiecutter.tap_id}}/pyproject.toml | 2 +- .../{{cookiecutter.target_id}}/pyproject.toml | 2 +- docs/conf.py | 2 +- pyproject.toml | 4 ++-- 6 files changed, 22 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 1fbb56515..25f9aeb13 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.10.0" + placeholder: "0.11.0" validations: required: true - type: dropdown diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f93b7c0f..d46355d0c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## v0.11.0 (2022-09-23) + +### ✨ New + +- [#968](https://github.com/meltano/sdk/issues/968) Added cookiecutter support and docs for VSCode debugging +- [#904](https://github.com/meltano/sdk/issues/904) Add support for new `BATCH` message type in taps and targets + +### 🐛 Fixes + +- [#972](https://github.com/meltano/sdk/issues/972) Resolve issue where TypeError is thrown by SQLConnector cookiecutter implementation due to super() references + +### 📚 Documentation Improvements + +- [#988](https://github.com/meltano/sdk/issues/988) Add pipe before SDK logo in header +- [#970](https://github.com/meltano/sdk/issues/970) Move cookiecutter TODOs into markdown comments + ## v0.10.0 (2022-09-12) ### ✨ New diff --git a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml index db5126745..4d6ae5506 100644 --- a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml +++ b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml @@ -12,7 +12,7 @@ license = "Apache 2.0" [tool.poetry.dependencies] python = "<3.11,>=3.7.1" requests = "^2.25.1" -singer-sdk = "^0.10.0" +singer-sdk = "^0.11.0" [tool.poetry.dev-dependencies] pytest = "^6.2.5" diff --git a/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml b/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml index e9196d1a2..3b5592957 100644 --- a/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml +++ b/cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml @@ -12,7 +12,7 @@ license = "Apache 2.0" [tool.poetry.dependencies] python = "<3.11,>=3.7.1" requests = "^2.25.1" -singer-sdk = "^0.10.0" +singer-sdk = "^0.11.0" [tool.poetry.dev-dependencies] pytest = "^6.2.5" diff --git a/docs/conf.py b/docs/conf.py index 1ed7f6545..551f51193 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ author = "Meltano Core Team and Contributors" # The full version, including alpha/beta/rc tags -release = "0.10.0" +release = "0.11.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 5da81eb71..687e23aff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "singer-sdk" -version = "0.10.0" +version = "0.11.0" description = "A framework for building Singer taps" authors = ["Meltano Team and Contributors"] maintainers = ["Meltano Team and Contributors"] @@ -111,7 +111,7 @@ markers = [ [tool.commitizen] name = "cz_version_bump" -version = "0.10.0" +version = "0.11.0" tag_format = "v$major.$minor.$patch$prerelease" version_files = [ "docs/conf.py",