Skip to content

Commit

Permalink
chore(release): v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pkozlowski-opensource committed Jun 24, 2013
1 parent cd889b6 commit 23a3226
Show file tree
Hide file tree
Showing 2 changed files with 108 additions and 2 deletions.
106 changes: 106 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,109 @@
# 0.4.0 (2013-06-24)

## Features

- **buttons:**
- support dynamic values in btn-radio ([e8c5b548](http://github.com/angular-ui/bootstrap/commit/e8c5b548))
- **carousel:**
- add option to prevent pause ([5f895c13](http://github.com/angular-ui/bootstrap/commit/5f895c13))
- **datepicker:**
- add datepicker directive ([30a00a07](http://github.com/angular-ui/bootstrap/commit/30a00a07))
- **pagination:**
- option for different mode when maxSize ([a023d082](http://github.com/angular-ui/bootstrap/commit/a023d082))
- add pager directive ([d9526475](http://github.com/angular-ui/bootstrap/commit/d9526475))
- **tabs:**
- Change directive name, add features ([c5326595](http://github.com/angular-ui/bootstrap/commit/c5326595))
- support disabled state ([2b78dd16](http://github.com/angular-ui/bootstrap/commit/2b78dd16))
- add support for vertical option ([88d17a75](http://github.com/angular-ui/bootstrap/commit/88d17a75))
- add support for other navigation types, like 'pills' ([53e0a39f](http://github.com/angular-ui/bootstrap/commit/53e0a39f))
- **timepicker:**
- add timepicker directive ([9bc5207b](http://github.com/angular-ui/bootstrap/commit/9bc5207b))
- **tooltip:**
- add mouse placement option ([ace7bc60](http://github.com/angular-ui/bootstrap/commit/ace7bc60))
- add *-append-to-body attribute ([d0896263](http://github.com/angular-ui/bootstrap/commit/d0896263))
- add custom trigger support ([dfa53155](http://github.com/angular-ui/bootstrap/commit/dfa53155))
- **typeahead:**
- support typeahead-on-select callback ([91ac17c9](http://github.com/angular-ui/bootstrap/commit/91ac17c9))
- support wait-ms option ([7f35a3f2](http://github.com/angular-ui/bootstrap/commit/7f35a3f2))

## Bug Fixes

- **accordion:**
- allow accordion heading directives as attributes. ([25f6e55c](http://github.com/angular-ui/bootstrap/commit/25f6e55c))
- **carousel:**
- do not allow user to change slide if transitioning ([1d19663f](http://github.com/angular-ui/bootstrap/commit/1d19663f))
- make slide 'active' binding optional ([17d6c3b5](http://github.com/angular-ui/bootstrap/commit/17d6c3b5))
- fix error with deleting multiple slides at once ([3fcb70f0](http://github.com/angular-ui/bootstrap/commit/3fcb70f0))
- **dialog:**
- remove dialogOpenClass to get in line with v2.3 ([f009b23f](http://github.com/angular-ui/bootstrap/commit/f009b23f))
- **pagination:**
- bind *-text attributes ([e1bff6b7](http://github.com/angular-ui/bootstrap/commit/e1bff6b7))
- **progressbar:**
- user `percent` attribute instead of `value`. ([58efec80](http://github.com/angular-ui/bootstrap/commit/58efec80))
- **tooltip:**
- fix positioning error when appendToBody is set to true ([76fee1f9](http://github.com/angular-ui/bootstrap/commit/76fee1f9))
- close tooltips appended to body on location change ([041261b5](http://github.com/angular-ui/bootstrap/commit/041261b5))
- tooltips will hide on scope.$destroy ([3e5a58e5](http://github.com/angular-ui/bootstrap/commit/3e5a58e5))
- support of custom $interpolate.startSymbol ([88c94ee6](http://github.com/angular-ui/bootstrap/commit/88c94ee6))
- make sure tooltip scope is evicted from cache ([9246905a](http://github.com/angular-ui/bootstrap/commit/9246905a))
- **typeahead:**
- return focus to the input after selecting a suggestion ([04a21e33](http://github.com/angular-ui/bootstrap/commit/04a21e33))

## Breaking Changes

- **pagination:**
The 'first-text', 'previous-text', 'next-text' and 'last-text'
attributes are now binded to parent scope.

To migrate your code, surround the text of these attributes with quotes.

Before:

<pagination first-text="<<" ...></pagination>

After:

<pagination first-text="'<<'" ...></pagination>

- **progressbar:**
The 'value' is replaced by 'percent'.

Before:

<progress value="..."></progress>

After:

<progress percent="..."></progress>

- **tabs:**
The 'tabs' directive has been renamed to 'tabset', and
the 'pane' directive has been renamed to 'tab'.

To migrate your code, follow the example below.

Before:

<tabs>
<pane heading="one">
First Content
</pane>
<pane ng-repeat="apple in basket" heading="{{apple.heading}}">
{{apple.content}}
</pane>
</tabs>

After:

<tabset>
<tab heading="one">
First Content
</tab>
<tab ng-repeat="apple in basket" heading="{{apple.heading}}">
{{apple.content}}
</tab>
</tabset>

# 0.3.0 (2013-04-30)

## Features
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"author": "https://github.com/angular-ui/bootstrap/graphs/contributors",
"name": "angular-ui-bootstrap",
"version": "0.4.0-SNAPSHOT",
"version": "0.4.0",
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-ngdocs": "~0.1.1",
"grunt-conventional-changelog": "~0.1.1",
"grunt-conventional-changelog": "~0.1.2",
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-copy": "~0.4.1",
"grunt-contrib-uglify": "~0.2.0",
Expand Down

0 comments on commit 23a3226

Please sign in to comment.