From e99685a800e6d51582ac03c7cae3a64f2c36834e Mon Sep 17 00:00:00 2001 From: MeltyBot <105875157+MeltyBot@users.noreply.github.com> Date: Fri, 5 Aug 2022 16:52:43 -0500 Subject: [PATCH] chore: Release v0.8.0 (#891) * chore: Bump package version * Update CHANGELOG.md Co-authored-by: pandemicsyn Co-authored-by: Florian Hines --- CHANGELOG.md | 12 ++++++++++++ .../{{cookiecutter.tap_id}}/pyproject.toml | 2 +- .../{{cookiecutter.target_id}}/pyproject.toml | 2 +- docs/conf.py | 2 +- pyproject.toml | 4 ++-- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d02b23c9..83be5fa39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## v0.8.0 (2022-08-05) + +### 🐛 Fixes + +- [#784](https://github.com/meltano/sdk/issues/784) Update return type for `backoff_max_tries` to reflect it accepts a callable that returns an integer +- [#874](https://github.com/meltano/sdk/issues/874) Singer metrics are now properly emitted in JSON format --_Thanks, **@Jack-Burnett!**_ + +### 📚 Documentation Improvements + +- [#869](https://github.com/meltano/sdk/issues/869) Cleanup whitespace in backoff code samples + + ## v0.7.0 (2022-07-21) ### ✨ New diff --git a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml index b15f16e77..640d5c2f1 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.7.0" +singer-sdk = "^0.8.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 cfd1d4d25..ac8526c05 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.7.0" +singer-sdk = "^0.8.0" [tool.poetry.dev-dependencies] pytest = "^6.2.5" diff --git a/docs/conf.py b/docs/conf.py index c0bef7750..ec6864133 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.7.0" +release = "0.8.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index d4d0c7e89..983ff238a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "singer-sdk" -version = "0.7.0" +version = "0.8.0" description = "A framework for building Singer taps" authors = ["Meltano Team and Contributors"] maintainers = ["Meltano Team and Contributors"] @@ -102,7 +102,7 @@ markers = [ [tool.commitizen] name = "cz_customize" -version = "0.7.0" +version = "0.8.0" tag_format = "v$major.$minor.$patch$prerelease" version_files = [ "docs/conf.py",