Skip to content

Commit

Permalink
V 1.0.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-englert committed Feb 10, 2016
1 parent f6352c3 commit 38cabde
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
10 changes: 10 additions & 0 deletions Documentation/Content/VersionHistory/VersionHistory.aml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@
<title>Version History</title>
<content>
<list class="bullet">
<listItem>
<para>1.0.33.0</para>
<list class="bullet">
<listItem>
<para>Attributed validation support for ObservableObject.</para>
<para>ClipoardHelper: Default to TEXT, as CSV is not Unicode.</para>
<para>Enhance all converters (usage, error handling, tracing).</para>
</listItem>
</list>
</listItem>
<listItem>
<para>1.0.32.0</para>
<list class="bullet">
Expand Down
2 changes: 1 addition & 1 deletion Publish.cmd
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SET VERSION=1.0.32.0
SET VERSION=1.0.33.0

PUSHD "%~dp0Deploy"

Expand Down
9 changes: 7 additions & 2 deletions Version.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,10 @@
[assembly: AssemblyCopyright("© tom-englert.de 2015-2016")]
[assembly: AssemblyTrademark("")]

[assembly: AssemblyVersion("1.0.32.0")]
[assembly: AssemblyFileVersion("1.0.32.0")]
[assembly: AssemblyVersion(Product.Version)]
[assembly: AssemblyFileVersion(Product.Version)]

internal static class Product
{
public const string Version = "1.0.33.0";
}

0 comments on commit 38cabde

Please sign in to comment.