Skip to content

Commit 7c178c8

Browse files
committed
Preparing for 1.1.0 release
1 parent f954ce2 commit 7c178c8

5 files changed

Lines changed: 9 additions & 5 deletions

File tree

CHANGELOG.md

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

3+
## 1.1.0
4+
- Added the ability to require Cookies.js in CommonJS/Node environments that do not natively have a `window`
5+
object, by exporting a factory method that takes an instance of a `window`.
6+
37
## 1.0.1
48
- Fixed being unable to retrieve cookie values for keys that were named the same as a built-in `Object` property.
59

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.0.1 Minified](https://raw.github.com/ScottHamper/Cookies/1.0.1/dist/cookies.min.js) (~1 KB gzipped)
31-
- [v1.0.1 Unminified](https://raw.github.com/ScottHamper/Cookies/1.0.1/src/cookies.js) (~1.7 KB gzipped)
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)
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.0.1",
3+
"version" : "1.1.0",
44
"main" : "src/cookies.js",
55
"ignore" : [
66
"tests",

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.0.1",
3+
"version" : "1.1.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.0.1
2+
* Cookies.js - 1.1.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)