Skip to content

Commit

Permalink
chore: Release v0.33.0b2 (#2016)
Browse files Browse the repository at this point in the history
chore: Bump package version

Co-authored-by: edgarrmondragon <edgarrmondragon@users.noreply.github.com>
  • Loading branch information
MeltyBot and edgarrmondragon authored Oct 11, 2023
1 parent a6d2819 commit 37e5eac
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ body:
attributes:
label: Singer SDK Version
description: Version of the library you are using
placeholder: "0.33.0b1"
placeholder: "0.33.0b2"
validations:
required: true
- type: checkboxes
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.33.0b2 (2023-10-11)

### ✨ New

- [#2003](https://github.com/meltano/sdk/issues/2003) Add ability to do list comprehensions in stream map expressions -- _**Thanks @haleemur!**_

### 🐛 Fixes

- [#2015](https://github.com/meltano/sdk/issues/2015) Ensure `default` property is passed to SCHEMA messages -- _**Thanks @prakharcode!**_

## v0.33.0b1 (2023-10-09)

### ✨ New
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ packages = [

[tool.poetry.dependencies]
python = ">=3.7.1,<4"
singer-sdk = { version="~=0.33.0b1" }
singer-sdk = { version="~=0.33.0b2" }
fs-s3fs = { version = "~=1.1.1", optional = true }

[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.0"
singer-sdk = { version="~=0.33.0b1", extras = ["testing"] }
singer-sdk = { version="~=0.33.0b2", extras = ["testing"] }

[tool.poetry.extras]
s3 = ["fs-s3fs"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ packages = [

[tool.poetry.dependencies]
python = ">=3.7.1,<4"
singer-sdk = { version="~=0.33.0b1" }
singer-sdk = { version="~=0.33.0b2" }
fs-s3fs = { version = "~=1.1.1", optional = true }
{%- if cookiecutter.stream_type in ["REST", "GraphQL"] %}
requests = "~=2.31.0"
Expand All @@ -32,7 +32,7 @@ cached-property = "~=1" # Remove after Python 3.7 support is dropped

[tool.poetry.group.dev.dependencies]
pytest = ">=7.4.0"
singer-sdk = { version="~=0.33.0b1", extras = ["testing"] }
singer-sdk = { version="~=0.33.0b2", extras = ["testing"] }

[tool.poetry.extras]
s3 = ["fs-s3fs"]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ packages = [

[tool.poetry.dependencies]
python = ">=3.7.1,<4"
singer-sdk = { version="~=0.33.0b1" }
singer-sdk = { version="~=0.33.0b2" }
fs-s3fs = { version = "~=1.1.1", optional = true }
{%- if cookiecutter.serialization_method != "SQL" %}
requests = "~=2.31.0"
{%- endif %}

[tool.poetry.dev-dependencies]
pytest = ">=7.4.0"
singer-sdk = { version="~=0.33.0b1", extras = ["testing"] }
singer-sdk = { version="~=0.33.0b2", extras = ["testing"] }

[tool.poetry.extras]
s3 = ["fs-s3fs"]
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author = "Meltano Core Team and Contributors"

# The full version, including alpha/beta/rc tags
release = "0.33.0b1"
release = "0.33.0b2"


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "singer-sdk"
version = "0.33.0b1"
version = "0.33.0b2"
description = "A framework for building Singer taps"
authors = ["Meltano Team and Contributors <hello@meltano.com>"]
maintainers = ["Meltano Team and Contributors <hello@meltano.com>"]
Expand Down Expand Up @@ -136,7 +136,7 @@ norecursedirs = "cookiecutter"

[tool.commitizen]
name = "cz_version_bump"
version = "0.33.0b1"
version = "0.33.0b2"
changelog_merge_prerelease = true
prerelease_offset = 1
tag_format = "v$major.$minor.$patch$prerelease"
Expand Down

0 comments on commit 37e5eac

Please sign in to comment.