Skip to content

Commit fe72e14

Browse files
Updated for v2.0.0
1 parent bdd2bcb commit fe72e14

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

Src/AsyncAwaitBestPractices.MVVM.nuspec

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="2.5">
44
<id>AsyncAwaitBestPractices.MVVM</id>
5-
<version>1.2.1</version>
5+
<version>2.0.0</version>
66
<title>Task Extensions for MVVM</title>
77
<authors>Brandon Minnick, John Thiriet</authors>
88
<owners>Brandon Minnick</owners>
@@ -14,12 +14,14 @@
1414
<summary>Includes AsyncCommand and IAsyncCommand which allows ICommand to safely be used asynchronously with Task.</summary>
1515
<tags>task,fire and forget, threading, extensions, system.threading.tasks,async,await</tags>
1616
<dependencies>
17-
<dependency id="AsyncAwaitBestPractices" version="1.2.1" />
17+
<dependency id="AsyncAwaitBestPractices" version="2.0.0" />
1818
</dependencies>
1919
<releaseNotes>
2020
New In This Release:
21-
- Improved memory management
22-
- Implemented WeakEventManager for AsyncCommand.CanExecuteChanged
21+
- IAsyncCommand<T>
22+
- Breaking Change: The constructor for AsyncCommand now requires the parameter `Func<Task> execute` to be non-null
23+
- Breaking Change: The constructor for AsyncCommand<T> now requires the parameter `Funct<T, Task> execute` to be non-null
24+
- Breaking Change: IAsyncCommand.Execute(object parameter) has been changed to IAsyncCommand.Execute(). If a parameter is required, use IAsyncCommand<T>.Execute(T parameter).
2325
</releaseNotes>
2426
<copyright>Copyright (c) 2018 Brandon Minnick</copyright>
2527
</metadata>

Src/AsyncAwaitBestPractices.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="2.5">
44
<id>AsyncAwaitBestPractices</id>
5-
<version>1.2.1</version>
5+
<version>2.0.0</version>
66
<title>Task Extensions for System.Threading.Tasks</title>
77
<authors>Brandon Minnick, John Thiriet</authors>
88
<owners>Brandon Minnick</owners>
@@ -19,7 +19,7 @@
1919
<tags>task,fire and forget, threading, extensions, system.threading.tasks,async,await</tags>
2020
<releaseNotes>
2121
New In This Release:
22-
- Added Generic Implementation of WeakEventManager
22+
- Performance Improvements for SafeFireAndForget
2323
</releaseNotes>
2424
<copyright>Copyright (c) 2018 Brandon Minnick</copyright>
2525
</metadata>

0 commit comments

Comments
 (0)