Skip to content

Commit

Permalink
bumped version to 1.4.3 and updated release date
Browse files Browse the repository at this point in the history
  • Loading branch information
dperini committed Oct 11, 2017
1 parent 510caa4 commit b52923e
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "nwmatcher",
"version": "1.4.2",
"version": "1.4.3",
"homepage": "https://github.com/dperini/nwmatcher",
"authors": [
"Diego Perini <diego.perini@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion build/HEADER
@@ -1,5 +1,5 @@
/*!
* NWMatcher 1.4.2 - Fast CSS3 Selector Engine
* NWMatcher 1.4.3 - Fast CSS3 Selector Engine
* Copyright (C) 2007-2017 Diego Perini
* See http://nwbox.com/license
*/
2 changes: 1 addition & 1 deletion build/VERSION
@@ -1 +1 @@
1.4.2
1.4.3
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "nwmatcher",
"version": "1.4.2",
"version": "1.4.3",
"description": "A CSS3-compliant JavaScript selector engine.",
"homepage": "http://javascript.nwbox.com/NWMatcher/",
"main": "./src/nwmatcher",
Expand Down
6 changes: 3 additions & 3 deletions src/nwmatcher-base.js
Expand Up @@ -5,9 +5,9 @@
* nwmatcher-base.js - A fast CSS selector engine and matcher
*
* Author: Diego Perini <diego.perini at gmail com>
* Version: 1.4.2
* Version: 1.4.3
* Created: 20070722
* Release: 20170804
* Release: 20171011
*
* License:
* http://javascript.nwbox.com/NWMatcher/MIT-LICENSE
Expand All @@ -28,7 +28,7 @@

})(this, function(global) {

var version = 'nwmatcher-1.4.2',
var version = 'nwmatcher-1.4.3',

doc = global.document,
root = doc.documentElement,
Expand Down
6 changes: 3 additions & 3 deletions src/nwmatcher-noqsa.js
Expand Up @@ -5,9 +5,9 @@
* nwmatcher-noqsa.js - A fast CSS selector engine and matcher
*
* Author: Diego Perini <diego.perini at gmail com>
* Version: 1.4.2
* Version: 1.4.3
* Created: 20070722
* Release: 20170804
* Release: 20171011
*
* License:
* http://javascript.nwbox.com/NWMatcher/MIT-LICENSE
Expand All @@ -28,7 +28,7 @@

})(this, function(global) {

var version = 'nwmatcher-1.4.2',
var version = 'nwmatcher-1.4.3',

doc = global.document,
root = doc.documentElement,
Expand Down
6 changes: 3 additions & 3 deletions src/nwmatcher.js
Expand Up @@ -5,9 +5,9 @@
* nwmatcher.js - A fast CSS selector engine and matcher
*
* Author: Diego Perini <diego.perini at gmail com>
* Version: 1.4.2
* Version: 1.4.3
* Created: 20070722
* Release: 20170804
* Release: 20171011
*
* License:
* http://javascript.nwbox.com/NWMatcher/MIT-LICENSE
Expand All @@ -28,7 +28,7 @@

})(this, function(global) {

var version = 'nwmatcher-1.4.2',
var version = 'nwmatcher-1.4.3',

// processing context & root element
doc = global.document,
Expand Down
2 changes: 1 addition & 1 deletion test/css3-compat/css3-compat.js
Expand Up @@ -13,7 +13,7 @@ var CDN = 'http://ajax.googleapis.com/ajax/libs/',
engines = {
'querySelectorAll': [ 'document.querySelectorAll(s)', '' ],

'nwmatcher-1.4.2': [ 'NW.Dom.select(s)', '../../src/nwmatcher-noqsa.js' ]
'nwmatcher-1.4.3': [ 'NW.Dom.select(s)', '../../src/nwmatcher-noqsa.js' ]

// 'base2-2.0alpha1': [ 'base2.dom.querySelectorAll(c,s)', 'lib/base2+dom.js' ],
// 'prototype-1.6.1': [ '$$(s)', CDN + 'prototype/1.6.1.0/prototype.js' ],
Expand Down

0 comments on commit b52923e

Please sign in to comment.