diff --git a/CHANGELOG.md b/CHANGELOG.md index 93406b10d1..5e1d57f2ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ + +## [1.3.3](https://github.com/valor-software/ng2-bootstrap/compare/v1.3.2...v1.3.3) (2017-02-03) + + +### Bug Fixes + +* **typeahead:** allow to work with formControl ([e3f4854](https://github.com/valor-software/ng2-bootstrap/commit/e3f4854)), closes [#1595](https://github.com/valor-software/ng2-bootstrap/issues/1595) + + +### Features + +* **package:** export missed things from utils ([54eb13d](https://github.com/valor-software/ng2-bootstrap/commit/54eb13d)), closes [#1584](https://github.com/valor-software/ng2-bootstrap/issues/1584) [#1590](https://github.com/valor-software/ng2-bootstrap/issues/1590) + + + ## [1.3.2](https://github.com/valor-software/ng2-bootstrap/compare/v1.3.1...v1.3.2) (2017-01-31) diff --git a/package.json b/package.json index f4a63714fe..b239590cb3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ng2-bootstrap-base", - "version": "1.3.2", + "version": "1.3.3", "description": "Native Angular Bootstrap Components", "private": true, "scripts": { diff --git a/src/package.json b/src/package.json index b644e30ac0..f56495d1d3 100644 --- a/src/package.json +++ b/src/package.json @@ -1,6 +1,6 @@ { "name": "ng2-bootstrap", - "version": "1.3.2", + "version": "1.3.3", "dependencies": { "moment": "*" }, diff --git a/src/spec/utils/linkedlist.spec.ts b/src/spec/utils/linkedlist.spec.ts index da9eaf53ca..457da474d1 100644 --- a/src/spec/utils/linkedlist.spec.ts +++ b/src/spec/utils/linkedlist.spec.ts @@ -1,4 +1,4 @@ -import LinkedList from '../../utils/linked-list.class'; +import { LinkedList } from '../../utils/linked-list.class'; let list: LinkedList; @@ -105,19 +105,19 @@ describe('Linked List. Overridden (from Array) methods.', () => { }); it('Positive check some()', () => { - expect(list.some((item: string) => item === '2')); + expect(list.some((item: string) => item === '2')); }); it('Negative check some()', () => { - expect(list.some((item: string) => item === '6')).toBeFalsy(); + expect(list.some((item: string) => item === '6')).toBeFalsy(); }); it('Negative check every()', () => { - expect(list.every((item: string) => item === '2')).toBeFalsy(); + expect(list.every((item: string) => item === '2')).toBeFalsy(); }); it('Positive check every()', () => { - expect(list.every((item: string) => item !== '0')).toBeTruthy(); + expect(list.every((item: string) => item !== '0')).toBeTruthy(); }); });