Skip to content

Commit

Permalink
Backbone.Stickit 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
akre54 committed Mar 2, 2015
1 parent e659ee3 commit 364a9c4
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
1 change: 1 addition & 0 deletions .travis.yml
@@ -1,5 +1,6 @@
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
deploy:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2012 The New York Times, CMS Group, Matthew DeLambo <delambo@gmail.com>
Copyright (c) 2012-2015 The New York Times, CMS Group, Matthew DeLambo <delambo@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
6 changes: 4 additions & 2 deletions README.md
@@ -1,4 +1,4 @@
[-> **Documentation for current/stable release: 0.8.0**](http://nytimes.github.com/backbone.stickit/)
[-> **Documentation for current/stable release: 0.9.0**](http://nytimes.github.com/backbone.stickit/)

**The following is documentation for the code in master/edge version...**

Expand All @@ -10,7 +10,7 @@ Stickit is a Backbone data binding plugin that binds Model attributes to View el

## Download + Source

[download v0.8.0](http://nytimes.github.com/backbone.stickit/downloads/backbone.stickit_0.8.0.zip)
[download v0.9.0](http://nytimes.github.com/backbone.stickit/downloads/backbone.stickit_0.9.0.zip)

[download master/edge](https://raw.github.com/NYTimes/backbone.stickit/master/backbone.stickit.js)

Expand Down Expand Up @@ -674,6 +674,8 @@ MIT
## Change Log
#### Master
#### 0.9.0
- **Breaking Change**: Classes are now treated separately from other attribute bindings. Use the new `classes` hash to bind element classes to your attributes.
- `defaultOption` can be defined as a function.
- Passing a Backbone Collection to `selectOptions` will keep the select dropdown in sync with add, remove, and sort events on the collection.
Expand Down
4 changes: 2 additions & 2 deletions backbone.stickit.js
@@ -1,5 +1,5 @@
// Backbone.Stickit v0.8.0, MIT Licensed
// Copyright (c) 2012 The New York Times, CMS Group, Matthew DeLambo <delambo@gmail.com>
// Backbone.Stickit v0.9.0, MIT Licensed
// Copyright (c) 2012-2015 The New York Times, CMS Group, Matthew DeLambo <delambo@gmail.com>

(function (factory) {

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Expand Up @@ -3,7 +3,7 @@
"description": "Backbone data binding, model binding plugin. The real logic-less templates.",
"homepage": "http://nytimes.github.io/backbone.stickit/",
"main": ["./backbone.stickit.js"],
"version": "0.8.0",
"version": "0.9.0",
"license": "https://github.com/NYTimes/backbone.stickit/blob/master/LICENSE",
"keywords": ["backbone", "data-binding", "client", "browser"],
"author": {
Expand Down
6 changes: 3 additions & 3 deletions package.json
@@ -1,16 +1,16 @@
{
"name": "backbone.stickit",
"description": "Model binding in Backbone style.",
"version": "0.8.0",
"version": "0.9.0",
"author": "Matthew DeLambo <delambo@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/nytimes/backbone.stickit"
},
"main": "backbone.stickit.js",
"peerDependencies": {
"dependencies": {
"underscore": ">=1.4.2",
"backbone": ">=0.9.0"
"backbone": ">=1.0.0"
},
"devDependencies": {
"phantomjs": "^1.9.7",
Expand Down

0 comments on commit 364a9c4

Please sign in to comment.