Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Release v0.44.2 #2863

Merged
merged 4 commits into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.1"
placeholder: "0.44.2"
validations:
required: true
- type: checkboxes
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/cookiecutter-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: astral-sh/setup-uv@v5
with:
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,23 @@ 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.2 (2025-01-31)

### 🐛 Fixes

- [#2862](https://github.com/meltano/sdk/issues/2862) Include package license metadata conditionally in templates -- _**Thanks @ReubenFrankel!**_
- [#2859](https://github.com/meltano/sdk/issues/2859) Use uv in tap, target and mapper templates

### 📚 Documentation Improvements

- [#2861](https://github.com/meltano/sdk/issues/2861) Document plugin development with uv and how to migrate existing ones

### 📦 Packaging changes

- [#2854](https://github.com/meltano/sdk/issues/2854) Use PEP 639
- [#2852](https://github.com/meltano/sdk/issues/2852) Remove `urllib3` constraint
- [#2851](https://github.com/meltano/sdk/issues/2851) Use uv to manage this project

## v0.44.1 (2025-01-29)

### 🐛 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.1",
"singer-sdk[faker]~=0.44.2",
{%- else %}
"singer-sdk~=0.44.1",
"singer-sdk~=0.44.2",
{%- endif %}
]

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

{%- 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.1",
"singer-sdk[{{ extras|join(',') }}]~=0.44.2",
{%- else %}
"singer-sdk~=0.44.1",
"singer-sdk~=0.44.2",
{%- 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.1",
"singer-sdk[testing]~=0.44.2",
]

{%- 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.1",
"singer-sdk[faker]~=0.44.2",
{%- else %}
"singer-sdk~=0.44.1",
"singer-sdk~=0.44.2",
{%- 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.1",
"singer-sdk[testing]~=0.44.2",
]

{%- 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.1"
release = "0.44.2"


# -- 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.1"
version = "0.44.2"
changelog_merge_prerelease = true
prerelease_offset = 1
tag_format = "v$major.$minor.$patch$prerelease"
Expand Down
Loading