diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 25f9aeb13..8c6b9c816 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.11.0" + placeholder: "0.11.1" validations: required: true - type: dropdown diff --git a/CHANGELOG.md b/CHANGELOG.md index d46355d0c..3920d0733 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## v0.11.1 (2022-09-27) + +### 🐛 Fixes + +- [#999](https://github.com/meltano/sdk/issues/999) Absolute file paths created by taps running in BATCH mode can't be processed by the Sink + +### 📚 Documentation Improvements + +- Change `targetUrl` of semantic PR title check to point to SDK docs + ## v0.11.0 (2022-09-23) ### ✨ New diff --git a/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml b/cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml index 4d6ae5506..046738619 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.11.0" +singer-sdk = "^0.11.1" [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 3b5592957..b31609932 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.11.0" +singer-sdk = "^0.11.1" [tool.poetry.dev-dependencies] pytest = "^6.2.5" diff --git a/docs/conf.py b/docs/conf.py index 551f51193..ef118053f 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.11.0" +release = "0.11.1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 9cd76326d..a7fb093f4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "singer-sdk" -version = "0.11.0" +version = "0.11.1" description = "A framework for building Singer taps" authors = ["Meltano Team and Contributors"] maintainers = ["Meltano Team and Contributors"] @@ -115,7 +115,7 @@ markers = [ [tool.commitizen] name = "cz_version_bump" -version = "0.11.0" +version = "0.11.1" tag_format = "v$major.$minor.$patch$prerelease" version_files = [ "docs/conf.py",