Skip to content

Commit

Permalink
Release: prepare v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Jul 20, 2022
1 parent 556f964 commit b258a6b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.

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).

## [0.5.0] - 2022-07-20
### Added
- [#163](https://github.com/vitalyster/SharpXMPP/pull/163): `BookmarkManager` is now available in all the classes derived from `XmppConnection`, including `XmppWebSocketConnection`
- [#164](https://github.com/vitalyster/SharpXMPP/issues/164): it's now possible to subscribe to `XmppConnection::ConnectionClosed`
- [#164](https://github.com/vitalyster/SharpXMPP/issues/164): a new `XmppConnection::Disconnect` method to temporarily disconnect shut down the connection without disposing it
- [#166](https://github.com/vitalyster/SharpXMPP/pull/166): `BookmarkedConference::Nick` now has a setter

## [0.4.0] - 2022-05-07
### Changed
- [#71](https://github.com/vitalyster/SharpXMPP/issues/71): add DNS server detection for Android, remove hardcoded server
Expand Down Expand Up @@ -63,4 +70,5 @@ Initial release for .NET 4.5.1 and .NET Standard 1.6.
[0.2.0]: https://github.com/vitalyster/SharpXMPP/compare/0.1.1...0.2.0
[0.3.0]: https://github.com/vitalyster/SharpXMPP/compare/0.2.0...0.3.0
[0.4.0]: https://github.com/vitalyster/SharpXMPP/compare/0.3.0...0.4.0
[Unreleased]: https://github.com/vitalyster/SharpXMPP/compare/0.4.0...HEAD
[0.5.0]: https://github.com/vitalyster/SharpXMPP/compare/0.4.0...0.5.0
[Unreleased]: https://github.com/vitalyster/SharpXMPP/compare/0.5.0...HEAD
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<VersionPrefix>0.4.0</VersionPrefix>
<VersionPrefix>0.5.0</VersionPrefix>
<DebugType>portable</DebugType>
<RootNamespace>SharpXMPP</RootNamespace>
</PropertyGroup>
Expand Down
14 changes: 5 additions & 9 deletions SharpXMPP.Shared/SharpXMPP.Shared.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,11 @@
<PackageId>SharpXMPP</PackageId>
<Description>Managed XMPP (Jabber) client library.</Description>
<PackageReleaseNotes>
[Changed]
- #71 (https://github.com/vitalyster/SharpXMPP/issues/71): add DNS server detection for Android, remove hardcoded server
- Get rid of .NET Framework 4.5.1 support, only 4.8 is supported from now
- WebSockets: use HTTP Lookup method for XMPP Websocket URI instead of a DNS-based one

[Fixed]
- #155 (https://github.com/vitalyster/SharpXMPP/issues/155): NullReferenceException thrown from InfoHandler::Handle
- NullReferenceException thrown from XmppConnection::OnIq if there were IQ queries without defined handlers
- An exception when trying to call XmppTcpConnection::Dispose
[Added]
- #163 (https://github.com/vitalyster/SharpXMPP/pull/163): BookmarkManager is now available in all the classes derived from XmppConnection, including XmppWebSocketConnection
- #164 (https://github.com/vitalyster/SharpXMPP/issues/164): it's now possible to subscribe to XmppConnection::ConnectionClosed
- #164 (https://github.com/vitalyster/SharpXMPP/issues/164): a new XmppConnection::Disconnect method to temporarily disconnect shut down the connection without disposing it
- #166 (https://github.com/vitalyster/SharpXMPP/pull/166): BookmarkedConference::Nick now has a setter
</PackageReleaseNotes>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
Expand Down
14 changes: 5 additions & 9 deletions SharpXMPP.WebSocket/SharpXMPP.WebSocket.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,11 @@
<PackageId>SharpXMPP.WebSocket</PackageId>
<Description>Managed XMPP (Jabber) client library: WebSocket support.</Description>
<PackageReleaseNotes>
[Changed]
- #71 (https://github.com/vitalyster/SharpXMPP/issues/71): add DNS server detection for Android, remove hardcoded server
- Get rid of .NET Framework 4.5.1 support, only 4.8 is supported from now
- WebSockets: use HTTP Lookup method for XMPP Websocket URI instead of a DNS-based one

[Fixed]
- #155 (https://github.com/vitalyster/SharpXMPP/issues/155): NullReferenceException thrown from InfoHandler::Handle
- NullReferenceException thrown from XmppConnection::OnIq if there were IQ queries without defined handlers
- An exception when trying to call XmppTcpConnection::Dispose
[Added]
- #163 (https://github.com/vitalyster/SharpXMPP/pull/163): BookmarkManager is now available in all the classes derived from XmppConnection, including XmppWebSocketConnection
- #164 (https://github.com/vitalyster/SharpXMPP/issues/164): it's now possible to subscribe to XmppConnection::ConnectionClosed
- #164 (https://github.com/vitalyster/SharpXMPP/issues/164): a new XmppConnection::Disconnect method to temporarily disconnect shut down the connection without disposing it
- #166 (https://github.com/vitalyster/SharpXMPP/pull/166): BookmarkedConference::Nick now has a setter
</PackageReleaseNotes>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
Expand Down

0 comments on commit b258a6b

Please sign in to comment.