Skip to content

Commit

Permalink
Preparing for 1.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottHamper committed Nov 7, 2014
1 parent f954ce2 commit 7c178c8
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.1.0
- Added the ability to require Cookies.js in CommonJS/Node environments that do not natively have a `window`
object, by exporting a factory method that takes an instance of a `window`.

## 1.0.1
- Fixed being unable to retrieve cookie values for keys that were named the same as a built-in `Object` property.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ The following browsers have passed all of the automated Cookies.js tests:

## Getting the Library
#### Direct downloads
- [v1.0.1 Minified](https://raw.github.com/ScottHamper/Cookies/1.0.1/dist/cookies.min.js) (~1 KB gzipped)
- [v1.0.1 Unminified](https://raw.github.com/ScottHamper/Cookies/1.0.1/src/cookies.js) (~1.7 KB gzipped)
- [v1.1.0 Minified](https://raw.github.com/ScottHamper/Cookies/1.1.0/dist/cookies.min.js) (~1 KB gzipped)
- [v1.1.0 Unminified](https://raw.github.com/ScottHamper/Cookies/1.1.0/src/cookies.js) (~1.7 KB gzipped)

#### Node Package Manager
`npm install cookies-js`
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "cookies-js",
"version" : "1.0.1",
"version" : "1.1.0",
"main" : "src/cookies.js",
"ignore" : [
"tests",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name" : "cookies-js",
"version" : "1.0.1",
"version" : "1.1.0",
"author" : "Scott Hamper",
"description" : "Client-Side Cookie Manipulation API",
"homepage" : "http://github.com/ScottHamper/Cookies",
Expand Down
2 changes: 1 addition & 1 deletion src/cookies.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Cookies.js - 1.0.1
* Cookies.js - 1.1.0
* https://github.com/ScottHamper/Cookies
*
* This is free and unencumbered software released into the public domain.
Expand Down

0 comments on commit 7c178c8

Please sign in to comment.