Skip to content

Commit 04dd773

Browse files
chore: Release v0.35.2 (#2253)
chore: Bump package version Co-authored-by: edgarrmondragon <[email protected]>
1 parent da62f9a commit 04dd773

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ body:
1313
attributes:
1414
label: Singer SDK Version
1515
description: Version of the library you are using
16-
placeholder: "0.35.1"
16+
placeholder: "0.35.2"
1717
validations:
1818
required: true
1919
- type: checkboxes

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## v0.35.2 (2024-02-19)
9+
10+
### 🐛 Fixes
11+
12+
- [#2252](https://github.com/meltano/sdk/issues/2252) Null type is now correctly appended as `{"type": "null"}` to `oneOf` types
13+
814
## v0.35.1 (2024-02-15)
915

1016
### 🐛 Fixes

cookiecutter/mapper-template/{{cookiecutter.mapper_id}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ packages = [
3131

3232
[tool.poetry.dependencies]
3333
python = ">=3.8"
34-
singer-sdk = { version="~=0.35.1"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
34+
singer-sdk = { version="~=0.35.2"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
3535
fs-s3fs = { version = "~=1.1.1", optional = true }
3636

3737
[tool.poetry.group.dev.dependencies]
3838
pytest = ">=7.4.0"
39-
singer-sdk = { version="~=0.35.1", extras = ["testing"] }
39+
singer-sdk = { version="~=0.35.2", extras = ["testing"] }
4040

4141
[tool.poetry.extras]
4242
s3 = ["fs-s3fs"]

cookiecutter/tap-template/{{cookiecutter.tap_id}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ packages = [
3131
[tool.poetry.dependencies]
3232
python = ">=3.8"
3333
importlib-resources = { version = "==6.1.*", python = "<3.9" }
34-
singer-sdk = { version="~=0.35.1"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
34+
singer-sdk = { version="~=0.35.2"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
3535
fs-s3fs = { version = "~=1.1.1", optional = true }
3636
{%- if cookiecutter.stream_type in ["REST", "GraphQL"] %}
3737
requests = "~=2.31.0"
3838
{%- endif %}
3939

4040
[tool.poetry.group.dev.dependencies]
4141
pytest = ">=7.4.0"
42-
singer-sdk = { version="~=0.35.1", extras = ["testing"] }
42+
singer-sdk = { version="~=0.35.2", extras = ["testing"] }
4343

4444
[tool.poetry.extras]
4545
s3 = ["fs-s3fs"]

cookiecutter/target-template/{{cookiecutter.target_id}}/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ packages = [
3030

3131
[tool.poetry.dependencies]
3232
python = ">=3.8"
33-
singer-sdk = { version="~=0.35.1"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
33+
singer-sdk = { version="~=0.35.2"{{ ', extras = ["faker"]' if cookiecutter.faker_extra }} }
3434
fs-s3fs = { version = "~=1.1.1", optional = true }
3535
{%- if cookiecutter.serialization_method != "SQL" %}
3636
requests = "~=2.31.0"
3737
{%- endif %}
3838

3939
[tool.poetry.dev-dependencies]
4040
pytest = ">=7.4.0"
41-
singer-sdk = { version="~=0.35.1", extras = ["testing"] }
41+
singer-sdk = { version="~=0.35.2", extras = ["testing"] }
4242

4343
[tool.poetry.extras]
4444
s3 = ["fs-s3fs"]

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
author = "Meltano Core Team and Contributors"
2828

2929
# The full version, including alpha/beta/rc tags
30-
release = "0.35.1"
30+
release = "0.35.2"
3131

3232

3333
# -- General configuration -------------------------------------------------------------

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ norecursedirs = "cookiecutter"
171171

172172
[tool.commitizen]
173173
name = "cz_version_bump"
174-
version = "0.35.1"
174+
version = "0.35.2"
175175
changelog_merge_prerelease = true
176176
prerelease_offset = 1
177177
tag_format = "v$major.$minor.$patch$prerelease"

0 commit comments

Comments
 (0)