From 30db0bdbc46c47cc742e4047fdc1a0f582b4f6d2 Mon Sep 17 00:00:00 2001 From: MeltyBot <105875157+MeltyBot@users.noreply.github.com> Date: Wed, 24 Aug 2022 16:11:07 -0500 Subject: [PATCH] chore: Release v0.9.0 (#926) chore: Bump package version Co-authored-by: WillDaSilva --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- CHANGELOG.md | 21 +++++++++++++++++++ .../{{cookiecutter.tap_id}}/pyproject.toml | 2 +- .../{{cookiecutter.target_id}}/pyproject.toml | 2 +- docs/conf.py | 2 +- pyproject.toml | 4 ++-- 6 files changed, 27 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 029af69f6..8103faed3 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.8.0" + placeholder: "0.9.0" validations: required: true - type: dropdown diff --git a/CHANGELOG.md b/CHANGELOG.md index 83be5fa39..deb909538 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## v0.9.0 (2022-08-24) + +### ✨ New + +- [#842](https://github.com/meltano/sdk/issues/842) Allow authenticating more generic requests +- [#919](https://github.com/meltano/sdk/issues/919) add `ConnectionError` to list of backoff exceptions for auto-retry + +### 🐛 Fixes + +- [#917](https://github.com/meltano/sdk/issues/917) Allow Singer schemas to include the `required` and `enum` fields +- [#759](https://github.com/meltano/sdk/issues/759) Use recent start_date as starting_replication_value + +### ⚙️ Under the Hood + +- [#908](https://github.com/meltano/sdk/issues/908) Allow overriding the bulk insert statement in `SQLSink` + +### 📚 Documentation Improvements + +- [#914](https://github.com/meltano/sdk/issues/914) Bump Pygments and update dbt example +- [#900](https://github.com/meltano/sdk/issues/900) Generate documentation for constructor parameters + ## v0.8.0 (2022-08-05) ### 🐛 Fixes diff --git a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml index 640d5c2f1..7ab8f15af 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.8.0" +singer-sdk = "^0.9.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 ac8526c05..2d7ecfb8f 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.8.0" +singer-sdk = "^0.9.0" [tool.poetry.dev-dependencies] pytest = "^6.2.5" diff --git a/docs/conf.py b/docs/conf.py index 53102ef6f..77fd4913a 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.8.0" +release = "0.9.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index efefd3353..6dad49de8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "singer-sdk" -version = "0.8.0" +version = "0.9.0" description = "A framework for building Singer taps" authors = ["Meltano Team and Contributors"] maintainers = ["Meltano Team and Contributors"] @@ -110,7 +110,7 @@ markers = [ [tool.commitizen] name = "cz_version_bump" -version = "0.8.0" +version = "0.9.0" tag_format = "v$major.$minor.$patch$prerelease" version_files = [ "docs/conf.py",