Skip to content

Commit

Permalink
Changed for v0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Jun 17, 2016
1 parent edbb3e5 commit 2b6843e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.8.0

- Included x-assignment operator (#34)
- Provided `map` function (#33)
- Introduced attachable properties (#32)
- Extended the documentation (#31)
- Created an `ObservableDictionary` helper (#30)
- REPL improvements
- Distribute installer via Chocolatey

# 0.7.0

- Provided `is` / `as` functions (#29)
Expand Down
6 changes: 3 additions & 3 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Task("Publish-Chocolatey-Package")
});
});

Task("Publish-Release")
Task("Publish-GitHub-Release")
.IsDependentOn("Create-Squirrel-Package")
.WithCriteria(() => isLocal)
.Does(() =>
Expand Down Expand Up @@ -315,8 +315,8 @@ Task("Default")

Task("Publish")
.IsDependentOn("Publish-Nuget-Package")
.IsDependentOn("Publish-Chocolatey-Package")
.IsDependentOn("Publish-Release");
.IsDependentOn("Publish-GitHub-Release")
.IsDependentOn("Publish-Chocolatey-Package");

Task("AppVeyor")
.IsDependentOn("Run-Unit-Tests")
Expand Down
4 changes: 2 additions & 2 deletions src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

[assembly: AssemblyCompany("Polytrope")]
[assembly: AssemblyProduct("Mages")]
[assembly: AssemblyVersion("0.7.0")]
[assembly: AssemblyFileVersion("0.7.0")]
[assembly: AssemblyVersion("0.8.0")]
[assembly: AssemblyFileVersion("0.8.0")]
[assembly: AssemblyCopyright("Copyright (c) 2016, Florian Rappl")]

0 comments on commit 2b6843e

Please sign in to comment.