Skip to content

Commit

Permalink
Version up.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwaliszko committed Sep 30, 2014
1 parent 0536e3d commit e89ef8f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
// 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.2.0.0")]
[assembly: AssemblyFileVersion("2.2.0.0")]
[assembly: AssemblyVersion("2.2.1.0")]
[assembly: AssemblyFileVersion("2.2.1.0")]
4 changes: 2 additions & 2 deletions src/ExpressiveAnnotations/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@
// 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.2.2.0")]
[assembly: AssemblyFileVersion("2.2.2.0")]
[assembly: AssemblyVersion("2.2.3.0")]
[assembly: AssemblyFileVersion("2.2.3.0")]
4 changes: 2 additions & 2 deletions src/expressive.annotations.validate.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* expressive.annotations.validate.js - v2.2.1
/* expressive.annotations.validate.js - v2.2.2
* this script is a part of client side component of ExpresiveAnnotations - annotation-based conditional validation library
* copyright (c) 2014 Jaroslaw Waliszko - https://github.com/JaroslawWaliszko
* licensed MIT: http://www.opensource.org/licenses/mit-license.php */
Expand Down Expand Up @@ -116,7 +116,7 @@ var

toolchain = {
methods: {},
addMethod: function (name, func) { // add multiple function signatures to methods object (methods overloading, based only on numbers of arguments)
addMethod: function(name, func) { // add multiple function signatures to methods object (methods overloading, based only on numbers of arguments)
var old = this.methods[name];
this.methods[name] = function() {
if (func.length === arguments.length) {
Expand Down

0 comments on commit e89ef8f

Please sign in to comment.