From 7c178c821f7cc69e03a2d218868d075d70b68529 Mon Sep 17 00:00:00 2001 From: Scott Hamper Date: Fri, 7 Nov 2014 11:46:10 -0500 Subject: [PATCH] Preparing for 1.1.0 release --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- bower.json | 2 +- package.json | 2 +- src/cookies.js | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 639f71c..5c8013b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 70994e7..25354a0 100644 --- a/README.md +++ b/README.md @@ -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` diff --git a/bower.json b/bower.json index 0c6072c..7fd85db 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name" : "cookies-js", - "version" : "1.0.1", + "version" : "1.1.0", "main" : "src/cookies.js", "ignore" : [ "tests", diff --git a/package.json b/package.json index c23be29..4d796fa 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/cookies.js b/src/cookies.js index 114a3fa..3b31f98 100644 --- a/src/cookies.js +++ b/src/cookies.js @@ -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.