Skip to content

Commit

Permalink
Bump version to 0.2.21
Browse files Browse the repository at this point in the history
  • Loading branch information
Trolldemorted committed Jul 9, 2018
1 parent 436be61 commit 3a43eae
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Signal-Windows.Lib/SignalWebSocket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,10 @@ public async Task SendMessage(byte[] data)
dataWriter.DetachStream();
}
}
catch (OperationCanceledException) { }
catch (OperationCanceledException)
{
Logger.LogTrace($"SendMessage() was cancelled");
}
catch (Exception e)
{
Logger.LogError($"SendMessage() failed: {e.Message}\n{e.StackTrace}");
Expand Down
2 changes: 1 addition & 1 deletion Signal-Windows/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="2383BenediktRadtke.SignalPrivateMessenger" Publisher="CN=83951ACF-6CF8-48C5-BDC4-D778CAFD26C0" Version="0.2.20.0" />
<Identity Name="2383BenediktRadtke.SignalPrivateMessenger" Publisher="CN=83951ACF-6CF8-48C5-BDC4-D778CAFD26C0" Version="0.2.21.0" />
<mp:PhoneIdentity PhoneProductId="25d58032-97d6-4555-96ed-ffe17d57a51f" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Signal Private Messenger</DisplayName>
Expand Down
4 changes: 2 additions & 2 deletions Signal-Windows/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.2.19.0")]
[assembly: AssemblyFileVersion("0.2.19.0")]
[assembly: AssemblyVersion("0.2.21.0")]
[assembly: AssemblyFileVersion("0.2.21.0")]
[assembly: ComVisible(false)]

0 comments on commit 3a43eae

Please sign in to comment.