From 04dbeb29cc7e549a130092bb9232971429e2bde4 Mon Sep 17 00:00:00 2001 From: MeltyBot <105875157+MeltyBot@users.noreply.github.com> Date: Thu, 21 Jul 2022 19:27:27 -0500 Subject: [PATCH] chore: Release v0.7.0 (#850) * chore: Bump package version * Update issue links in new changelog Co-authored-by: rwfeather Co-authored-by: Reina Feather --- CHANGELOG.md | 17 +++++++++++++++++ .../{{cookiecutter.tap_id}}/pyproject.toml | 2 +- .../{{cookiecutter.target_id}}/pyproject.toml | 2 +- docs/conf.py | 2 +- pyproject.toml | 4 ++-- 5 files changed, 22 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8f8523c8..3d02b23c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## v0.7.0 (2022-07-21) + +### ✨ New + +- [#785](https://github.com/meltano/sdk/issues/785) Output full URL path in error messages + +### 🐛 Fixes + +- [#815](https://github.com/meltano/sdk/issues/815) Generate correct SQL target project from cookiecutter +- [#782](https://github.com/meltano/sdk/issues/782) Allow lists and dictionaries as types for default JSON values + +### 📚 Documentation Improvements + +- [#823](https://github.com/meltano/sdk/issues/823) Add link to the sdk for README generation regarding Stream Maps +- [#813](https://github.com/meltano/sdk/issues/813) Fix PyPI trove classifiers +- [#783](https://github.com/meltano/sdk/issues/783) Document using pipx inject for nox-poetry + ## v0.6.1 (2022-07-01) ### Fix diff --git a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml index 16e240e04..b15f16e77 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.6.1" +singer-sdk = "^0.7.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 7bec7be08..cfd1d4d25 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.6.1" +singer-sdk = "^0.7.0" [tool.poetry.dev-dependencies] pytest = "^6.2.5" diff --git a/docs/conf.py b/docs/conf.py index 20307de46..c0bef7750 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.6.1" +release = "0.7.0" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index da95730e1..308c29129 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "singer-sdk" -version = "0.6.1" +version = "0.7.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.6.1" +version = "0.7.0" tag_format = "v$major.$minor.$patch$prerelease" version_files = [ "docs/conf.py",