Skip to content

Commit 77063c6

Browse files
committed
Bumped version to 0.2.0
1 parent 7130d92 commit 77063c6

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

dist/upup.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/upup.sw.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/upup.zip

2 Bytes
Binary file not shown.

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ This means that if you placed the files in your `/js/` directory, UpUp will only
3535
It is possible to keep `upup.min.js` outside the scope (e.g. in a CDN), as long as `upup.sw.min.js` is kept local (that file's location determines the scope).
3636
If you choose to keep the two in separate directories, make sure to pass the `service-worker-url` [setting](https://github.com/TalAter/UpUp/tree/master/docs#settings).
3737
````html
38-
<script src="//cdnjs.cloudflare.com/ajax/libs/UpUp/0.1.0/upup.min.js"></script>
38+
<script src="//cdnjs.cloudflare.com/ajax/libs/UpUp/0.2.0/upup.min.js"></script>
3939
<script>
4040
UpUp.start({
4141
'content-url': 'offline.html',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "UpUp",
3-
"version": "0.1.1",
3+
"version": "0.2.0",
44
"description": "Control the content users see, even when they're offline",
55
"main": "index.js",
66
"scripts": {

src/upup.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! UpUp
2-
//! version : 0.1.1
2+
//! version : 0.2.0
33
//! author : Tal Ater @TalAter
44
//! license : MIT
55
//! https://github.com/TalAter/UpUp
@@ -41,7 +41,7 @@
4141
* It is possible to keep `upup.min.js` outside the scope (e.g. in a CDN), as long as `upup.sw.min.js` is kept local (that file's location determines the scope).
4242
* If you choose to keep the two in separate directories, make sure to pass the `service-worker-url` [setting](https://github.com/TalAter/UpUp/tree/master/docs#settings).
4343
* ````html
44-
* <script src="//cdnjs.cloudflare.com/ajax/libs/UpUp/0.1.0/upup.min.js"></script>
44+
* <script src="//cdnjs.cloudflare.com/ajax/libs/UpUp/0.2.0/upup.min.js"></script>
4545
* <script>
4646
* UpUp.start({
4747
* 'content-url': 'offline.html',

src/upup.sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
//! UpUp ServiceWorker
3-
//! version : 0.1.1
3+
//! version : 0.2.0
44
//! author : Tal Ater @TalAter
55
//! license : MIT
66
//! https://github.com/TalAter/UpUp

0 commit comments

Comments
 (0)