Skip to content

Commit 65fc7e2

Browse files
docs: Bump version to 1.29.0
1 parent 12aabca commit 65fc7e2

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Configuration file for bumpversion GitHub action
22
# See https://github.com/callowayproject/bump-my-version
33
[tool.bumpversion]
4-
current_version = "1.28.0"
4+
current_version = "1.29.0"
55
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
66
serialize = ["{major}.{minor}.{patch}"]
77
search = "{current_version}"

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [1.29.0] - 2026-03-26
810
### Added
911
- Added new language constants from January 2026 API release of 81 new languages.
1012
- Added support for style rules CRUD endpoints in the `DeepLClient` class:
@@ -391,7 +393,8 @@ Version increased to avoid conflicts with old packages on PyPI.
391393
## [0.1.0] - 2021-07-26
392394
Initial version.
393395

394-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.28.0...HEAD
396+
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.29.0...HEAD
397+
[1.29.0]: https://github.com/DeepLcom/deepl-python/compare/v1.28.0...v1.29.0
395398
[1.28.0]: https://github.com/DeepLcom/deepl-python/compare/v1.27.0...v1.28.0
396399
[1.27.0]: https://github.com/DeepLcom/deepl-python/compare/v1.26.0...v1.27.0
397400
[1.26.0]: https://github.com/DeepLcom/deepl-python/compare/v1.25.0...v1.26.0

deepl/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Use of this source code is governed by an MIT
33
# license that can be found in the LICENSE file.
44

5-
VERSION = "1.28.0"
5+
VERSION = "1.29.0"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ line-length = 79
33

44
[tool.poetry]
55
name = "deepl"
6-
version = "1.28.0"
6+
version = "1.29.0"
77
description = "Python library for the DeepL API."
88
authors = ["DeepL SE <python-api@deepl.com>"]
99
license = "MIT"

tests/test_general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
def test_version():
20-
assert "1.28.0" == deepl.__version__
20+
assert "1.29.0" == deepl.__version__
2121

2222

2323
def test_remove_regional_variant():

0 commit comments

Comments
 (0)