Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into fixTranslate
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jones-dev committed Apr 24, 2024
2 parents 2852d5c + 85670d6 commit 04ef190
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
15 changes: 12 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,23 @@ 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).


## [Unreleased]
## [1.7.1] - 2024-02-28
### Fixed
* Update `VERSION` values to 1.7.1


## [1.7.0] - 2024-02-27
### Added
* New language available: Arabic (`'ar'`). Add language code constants and tests.
Arabic is currently supported only for text translation; document translation
support for Arabic is coming soon.

Note: older library versions also support the new language, this update only adds new code constants.
### Fixed
* Improve type of `translateText` function in `Translator`
* Thanks to [VincentLanglet](https://github.com/VincentLanglet) for [#41](https://github.com/DeepLcom/deepl-php/pull/41)



## [1.6.0] - 2023-11-03
### Added
* Add optional `context` parameter for text translation, that specifies
Expand Down Expand Up @@ -131,7 +139,8 @@ Stable release.
Initial version.


[Unreleased]: https://github.com/DeepLcom/deepl-php/compare/v1.6.0...HEAD
[1.7.1]: https://github.com/DeepLcom/deepl-php/compare/v1.7.0...v1.7.1
[1.7.0]: https://github.com/DeepLcom/deepl-php/compare/v1.6.0...v1.7.0
[1.6.0]: https://github.com/DeepLcom/deepl-php/compare/v1.5.1...v1.6.0
[1.5.1]: https://github.com/DeepLcom/deepl-php/compare/v1.5.0...v1.5.1
[1.5.0]: https://github.com/DeepLcom/deepl-php/compare/v1.4.0...v1.5.0
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.0
1.7.1
2 changes: 1 addition & 1 deletion src/Translator.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Translator
/**
* Library version.
*/
public const VERSION = '1.6.0';
public const VERSION = '1.7.1';

/**
* Implements all HTTP requests and retries.
Expand Down

0 comments on commit 04ef190

Please sign in to comment.