Skip to content

Commit 9919364

Browse files
docs: Bump version to 1.14.0
1 parent c8370da commit 9919364

File tree

4 files changed

+18
-4
lines changed

4 files changed

+18
-4
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
22
# See https://github.com/callowayproject/bump-my-version
33
[tool.bumpversion]
4-
current_version = "1.13.0"
4+
current_version = "1.14.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: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ 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.14.0] - 2025-11-12
10+
### Added
11+
- Added support for the `GET /v3/style_rules` endpoint in the client library, the
12+
implementation can be found in the `DeepLClient` class. Please refer to the
13+
README for usage instructions
14+
- Added `style_id` option to `translateText()` which allows text translation with
15+
style rules.
16+
- Added new model classes: `StyleRuleInfo`, `ConfiguredRules`, and `CustomInstruction`
17+
to support style rules functionality.
18+
19+
## [1.13.0] - 2025-04-25
820
### Added
921
- Added `extraRequestParameters` option to text and document translation methods to pass arbitrary parameters in the request body. This can be used to access beta features or override built-in parameters (such as `target_lang`, `source_lang`, etc.).
1022

@@ -199,7 +211,9 @@ Stable release.
199211
## [0.1.0] - 2022-04-22
200212
Initial version.
201213

202-
[Unreleased]: https://github.com/DeepLcom/deepl-php/compare/v1.12.0...HEAD
214+
[Unreleased]: https://github.com/DeepLcom/deepl-php/compare/v1.14.0...HEAD
215+
[1.14.0]: https://github.com/DeepLcom/deepl-php/compare/v1.13.0...v1.14.0
216+
[1.13.0]: https://github.com/DeepLcom/deepl-php/compare/v1.12.0...v1.13.0
203217
[1.12.0]: https://github.com/DeepLcom/deepl-php/compare/v1.11.1...v1.12.0
204218
[1.11.1]: https://github.com/DeepLcom/deepl-php/compare/v1.11.0...v1.11.1
205219
[1.11.0]: https://github.com/DeepLcom/deepl-php/compare/v1.10.1...v1.11.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.13.0
1+
1.14.0

src/Translator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Translator
1717
/**
1818
* Library version.
1919
*/
20-
public const VERSION = '1.13.0';
20+
public const VERSION = '1.14.0';
2121

2222
/**
2323
* Implements all HTTP requests and retries.

0 commit comments

Comments
 (0)