Skip to content

Commit 2b66bb1

Browse files
docs: Bump version to 1.28.0
1 parent da1c27a commit 2b66bb1

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.27.0"
4+
current_version = "1.28.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.28.0] - 2026-02-05
810
### Changed
911
- Updated three tests to be less flakey and reflect new behavior regarding the model type.
1012
- Improved `NotFoundException` error message by removing the misleading "check server_url" suggestion.
@@ -374,7 +376,8 @@ Version increased to avoid conflicts with old packages on PyPI.
374376
## [0.1.0] - 2021-07-26
375377
Initial version.
376378

377-
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.27.0...HEAD
379+
[Unreleased]: https://github.com/DeepLcom/deepl-python/compare/v1.28.0...HEAD
380+
[1.28.0]: https://github.com/DeepLcom/deepl-python/compare/v1.27.0...v1.28.0
378381
[1.27.0]: https://github.com/DeepLcom/deepl-python/compare/v1.26.0...v1.27.0
379382
[1.26.0]: https://github.com/DeepLcom/deepl-python/compare/v1.25.0...v1.26.0
380383
[1.25.0]: https://github.com/DeepLcom/deepl-python/compare/v1.24.0...v1.25.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.27.0"
5+
VERSION = "1.28.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.27.0"
6+
version = "1.28.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.27.0" == deepl.__version__
20+
assert "1.28.0" == deepl.__version__
2121

2222

2323
@pytest.mark.parametrize(

0 commit comments

Comments
 (0)