Skip to content

Commit

Permalink
⬆️ 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IonicaBizau committed Aug 14, 2015
1 parent 168dcc9 commit 5efae52
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ Browse the demos on http://jillix.github.io/url.js/
The library is available on [CDNJS](https://cdnjs.com/libraries/urljs) as well. To use it, just do:

```html
<script src="https://cdnjs.cloudflare.com/ajax/libs/urljs/1.1.0/url.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/urljs/1.2.0/url.min.js"></script>
```

## Usage

```html
<script src="path/to/url.js"></script>
<!-- or use the cdn
<script src="https://cdnjs.cloudflare.com/ajax/libs/urljs/1.1.0/url.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/urljs/1.2.0/url.min.js"></script>
-->
<script>
Url.updateSearchParam("answer", 42);
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "urljs",
"version": "1.1.0",
"version": "1.2.0",
"description": "A lightweight JavaScript library to manipulate the page url.",
"main": "src/url.js",
"directories": {
Expand All @@ -9,6 +9,9 @@
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"contributors": [
"Ionică Bizău <[email protected]> (http://ionicabizau.net)"
],
"repository": {
"type": "git",
"url": "https://github.com/jillix/url.js.git"
Expand Down
2 changes: 1 addition & 1 deletion src/url.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,5 +148,5 @@
Url.stringify = stringify;

// Version
Url.version = "1.1.0";
Url.version = "1.2.0";
})(window);
2 changes: 1 addition & 1 deletion src/url.min.js

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

0 comments on commit 5efae52

Please sign in to comment.