diff --git a/README.md b/README.md index 4f39e764..d6ef5a39 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,8 @@ URI.js is published under the [MIT license](http://www.opensource.org/licenses/m ## Changelog ## +### 1.1.0 ### + * URI.withinSring() * added normalizeProtocol() to lowercase protocols * made normalizeHostname() lowercase hostnames @@ -166,6 +168,6 @@ URI.js is published under the [MIT license](http://www.opensource.org/licenses/m * build `{foo: null, bar: ""}` to "?foo&bar=" [Algorithm for serializing URL parameters](http://dvcs.w3.org/hg/url/raw-file/tip/Overview.html#url-parameter-serialization) * fixed RegExp escaping -### 1.0 ### +### 1.0.0 ### * Initial URI.js diff --git a/package.json b/package.json index aff75489..b4b737e5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "URI.js", - "version": "1.0.0", + "version": "1.1.0", "title": "URI.js - Mutating URLs", "author": { "name": "Rodney Rehm", diff --git a/src/URI.js b/src/URI.js index 1ab7ca99..15153d50 100644 --- a/src/URI.js +++ b/src/URI.js @@ -1,7 +1,7 @@ /* * URL.js - Mutating URLs * - * Version: 1.0.0 + * Version: 1.1.0 * * Author: Rodney Rehm * Web: http://medialize.github.com/URI.js/