Skip to content

Commit

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

Co-authored-by: edgarrmondragon <[email protected]>
Co-authored-by: Edgar Ramírez Mondragón <[email protected]>
  • Loading branch information
3 people authored Feb 5, 2025
1 parent 80138ea commit 61a0b88
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 12 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.44.2"
placeholder: "0.44.3"
validations:
required: true
- type: checkboxes
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.44.3 (2025-02-05)

### 🐛 Fixes

- [#2870](https://github.com/meltano/sdk/issues/2870) Do not emit a warning needlessly when `rest_method` is not set in a stream class

## v0.44.2 (2025-01-31)

### 🐛 Fixes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ license-files = [ "LICENSE" ]
requires-python = ">=3.9"
dependencies = [
{%- if cookiecutter.faker_extra %}
"singer-sdk[faker]~=0.44.2",
"singer-sdk[faker]~=0.44.3",
{%- else %}
"singer-sdk~=0.44.2",
"singer-sdk~=0.44.3",
{%- endif %}
]

Expand All @@ -50,7 +50,7 @@ s3 = [
[dependency-groups]
dev = [
"pytest>=8",
"singer-sdk[testing]~=0.44.2",
"singer-sdk[testing]~=0.44.3",
]

{%- if cookiecutter.variant != "None (Skip)" %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ license-files = [ "LICENSE" ]
requires-python = ">=3.9"
dependencies = [
{%- if extras %}
"singer-sdk[{{ extras|join(',') }}]~=0.44.2",
"singer-sdk[{{ extras|join(',') }}]~=0.44.3",
{%- else %}
"singer-sdk~=0.44.2",
"singer-sdk~=0.44.3",
{%- endif %}
{%- if cookiecutter.stream_type in ["REST", "GraphQL"] %}
"requests~=2.32.3",
Expand All @@ -59,7 +59,7 @@ s3 = [
[dependency-groups]
dev = [
"pytest>=8",
"singer-sdk[testing]~=0.44.2",
"singer-sdk[testing]~=0.44.3",
]

{%- if cookiecutter.variant != "None (Skip)" %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ license-files = [ "LICENSE" ]
requires-python = ">=3.9"
dependencies = [
{%- if cookiecutter.faker_extra %}
"singer-sdk[faker]~=0.44.2",
"singer-sdk[faker]~=0.44.3",
{%- else %}
"singer-sdk~=0.44.2",
"singer-sdk~=0.44.3",
{%- endif %}
{%- if cookiecutter.serialization_method != "SQL" %}
"requests~=2.32.3",
Expand All @@ -52,7 +52,7 @@ s3 = [
[dependency-groups]
dev = [
"pytest>=8",
"singer-sdk[testing]~=0.44.2",
"singer-sdk[testing]~=0.44.3",
]

{%- if cookiecutter.variant != "None (Skip)" %}
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author = "Meltano Core Team and Contributors"

# The full version, including alpha/beta/rc tags
release = "0.44.2"
release = "0.44.3"


# -- General configuration -------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ xfail_strict = false

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

0 comments on commit 61a0b88

Please sign in to comment.