Skip to content

Commit c21247f

Browse files
docs: Increase version to 1.15.0
1 parent 793bba8 commit c21247f

4 files changed

Lines changed: 14 additions & 4 deletions

File tree

.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.14.0"
4+
current_version = "1.15.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: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.15.0] - 2025-12-03
10+
### Added
11+
- Added `custom_instructions` parameter to `translateText()` to customize translation
12+
behavior with up to 10 instructions (max 300 characters each). Only supported for
13+
target languages: `de`, `en`, `es`, `fr`, `it`, `ja`, `ko`, `zh` and their variants.
14+
Note: using the `custom_instructions` parameter will use the `quality_optimized`
15+
model type as the default. Requests combining `custom_instructions` and the
16+
`latency_optimized` model type will be rejected.
17+
918
## [1.14.0] - 2025-11-12
1019
### Added
1120
- Added support for the `GET /v3/style_rules` endpoint in the client library, the
@@ -211,7 +220,8 @@ Stable release.
211220
## [0.1.0] - 2022-04-22
212221
Initial version.
213222

214-
[Unreleased]: https://github.com/DeepLcom/deepl-php/compare/v1.14.0...HEAD
223+
[Unreleased]: https://github.com/DeepLcom/deepl-php/compare/v1.15.0...HEAD
224+
[1.15.0]: https://github.com/DeepLcom/deepl-php/compare/v1.14.0...v1.15.0
215225
[1.14.0]: https://github.com/DeepLcom/deepl-php/compare/v1.13.0...v1.14.0
216226
[1.13.0]: https://github.com/DeepLcom/deepl-php/compare/v1.12.0...v1.13.0
217227
[1.12.0]: https://github.com/DeepLcom/deepl-php/compare/v1.11.1...v1.12.0

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.14.0
1+
1.15.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.14.0';
20+
public const VERSION = '1.15.0';
2121

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

0 commit comments

Comments
 (0)