Skip to content

Commit

Permalink
docs: Increase version to 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JanEbbing committed Mar 15, 2024
1 parent 1afe85e commit 42594bc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ 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.9.0] - 2024-03-15
### Added
* New language available: Arabic (MSA) (`'ar'`). Add language code constants and tests.

Note: older library versions also support the new language, this update only
adds new code constants.
* [#44](https://github.com/DeepLcom/deepl-dotnet/pull/44) thanks to [Ilmalte](https://github.com/ilmalte)
### Fixed
* Change document upload to use the path `/v2/document` instead of `/v2/document/` (no trailing `/`).
Both paths will continue to work in the v2 version of the API, but `/v2/document` is the intended one.
Expand Down Expand Up @@ -151,7 +152,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Initial release.


[Unreleased]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.8.0...HEAD
[1.9.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.8.0...v1.9.0
[1.8.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.7.1...v1.8.0
[1.7.1]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.7.0...v1.7.1
[1.7.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.6.0...v1.7.0
Expand Down
6 changes: 3 additions & 3 deletions DeepL/DeepL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<PropertyGroup>
<Description>DeepL.net is the official DeepL .NET client library.</Description>
<AssemblyTitle>DeepL.net</AssemblyTitle>
<Version>1.8.0</Version>
<PackageVersion>1.8.0</PackageVersion>
<FileVersion>1.8.0.0</FileVersion>
<Version>1.9.0</Version>
<PackageVersion>1.9.0</PackageVersion>
<FileVersion>1.9.0.0</FileVersion>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<TargetFrameworks>net5.0;netstandard2.0</TargetFrameworks>
<LangVersion>8</LangVersion>
Expand Down
2 changes: 1 addition & 1 deletion DeepLTests/GeneralTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public sealed class GeneralTest : BaseDeepLTest {
/// </summary>
[Fact]
public void TestVersion() {
Assert.Equal("1.8.0", Translator.Version());
Assert.Equal("1.9.0", Translator.Version());

// Note the assembly version must remain unchanged for binary compatibility, excepting the major version.
Assert.Equal("1.0.0.0", typeof(Translator).Assembly.GetName().Version?.ToString());
Expand Down

0 comments on commit 42594bc

Please sign in to comment.