Skip to content

Commit cf8196e

Browse files
committed
Bumped version number to 1.1.0
1 parent 774b693 commit cf8196e

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

0 Bytes
Binary file not shown.

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This means that if you placed the files in your `/js/` directory, UpUp will only
3636
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).
3737
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).
3838
````html
39-
<script src="//cdnjs.cloudflare.com/ajax/libs/UpUp/1.0.0/upup.min.js"></script>
39+
<script src="//cdnjs.cloudflare.com/ajax/libs/UpUp/1.1.0/upup.min.js"></script>
4040
<script>
4141
UpUp.start({
4242
'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": "1.0.0",
3+
"version": "1.1.0",
44
"description": "Control the content users see, even when they're offline",
55
"keywords": [
66
"cache",

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 : 1.0.0
2+
//! version : 1.1.0
33
//! author : Tal Ater @TalAter
44
//! license : MIT
55
//! https://github.com/TalAter/UpUp
@@ -42,7 +42,7 @@
4242
* 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).
4343
* 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).
4444
* ````html
45-
* <script src="//cdnjs.cloudflare.com/ajax/libs/UpUp/1.0.0/upup.min.js"></script>
45+
* <script src="//cdnjs.cloudflare.com/ajax/libs/UpUp/1.1.0/upup.min.js"></script>
4646
* <script>
4747
* UpUp.start({
4848
* 'content-url': 'offline.html',

src/upup.sw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! UpUp Service Worker
2-
//! version : 1.0.0
2+
//! version : 1.1.0
33
//! author : Tal Ater @TalAter
44
//! license : MIT
55
//! https://github.com/TalAter/UpUp

0 commit comments

Comments
 (0)