diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f5526a2e..03d00036b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Change Log +## [1.2.14](https://github.com/ably/ably-dotnet/tree/1.2.14) (2023-10-21) + +[Full Changelog](https://github.com/ably/ably-dotnet/compare/1.2.13...1.2.14) + +**Fixed bugs:** + +- Realtime Channel Status method [\#1240](https://github.com/ably/ably-dotnet/issues/1240) + +**Closed issues:** + +- No `async` version of `IRestChannel.Status` [\#1263](https://github.com/ably/ably-dotnet/issues/1263) +- Ably and ClientWebsocket [\#1257](https://github.com/ably/ably-dotnet/issues/1257) +- JSON Encoding issues [\#1255](https://github.com/ably/ably-dotnet/issues/1255) + +**Merged pull requests:** + +- Add async version of channel status [\#1266](https://github.com/ably/ably-dotnet/pull/1266) ([sacOO7](https://github.com/sacOO7)) +- Fix ably request method param [\#1260](https://github.com/ably/ably-dotnet/pull/1260) ([sacOO7](https://github.com/sacOO7)) + ## [1.2.13](https://github.com/ably/ably-dotnet/tree/1.2.13) (2023-09-25) [Full Changelog](https://github.com/ably/ably-dotnet/compare/1.2.12...1.2.13) diff --git a/src/CommonAssemblyInfo.cs b/src/CommonAssemblyInfo.cs index c2d07f219..2b3f870fa 100644 --- a/src/CommonAssemblyInfo.cs +++ b/src/CommonAssemblyInfo.cs @@ -4,13 +4,13 @@ [assembly: AssemblyCompany("Ably")] [assembly: AssemblyProduct("Ably .NET Library")] -[assembly: AssemblyVersion("1.2.13")] -[assembly: AssemblyFileVersion("1.2.13")] +[assembly: AssemblyVersion("1.2.14")] +[assembly: AssemblyFileVersion("1.2.14")] namespace System { internal static class AssemblyVersionInformation { internal const System.String AssemblyCompany = "Ably"; internal const System.String AssemblyProduct = "Ably .NET Library"; - internal const System.String AssemblyVersion = "1.2.13"; - internal const System.String AssemblyFileVersion = "1.2.13"; + internal const System.String AssemblyVersion = "1.2.14"; + internal const System.String AssemblyFileVersion = "1.2.14"; } } diff --git a/unity/Assets/Ably/Plugins/IO.Ably.dll b/unity/Assets/Ably/Plugins/IO.Ably.dll index a92d8fa30..53c891f10 100644 Binary files a/unity/Assets/Ably/Plugins/IO.Ably.dll and b/unity/Assets/Ably/Plugins/IO.Ably.dll differ diff --git a/unity/Assets/Ably/version.txt b/unity/Assets/Ably/version.txt index 0b1f1edf1..3f54916a0 100644 --- a/unity/Assets/Ably/version.txt +++ b/unity/Assets/Ably/version.txt @@ -1 +1 @@ -1.2.13 +1.2.14