Skip to content

Commit

Permalink
Version bump. README updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwaliszko committed Nov 24, 2016
1 parent b61d54b commit f2743f6
Show file tree
Hide file tree
Showing 7 changed files with 70 additions and 58 deletions.
93 changes: 52 additions & 41 deletions README.md

Large diffs are not rendered by default.

Binary file modified doc/api/api.chm
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ExpressiveAnnotations.MvcUnobtrusive")]
[assembly: AssemblyCopyright("Copyright © Jarosław Waliszko 2014")]
[assembly: AssemblyProduct("ExpressiveAnnotations.MvcUnobtrusive")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

Expand All @@ -30,12 +30,12 @@
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.5.1.0")]
[assembly: AssemblyFileVersion("2.5.1.0")]
[assembly: AssemblyVersion("2.5.2.0")]
[assembly: AssemblyFileVersion("2.5.2.0")]
1 change: 1 addition & 0 deletions src/ExpressiveAnnotations.Tests/ParserTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ public void verify_logic_without_context()
Assert.True(parser.Parse<bool>("1/2==0.5").Invoke());
Assert.True(parser.Parse<bool>("-1*-+- -+-1==-1").Invoke());
Assert.True(parser.Parse<bool>("- - -1+'a'+'b'+null+''+'c'+1+2=='-1abc12'").Invoke());
Assert.True(parser.Parse<bool>("1.2 + 'a' + .12=='1.2a0.12'").Invoke());

Assert.True(parser.Parse<bool>("1 - 2 -(6 / ((2*1.5 - 1) + 1)) * -2 + 1/2/1 == 3.50").Invoke());
Assert.True(parser.Parse<bool>("-.11e-10+.11e-10==.0-.0").Invoke());
Expand Down
14 changes: 7 additions & 7 deletions src/ExpressiveAnnotations/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ExpressiveAnnotations")]
[assembly: AssemblyCopyright("Copyright © Jarosław Waliszko 2014")]
[assembly: AssemblyProduct("ExpressiveAnnotations")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

Expand All @@ -35,12 +35,12 @@
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.7.0.0")]
[assembly: AssemblyFileVersion("2.7.0.0")]
[assembly: AssemblyVersion("2.7.1.0")]
[assembly: AssemblyFileVersion("2.7.1.0")]
2 changes: 1 addition & 1 deletion src/expressive.annotations.validate.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* expressive.annotations.validate.js - v2.6.8
/* expressive.annotations.validate.js - v2.7.0
* Client-side component of ExpressiveAnnotations - annotation-based conditional validation library.
* https://github.com/jwaliszko/ExpressiveAnnotations
*
Expand Down
4 changes: 2 additions & 2 deletions src/expressive.annotations.validate.min.js

Large diffs are not rendered by default.

0 comments on commit f2743f6

Please sign in to comment.