Increment patch version to 0.7.2

This commit is contained in:
Faisal Salman 2014-11-07 15:32:38 +07:00
parent a78d3f7d4b
commit d3f1b0eaf7
6 changed files with 18 additions and 9 deletions

View File

@ -1,6 +1,6 @@
{
"name": "ua-parser-js",
"version": "0.7.1",
"version": "0.7.2",
"authors": [
"Faisal Salman <fyzlman@gmail.com>"
],

View File

@ -1,6 +1,6 @@
{
"name": "ua-parser-js",
"version": "0.7.1",
"version": "0.7.2",
"description": "Lightweight JavaScript-based user-agent string parser",
"keywords": ["user-agent", "parser", "browser", "engine", "os", "device", "cpu"],
"scripts": ["src/ua-parser.js"],

10
dist/ua-parser.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
{
"title": "UAParser.js",
"name": "ua-parser-js",
"version": "0.7.1",
"version": "0.7.2",
"author": "Faisal Salman <fyzlman@gmail.com> (http://faisalman.com)",
"description": "Lightweight JavaScript-based user-agent string parser",
"keywords": [
@ -67,7 +67,8 @@
"node": "*"
},
"directories": {
"lib": "src",
"dist": "dist",
"src": "src",
"test": "test"
}
}

View File

@ -1,5 +1,5 @@
/**
* UAParser.js v0.7.1
* UAParser.js v0.7.2
* Lightweight JavaScript-based User-Agent string parser
* https://github.com/faisalman/ua-parser-js
*
@ -16,7 +16,7 @@
/////////////
var LIBVERSION = '0.7.1',
var LIBVERSION = '0.7.2',
EMPTY = '',
UNKNOWN = '?',
FUNC_TYPE = 'function',

View File

@ -1,7 +1,7 @@
{
"title": "UAParser.js",
"name": "ua-parser-js",
"version": "0.7.1",
"version": "0.7.2",
"description": "Lightweight JavaScript-based user-agent string parser",
"keywords": [
"user-agent",
@ -28,5 +28,5 @@
],
"bugs": "https://github.com/faisalman/ua-parser-js/issues",
"docs": "https://github.com/faisalman/ua-parser-js",
"download": "https://raw.github.com/faisalman/ua-parser-js/master/src/ua-parser.min.js"
"download": "https://raw.github.com/faisalman/ua-parser-js/master/dist/ua-parser.min.js"
}