Skip to content

Commit e107fa8

Browse files
committed
Preparing for 1.2.0 release
I should really start using a better process for this...
1 parent 9e72ed6 commit e107fa8

File tree

6 files changed

+9
-6
lines changed

6 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Change Log
22

3+
## 1.2.0
4+
- `Infinity` may now be used with the "expires" option to set a persistent cookie.
5+
36
## 1.1.0
47
- Added the ability to require Cookies.js in CommonJS/Node environments that do not natively have a `window`
58
object, by exporting a factory method that takes an instance of a `window`.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ The following browsers have passed all of the automated Cookies.js tests:
2727

2828
## Getting the Library
2929
#### Direct downloads
30-
- [v1.1.0 Minified](https://raw.github.com/ScottHamper/Cookies/1.1.0/dist/cookies.min.js) (~1 KB gzipped)
31-
- [v1.1.0 Unminified](https://raw.github.com/ScottHamper/Cookies/1.1.0/src/cookies.js) (~1.7 KB gzipped)
30+
- [v1.2.0 Minified](https://raw.github.com/ScottHamper/Cookies/1.2.0/dist/cookies.min.js) (~1 KB gzipped)
31+
- [v1.2.0 Unminified](https://raw.github.com/ScottHamper/Cookies/1.2.0/dist/cookies.js) (~1.7 KB gzipped)
3232

3333
#### Node Package Manager
3434
`npm install cookies-js`

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "cookies-js",
3-
"version" : "1.1.0",
3+
"version" : "1.2.0",
44
"main" : "src/cookies.js",
55
"ignore" : [
66
"**/*",

dist/cookies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Cookies.js - 1.1.0
2+
* Cookies.js - 1.2.0
33
* https://github.com/ScottHamper/Cookies
44
*
55
* This is free and unencumbered software released into the public domain.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name" : "cookies-js",
3-
"version" : "1.1.0",
3+
"version" : "1.2.0",
44
"author" : "Scott Hamper",
55
"description" : "Client-Side Cookie Manipulation API",
66
"homepage" : "http://github.com/ScottHamper/Cookies",

src/cookies.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Cookies.js - 1.1.0
2+
* Cookies.js - 1.2.0
33
* https://github.com/ScottHamper/Cookies
44
*
55
* This is free and unencumbered software released into the public domain.

0 commit comments

Comments
 (0)