Skip to content

Commit 64068fa

Browse files
authored
release: 3.5.0 (#1379)
1 parent 771c683 commit 64068fa

File tree

12 files changed

+35
-19
lines changed

12 files changed

+35
-19
lines changed

.travis.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
sudo: false
22
language: node_js
33
addons:
4-
apt:
5-
sources:
6-
- google-chrome
7-
packages:
8-
- google-chrome-stable
4+
chrome: stable
95
node_js:
106
- '8'
117

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
<a name="3.5.0"></a>
2+
# [3.5.0](https://github.com/akveo/nebular/compare/v3.4.2...v3.5.0) (2019-04-12)
3+
4+
5+
### Bug Fixes
6+
7+
* remove scss debug calls ([#1339](https://github.com/akveo/nebular/issues/1339)) ([b9bd521](https://github.com/akveo/nebular/commit/b9bd521))
8+
* **calendar:** fix native date service addMonth date overflow ([#1347](https://github.com/akveo/nebular/issues/1347)) ([ffd386c](https://github.com/akveo/nebular/commit/ffd386c))
9+
* **cdk:** fix scroll blocker for custom `withScroll` mode ([#1364](https://github.com/akveo/nebular/issues/1364)) ([34193cc](https://github.com/akveo/nebular/commit/34193cc)), closes [#1158](https://github.com/akveo/nebular/issues/1158) [#1259](https://github.com/akveo/nebular/issues/1259)
10+
* **month picker:** prevent duplicates ([#1377](https://github.com/akveo/nebular/issues/1377)) ([47aff73](https://github.com/akveo/nebular/commit/47aff73))
11+
* **option:** emit selection change when selection is changed ([#1334](https://github.com/akveo/nebular/issues/1334)) ([788a6d4](https://github.com/akveo/nebular/commit/788a6d4))
12+
* **select:** prevent dispose call on uninitialized properties ([#1340](https://github.com/akveo/nebular/issues/1340)) ([a7a158d](https://github.com/akveo/nebular/commit/a7a158d))
13+
14+
15+
### Features
16+
17+
* **search:** input event ([#1038](https://github.com/akveo/nebular/issues/1038)) ([58fa556](https://github.com/akveo/nebular/commit/58fa556))
18+
19+
20+
121
<a name="3.4.2"></a>
222
## [3.4.2](https://github.com/akveo/nebular/compare/v3.4.1...v3.4.2) (2019-03-31)
323

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nebular",
3-
"version": "3.4.2",
3+
"version": "3.5.0",
44
"license": "MIT",
55
"author": "akveo <contact@akveo.com>",
66
"browserslist": [

packages-smoke/package-lock.json

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

packages-smoke/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "packages-smoke",
3-
"version": "3.4.2",
3+
"version": "3.5.0",
44
"scripts": {
55
"ng": "ng",
66
"start": "ng serve",

src/framework/auth/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nebular/auth",
3-
"version": "3.4.2",
3+
"version": "3.5.0",
44
"description": "@nebular/auth",
55
"main": "./bundles/auth.umd.js",
66
"module": "./index.js",
@@ -32,7 +32,7 @@
3232
"@angular/router": "^7.0.0",
3333
"@angular/forms": "^7.0.0",
3434
"@angular/http": "^7.0.0",
35-
"@nebular/theme": "3.4.2",
35+
"@nebular/theme": "3.5.0",
3636
"rxjs": "^6.3.0"
3737
}
3838
}

src/framework/bootstrap/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nebular/bootstrap",
3-
"version": "3.4.2",
3+
"version": "3.5.0",
44
"description": "@nebular/bootstrap",
55
"author": "akveo",
66
"license": "MIT",
@@ -22,6 +22,6 @@
2222
],
2323
"peerDependencies": {
2424
"bootstrap": "^4.0.0",
25-
"@nebular/theme": "3.4.2"
25+
"@nebular/theme": "3.5.0"
2626
}
2727
}

src/framework/date-fns/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nebular/date-fns",
3-
"version": "3.4.2",
3+
"version": "3.5.0",
44
"description": "@nebular/date-fns",
55
"main": "./bundles/theme.umd.js",
66
"module": "./index.js",
@@ -24,7 +24,7 @@
2424
"nebular"
2525
],
2626
"peerDependencies": {
27-
"@nebular/theme": "3.4.2",
27+
"@nebular/theme": "3.5.0",
2828
"date-fns": ">=2.0.0-alpha.16 <=2.0.0-alpha.27"
2929
}
3030
}

src/framework/moment/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nebular/moment",
3-
"version": "3.4.2",
3+
"version": "3.5.0",
44
"description": "@nebular/moment",
55
"main": "./bundles/theme.umd.js",
66
"module": "./index.js",
@@ -24,7 +24,7 @@
2424
"nebular"
2525
],
2626
"peerDependencies": {
27-
"@nebular/theme": "3.4.2",
27+
"@nebular/theme": "3.5.0",
2828
"moment": "^2.22.2"
2929
}
3030
}

0 commit comments

Comments
 (0)