Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit b41f433

Browse files
committed
chore(release): bump package version and update changelog
1 parent ced1cc0 commit b41f433

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="0.14.5"></a>
2+
## [0.14.5](https://github.com/angular-ui/ui-select/compare/v0.14.5...v0.14.5) (2016-02-18)
3+
4+
5+
### Bug Fixes
6+
7+
* **uiSelectMultipleDirective:** fix track by error ([ced1cc0](https://github.com/angular-ui/ui-select/commit/ced1cc0)), closes [#1343](https://github.com/angular-ui/ui-select/issues/1343)
8+
9+
10+
111
<a name="0.14.4"></a>
212
## [0.14.4](https://github.com/angular-ui/ui-select/compare/v0.14.4...v0.14.4) (2016-02-18)
313

dist/select.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* ui-select
33
* http://github.com/angular-ui/ui-select
4-
* Version: 0.14.4 - 2016-02-18T20:29:05.232Z
4+
* Version: 0.14.5 - 2016-02-18T20:39:22.529Z
55
* License: MIT
66
*/
77

dist/select.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* ui-select
33
* http://github.com/angular-ui/ui-select
4-
* Version: 0.14.4 - 2016-02-18T20:29:05.181Z
4+
* Version: 0.14.5 - 2016-02-18T20:39:22.471Z
55
* License: MIT
66
*/
77

@@ -1350,8 +1350,8 @@ uis.directive('uiSelectMultiple', ['uiSelectMinErr','$timeout', function(uiSelec
13501350
if($select.parserResult.trackByExp){
13511351
var propsItemNameMatches = /(\w*)\./.exec($select.parserResult.trackByExp);
13521352
var matches = /\.([^\s]+)/.exec($select.parserResult.trackByExp);
1353-
if(propsItemNameMatches.length > 0 && propsItemNameMatches[1] == $select.parserResult.itemName){
1354-
if(matches.length>0 && result[matches[1]] == value[matches[1]]){
1353+
if(propsItemNameMatches && propsItemNameMatches.length > 0 && propsItemNameMatches[1] == $select.parserResult.itemName){
1354+
if(matches && matches.length>0 && result[matches[1]] == value[matches[1]]){
13551355
resultMultiple.unshift(list[p]);
13561356
return true;
13571357
}

dist/select.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/select.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "git://github.com/angular-ui/ui-select.git"
88
},
99
"style": "dist/select.css",
10-
"version": "0.14.5",
10+
"version": "0.14.6",
1111
"devDependencies": {
1212
"bower": "~1.3",
1313
"conventional-changelog": "^0.5.3",

0 commit comments

Comments
 (0)