Skip to content

Commit 28987e1

Browse files
committed
chore: bump version to 0.5.0
1 parent 624091e commit 28987e1

9 files changed

+72
-9
lines changed

CHANGELOG.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,66 @@
1+
<a name="0.5.0"></a>
2+
# 0.5.0 (2014-10-10)
3+
4+
5+
## Bug Fixes
6+
7+
- typo
8+
([96f6e383](https://github.com/Famous/famous-angular/commit/96f6e3834965473973194755566957a0c97388ff))
9+
- compare attr.disabled with a string to disable click on surface
10+
([4714e383](https://github.com/Famous/famous-angular/commit/4714e383be78071089321a4c35cf04894ea6ed22))
11+
- add .bowerrc that specifies installation directory (fixes inconsistent bower version behaviors)
12+
([7c31c9d4](https://github.com/Famous/famous-angular/commit/7c31c9d424b1d5bb3d700157785ae91e9ac0e9cb))
13+
- handle DOM clean-up more effectively when both fa-animate-enter and fa-animate-leave are present on one element
14+
([4e34a22f](https://github.com/Famous/famous-angular/commit/4e34a22fdc1a8f8a1a64be7ef5f2c81c1e4c21c1))
15+
16+
17+
## Features
18+
19+
- track famo.us 0.3.0
20+
([624091e7](https://github.com/Famous/famous-angular/commit/624091e7d4203d342a8762c50f6b4563374bc005))
21+
- support fa-options and fa-index with fa-edge-swapper
22+
([024a37e3](https://github.com/Famous/famous-angular/commit/024a37e3048df69eb66caa51d18ec8d29f9dd187))
23+
- implement fa-edge-swapper
24+
([5ec55132](https://github.com/Famous/famous-angular/commit/5ec551327f44f1d6188860d816b247b149f9a9cd))
25+
- default to linear easing in $timeline step
26+
([8ea7d8b2](https://github.com/Famous/famous-angular/commit/8ea7d8b263d442e8b045e62cfaa44e77ae859f9f))
27+
28+
29+
## Documentation
30+
31+
- add documentation for fa-animate-leave, fa-animate-halt, fa-animate-move
32+
([f74ef7b9](https://github.com/Famous/famous-angular/commit/f74ef7b91b14ebeff0ccebf07f7d88c7db1d8081))
33+
- add basic fa-animate-enter documentation
34+
([48b4b386](https://github.com/Famous/famous-angular/commit/48b4b386ee92c78d2ae01a48d87a53fbf3a5acb4))
35+
- add documentation for fa-edge-swapper
36+
([8b3ae339](https://github.com/Famous/famous-angular/commit/8b3ae3394a00967b6d367bf4efd8f305ed509a11))
37+
- modify multi piping example to work
38+
([3f3403bc](https://github.com/Famous/famous-angular/commit/3f3403bc3dddb46dec5382788fa76a6e8b808952))
39+
- clarify submodule init step for library development in README
40+
([5d54a015](https://github.com/Famous/famous-angular/commit/5d54a0154ad7ee204db13507b6bf609d7f478d63))
41+
42+
43+
## Breaking Changes
44+
45+
- due to [624091e7](https://github.com/Famous/famous-angular/commit/624091e7d4203d342a8762c50f6b4563374bc005),
46+
47+
48+
Famo.us 0.3.0 introduces some breaking changes.
49+
50+
* Boilerplate:
51+
* Must change src of famous-global from:
52+
"bower_components/famous/famous-global.js"
53+
to
54+
"bower_components/famous/dist/famous-global.js"
55+
56+
* May need to perform a `bower cache clean` before updating your bower packages. Verify that "bower_components/famous/CHANGELOG.md" mentions 0.3.0 to ensure that the update was successful.
57+
58+
* Application code:
59+
* Famo.us 0.3.0 defaults `align` to [0,0] instead of defaulting to any provided value of `origin`. In cases where `origin` is defined but `align` is not, element alignment will be broken. Simplest fix for existing code is to add an `fa-align` attribute that matches `fa-origin` on any element where `fa-origin` is defined and `fa-align` is not.
60+
* Vanilla Famo.us Surfaces' `eventHandler` member has been renamed to `_eventOutput`.
61+
* See the [Famo.us CHANGELOG](https://github.com/Famous/famous/blob/v0.3.0/CHANGELOG.md) for more details.
62+
63+
164
<a name="0.4.0"></a>
265
# 0.4.0 (2014-09-18)
366

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "famous-angular",
33
"description": "Bring structure to your Famo.us apps with the power of AngularJS. Famo.us/Angular integrates seamlessly with existing Angular and Famo.us apps.",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"license": "MPL v2.0",
66
"homepage": "https://github.com/Famous/famous-angular",
77
"main": [
@@ -11,7 +11,7 @@
1111
"dependencies": {
1212
"angular": "1.2.26",
1313
"famous": "0.3.0",
14-
"famous-angular-bower": "https://code.famo.us/famous-angular/bower/famous-angular-bower.tar.gz?version=0.4.0"
14+
"famous-angular-bower": "https://code.famo.us/famous-angular/bower/famous-angular-bower.tar.gz?version=0.5.0"
1515
},
1616
"devDependencies": {
1717
"angular-mocks": "1.2.26"

dist/famous-angular.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* famous-angular - Bring structure to your Famo.us apps with the power of AngularJS. Famo.us/Angular integrates seamlessly with existing Angular and Famo.us apps.
3-
* @version v0.4.0
3+
* @version v0.5.0
44
* @link https://github.com/Famous/famous-angular
55
* @license MPL v2.0
66
*/

dist/famous-angular.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* famous-angular - Bring structure to your Famo.us apps with the power of AngularJS. Famo.us/Angular integrates seamlessly with existing Angular and Famo.us apps.
3-
* @version v0.4.0
3+
* @version v0.5.0
44
* @link https://github.com/Famous/famous-angular
55
* @license MPL v2.0
66
*/

dist/famous-angular.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/famous-angular.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

famous-angular-docs

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "famous-angular",
33
"description": "Bring structure to your Famo.us apps with the power of AngularJS. Famo.us/Angular integrates seamlessly with existing Angular and Famo.us apps.",
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"license": "MPL v2.0",
66
"homepage": "https://github.com/Famous/famous-angular",
77
"repository": {

0 commit comments

Comments
 (0)