Skip to content

Commit

Permalink
Increase version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-jones-dev committed Aug 2, 2022
1 parent d9baa03 commit fc2a189
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
10 changes: 3 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,12 @@ 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.3.0] - 2022-08-02
### Added
* Add `Translator.createGlossaryFromCsvAsync()` allowing glossaries downloaded
from website to be easily uploaded to API.
### Changed
* Strong-named DeepL.net assembly.
### Deprecated
### Removed
### Fixed
### Security
* Strong name DeepL.net assembly.


## [1.2.1] - 2022-06-29
Expand Down Expand Up @@ -90,7 +86,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.2.1..HEAD
[1.3.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.2.1..v1.3.0
[1.2.1]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.2.0..v1.2.1
[1.2.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.1.0..v1.2.0
[1.1.0]: https://github.com/DeepLcom/deepl-dotnet/compare/v1.0.5..v1.1.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.2.1</Version>
<PackageVersion>1.2.1</PackageVersion>
<FileVersion>1.2.1.0</FileVersion>
<Version>1.3.0</Version>
<PackageVersion>1.3.0</PackageVersion>
<FileVersion>1.3.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 @@ -16,7 +16,7 @@ public sealed class GeneralTest : BaseDeepLTest {
/// </summary>
[Fact]
public void TestVersion() {
Assert.Equal("1.2.1", Translator.Version());
Assert.Equal("1.3.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 fc2a189

Please sign in to comment.