Skip to content

Commit 7b2a250

Browse files
committed
3.2.0
Fixes #347 Fixes #353 Fixes #356
1 parent 4a41c1c commit 7b2a250

32 files changed

+746
-565
lines changed

.babelrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"presets": ["es2015"]
3+
}

.bowerrc

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/CONTRIBUTING.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Contributing
2+
3+
[Read the Contributing Guide](http://js-data.io/docs/contributing).
4+
5+
## Support
6+
7+
[Find out how to Get Support](http://js-data.io/docs/support).
8+
9+
## Community
10+
11+
[Explore the Community](http://js-data.io/docs/community).
12+
13+
### Have write access?
14+
15+
To cut a release:
16+
17+
1. Checkout master
18+
1. Bump version in `package.json` appropriately
19+
1. Run `npm run release`
20+
1. Update `CHANGELOG.md` appropriately
21+
1. Commit and push changes, including the `dist/` folder
22+
1. Make a GitHub release
23+
- set tag name to version
24+
- set release name to version
25+
- set release body to changelog entry for the version
26+
- attach the files in the `dist/` folder
27+
1. `npm publish .`

.github/ISSUE_TEMPLATE.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
(delete this line) GitHub Issues are NOT for support questions.
2+
(delete this line) GitHub Issues ARE for bug reports, feature requests, and other issues.
3+
(delete this line) Find out how to Get Support here: http://js-data.io/docs/support.
4+
5+
<your detailed, discussable, actionable, and helpful text goes here>
6+
7+
Thanks!

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Fixes #<issue_number_goes_here> (it's a good idea to open an issue first for discussion)
2+
3+
- [ ] - `npm test` succeeds
4+
- [ ] - Pull request has been squashed into 1 commit
5+
- [ ] - I did NOT commit changes to `dist/`
6+
- [ ] - Code coverage does not decrease (if any source code was changed)
7+
- [ ] - Appropriate JSDoc comments were updated in source code (if applicable)
8+
- [ ] - Approprate changes to js-data.io docs have been suggested ("Suggest Edits" button)

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ build_examples/browserify/bundle.js
2626
build_examples/webpack/bundle.js
2727
build_examples/webpack_es6/bundle.js
2828
build_examples/webpack_es6_2/bundle.js
29+
.js-data-http.js
30+
.js-data-http/

.mailmap

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
InternalFX <[email protected]> Bryan Morris <[email protected]>
3+
Jason Dobry <[email protected]> Jason Dobry <[email protected]>
4+
Kent C. Dodds <[email protected]> Kent C. Dodds <[email protected]>
5+
Robert Porter <[email protected]> Robert P <[email protected]>

.npmignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,8 @@ bower_components/
88
karma*
99
guide/
1010
doc/
11+
webpack.config.js
12+
circle.yml
13+
14+
.js-data-http.js
15+
.js-data-http/

AUTHORS

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This is the official list of js-data-angular project authors.
2+
#
3+
# Names are formatted as:
4+
# Name or Organization <email address>
5+
# The email address is not required for organizations.
6+
Andre Deutmeyer <[email protected]>
7+
Artemy Tregubenko <[email protected]>
8+
Asaf Katz <[email protected]>
9+
Chase Noel <[email protected]>
10+
Clark Pan <[email protected]>
11+
David Tang <[email protected]>
12+
Gabo Esquivel <[email protected]>
13+
Jason Aden <[email protected]>
14+
Jason Dobry <[email protected]>
15+
Kent C. Dodds <[email protected]>
16+
Loïc Mahieu <[email protected]>
17+
18+
Peter Dave Hello <[email protected]>
19+
Shai Reznik <[email protected]>
20+
21+
22+
Timothy Krell <[email protected]>
23+
vollnhals <[email protected]>
24+
Wes Cruver <[email protected]>

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
##### 3.2.0 - 17 March 2016
2+
3+
###### Backwards compatible bug fixes
4+
- #347 - BindOne recomputing computed properties
5+
- #353 - jshint or standard?
6+
- #356 - Multiple parents isn't working
7+
18
##### 3.1.1 - 20 September 2015
29

310
Stable Version 3.1.0

0 commit comments

Comments
 (0)