Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/1.2.14 #1267

Merged
merged 3 commits into from
Oct 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
8 changes: 4 additions & 4 deletions src/CommonAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
}
Binary file modified unity/Assets/Ably/Plugins/IO.Ably.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion unity/Assets/Ably/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.13
1.2.14
Loading