Skip to content

Commit 548a7f6

Browse files
committed
Changelog and version bump
1 parent 3a7f3fa commit 548a7f6

File tree

5 files changed

+12
-9
lines changed

5 files changed

+12
-9
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [1.4.2] - 2018-10-18
8+
### Fixed
9+
- Fixed messages would not dismiss
10+
711
## [1.4.1] - 2018-10-11
812
### Fixed
913
- Fixed problem where message with animation would trigger dismiss event before disapearing

Enterwell.Clients.Wpf.Notifications.Sample/MainWindow.xaml.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,8 @@ public MainWindow()
1717
{
1818
this.InitializeComponent();
1919
this.DataContext = this;
20-
Manager.OnMessageDismissed += Manager_OnMessageDismissed;
2120
}
22-
23-
private void Manager_OnMessageDismissed(object sender, NotificationMessageManagerEventArgs args)
24-
{
25-
}
26-
21+
2722
private void ButtonBaseErrorOnClick(object sender, RoutedEventArgs e)
2823
{
2924
this.Manager

Enterwell.Clients.Wpf.Notifications/Enterwell.Clients.Wpf.Notifications.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<projectUrl>https://github.com/Enterwell/Wpf.Notifications</projectUrl>
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>$description$</description>
13-
<releaseNotes>Fixed message header foreground not set by `SetForeground` method call.</releaseNotes>
13+
<releaseNotes>Fixed messages would not dismiss</releaseNotes>
1414
<copyright>Copyright (c) Enterwell d.o.o. 2017-2018</copyright>
1515
<tags>wpf notifications</tags>
1616
</metadata>

Enterwell.Clients.Wpf.Notifications/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@
4949
// You can specify all the values or you can default the Build and Revision Numbers
5050
// by using the '*' as shown below:
5151
// [assembly: AssemblyVersion("1.0.*")]
52-
[assembly: AssemblyVersion("1.4.1.0")]
53-
[assembly: AssemblyFileVersion("1.4.1.0")]
52+
[assembly: AssemblyVersion("1.4.2.0")]
53+
[assembly: AssemblyFileVersion("1.4.2.0")]

Readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,3 +202,7 @@ this.Manager.Queue(new NotificationMessage
202202
```
203203

204204
### XAML only? Supported too. You get the idea.
205+
206+
## Development
207+
208+
Pack NuGet: `nuget pack -Prop Configuration=Release`

0 commit comments

Comments
 (0)