Skip to content

Commit

Permalink
version bump to 1.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rodneyrehm committed Mar 8, 2014
1 parent a9fd77b commit cad4fbf
Show file tree
Hide file tree
Showing 12 changed files with 27 additions and 25 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@ URI.js is published under the [MIT license](http://www.opensource.org/licenses/m

## Changelog ##

### 1.12.1 (March 8th 2014) ###

* fixing [`.encodeQuery()`](http://medialize.github.io/URI.js/docs.html#static-encodeQuery) and [`.decodeQuery()`](http://medialize.github.io/URI.js/docs.html#static-decodeQuery) to respect [`URI.escapeQuerySpace`](http://medialize.github.io/URI.js/docs.html#setting-escapeQuerySpace) - ([Issue #137](https://github.com/medialize/URI.js/issues/137))
* fixing fragment plugins to return URI for simpler loading - ([Issue #139](https://github.com/medialize/URI.js/issues/139))

Expand Down
2 changes: 1 addition & 1 deletion URI.jquery.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"URI-manipulation",
"URL-manipulation"
],
"version": "1.12.0",
"version": "1.12.1",
"author": {
"name": "Rodney Rehm",
"url": "http://rodneyrehm.de/en/"
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "URIjs",
"version": "1.12.0",
"version": "1.12.1",
"main": [
"src/URI.js",
"src/IPv6.js",
Expand Down
2 changes: 1 addition & 1 deletion build.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function build(files) {
output_format: "text",
output_info: "compiled_code"
}, function(data) {
var code = "/*! URI.js v1.12.0 http://medialize.github.com/URI.js/ */\n/* build contains: " + files.join(', ') + " */\n" + data;
var code = "/*! URI.js v1.12.1 http://medialize.github.com/URI.js/ */\n/* build contains: " + files.join(', ') + " */\n" + data;
$progress.hide();
$out.val(code).parent().show();
$out.prev().find('a').remove();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "URIjs",
"version": "1.12.0",
"version": "1.12.1",
"title": "URI.js - Mutating URLs",
"author": {
"name": "Rodney Rehm",
Expand Down
2 changes: 1 addition & 1 deletion src/IPv6.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* URI.js - Mutating URLs
* IPv6 Support
*
* Version: 1.12.0
* Version: 1.12.1
*
* Author: Rodney Rehm
* Web: http://medialize.github.com/URI.js/
Expand Down
2 changes: 1 addition & 1 deletion src/SecondLevelDomains.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* URI.js - Mutating URLs
* Second Level Domain (SLD) Support
*
* Version: 1.12.0
* Version: 1.12.1
*
* Author: Rodney Rehm
* Web: http://medialize.github.com/URI.js/
Expand Down
4 changes: 2 additions & 2 deletions src/URI.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*!
* URI.js - Mutating URLs
*
* Version: 1.12.0
* Version: 1.12.1
*
* Author: Rodney Rehm
* Web: http://medialize.github.com/URI.js/
Expand Down Expand Up @@ -53,7 +53,7 @@ function URI(url, base) {
return this;
};

URI.version = '1.12.0';
URI.version = '1.12.1';

var p = URI.prototype;
var hasOwn = Object.prototype.hasOwnProperty;
Expand Down
28 changes: 14 additions & 14 deletions src/URI.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/URITemplate.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* URI.js - Mutating URLs
* URI Template Support - http://tools.ietf.org/html/rfc6570
*
* Version: 1.12.0
* Version: 1.12.1
*
* Author: Rodney Rehm
* Web: http://medialize.github.com/URI.js/
Expand Down
2 changes: 1 addition & 1 deletion src/jquery.URI.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* URI.js - Mutating URLs
* jQuery Plugin
*
* Version: 1.12.0
* Version: 1.12.1
*
* Author: Rodney Rehm
* Web: http://medialize.github.com/URI.js/jquery-uri-plugin.html
Expand Down
2 changes: 1 addition & 1 deletion src/jquery.URI.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cad4fbf

Please sign in to comment.