Skip to content

Commit

Permalink
WAF Prepare publish of 4.3.0-Alpha1
Browse files Browse the repository at this point in the history
  • Loading branch information
jbe2277 committed Aug 8, 2018
1 parent 44b5853 commit 8643919
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pkg/NuPush.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
setlocal
set PkgDir=%~dp0
set PATH=%PATH%;%PkgDir%
set Version=4.2.0
set Version=4.3.0-alpha1

cd %PkgDir%\System.Waf\Release
cd %PkgDir%\System.Waf\Release\%Version%

nuget Push System.Waf.Core.%Version%.nupkg -Source https://www.nuget.org/api/v2/package
nuget Push System.Waf.UnitTesting.Core.%Version%.nupkg -Source https://www.nuget.org/api/v2/package
Expand Down
13 changes: 13 additions & 0 deletions src/System.Waf/Documentation/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
Changelog
---------

Version 4.3.0.1 (Alpha 1)
- WAF: Add StringHelper.Contains method with StringComparison argument.
- WAF: Add TaskHelper class.
- WAF: Add CollectionHelper.Merge method.
- WAF: Add the ObservableListView, ObservableListViewCore and ObservableListViewBase class.
- WAF: Add the DataGridHelper class with sort support.
- InfoMan: Replace CollectionView with the new ObservableListView.
- InfoMan: Replace Settings with SettingsProvider service.
- BookLibrary: Replace CollectionView with the new ObservableListView.
- Sampled: Simplify code.
- Samples: Fix blurring error template rectangle.


Version 4.2.0.100 (Release)
- WAF: Update version number.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ public async Task RunTest()
[TestMethod]
public async Task NoWaitTest()
{
TaskHelper.NoWait(null); // No NullReferenceException
TaskHelper.NoWait(null, true);

bool unobservedTaskException = false;
EventHandler<UnobservedTaskExceptionEventArgs> handler = (sender, e) =>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<dependencies>
<group targetFramework="UAP10.0">
<dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.1.0" exclude="Build,Analyzers" />
<dependency id="System.Waf.Core" version="4.2.0" />
<dependency id="System.Waf.Core" version="4.3.0-alpha1" />
</group>
</dependencies>
</metadata>
Expand Down

0 comments on commit 8643919

Please sign in to comment.