Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
bumped version to 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
uzikilon committed Jul 10, 2017
1 parent 95aecc9 commit a7c9c94
Show file tree
Hide file tree
Showing 8 changed files with 2,061 additions and 37 deletions.
12 changes: 2 additions & 10 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"no-bitwise": 2,
"no-caller": 2,
"no-catch-shadow": 2,
"comma-dangle": 2,
"no-cond-assign": 2,
"no-console": 2,
"no-constant-condition": 2,
Expand All @@ -29,16 +28,14 @@
"no-else-return": 2,
"no-empty": 2,
"no-empty-character-class": 2,
"no-empty-label": 2,
"no-eq-null": 2,
"no-eval": 2,
"no-ex-assign": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-extra-boolean-cast": 2,
"no-extra-parens": 2,
"no-extra-semi": 2,
"strict": 2,
"strict": ["error", "function"],
"no-fallthrough": 2,
"no-floating-decimal": 2,
"no-func-assign": 2,
Expand Down Expand Up @@ -77,15 +74,13 @@
"no-proto": 2,
"no-redeclare": 2,
"no-regex-spaces": 2,
"quote-props": 2,
"no-restricted-modules": 2,
"no-return-assign": 2,
"no-script-url": 2,
"no-self-compare": 2,
"no-sequences": 2,
"no-shadow": 2,
"no-shadow-restricted-names": 2,
"semi-spacing": 2,
"no-spaced-func": 2,
"no-sparse-arrays": 2,
"no-sync": 2,
Expand Down Expand Up @@ -144,19 +139,16 @@
"semi": 2,
"semi-spacing": [2, { "before": false, "after": true }],
"sort-vars": 0,
"space-before-function-paren": 2,
"space-after-keywords": [2, "always"],
"keyword-spacing": 2,
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, { "anonymous": "always", "named": "never" }],
"object-curly-spacing": 2,
"array-bracket-spacing": 2,
"computed-property-spacing": 2,
"space-in-parens": [2, "never"],
"space-infix-ops": 2,
"space-return-throw-case": 2,
"space-unary-ops": [2, { "words": true, "nonwords": false }],
"spaced-comment": [2, "always", { "exceptions": ["!"] }],
"strict": 2,
"use-isnan": 2,
"valid-jsdoc": 2,
"valid-typeof": 2,
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sudo: false
language: node_js
node_js:
- "iojs-v2.4.0"
- "node"
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ The [annotated source code](<http://uzikilon.github.com/backbone-poller/>) is av

### Downloads (Right-click, and use "Save As")

- [Development Version](<https://raw.github.com/uzikilon/backbone-poller/1.1.3/backbone.poller.js>) 4.6kb, Uncompressed with Comments
- [Production Version](<https://raw.github.com/uzikilon/backbone-poller/1.1.3/backbone.poller.min.js>) 1.8kb, Minified and Gzipped
- [Development Version](<https://raw.github.com/uzikilon/backbone-poller/1.1.4/backbone.poller.js>) 4.6kb, Uncompressed with Comments
- [Production Version](<https://raw.github.com/uzikilon/backbone-poller/1.1.4/backbone.poller.min.js>) 1.8kb, Minified and Gzipped

----

Expand Down Expand Up @@ -164,6 +164,11 @@ Backbone.Poller.reset();

## Change Log

### 1.1.4
July 10th, 2017 - [Diff](https://github.com/uzikilon/backbone-poller/compare/1.1.3...1.1.4)

- Bugfix: Moved bower to be a test dependency only

### 1.1.3
June 1st, 2015 - [Diff](https://github.com/uzikilon/backbone-poller/compare/1.1.2...1.1.3)

Expand Down
2 changes: 1 addition & 1 deletion backbone.poller.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*!
(c) 2012 Uzi Kilon, Splunk Inc.
Backbone Poller 1.1.3
Backbone Poller 1.1.4
https://github.com/uzikilon/backbone-poller
Backbone Poller may be freely distributed under the MIT license.
*/
Expand Down
6 changes: 0 additions & 6 deletions backbone.poller.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backbone-poller",
"version": "1.1.3",
"version": "1.1.4",
"homepage": "https://github.com/uzikilon/backbone-poller",
"description": "Backbone poller is a simple utility that allows polling on any backbone model or collection.",
"main": "backbone.poller.js",
Expand Down
Loading

0 comments on commit a7c9c94

Please sign in to comment.