Skip to content

Commit

Permalink
release(0.6.3): release 0.6.3 (#690)
Browse files Browse the repository at this point in the history
  • Loading branch information
vthinkxie committed Dec 6, 2017
1 parent d76763c commit c6c28b8
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-zorro-antd",
"version": "0.6.2",
"version": "0.6.3",
"license": "MIT",
"description": "An enterprise-class UI components based on Ant Design and Angular",
"scripts": {
Expand Down Expand Up @@ -40,7 +40,7 @@
"url": "https://github.com/NG-ZORRO/ng-zorro-antd/issues"
},
"dependencies": {
"@angular/cdk": "5.0.0-rc0",
"@angular/cdk": "5.0.0-rc.3",
"moment": "^2.18.1",
"tslib": "^1.7.1"
},
Expand Down Expand Up @@ -90,7 +90,7 @@
},
"peerDependencies": {
"@angular/animations": "^5.0.0",
"@angular/cdk": "5.0.0-rc0",
"@angular/cdk": "5.0.0-rc.3",
"@angular/common": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
Expand Down
26 changes: 26 additions & 0 deletions src/showcase/nz-intro-changelog/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,32 @@

更新日志也可以在[Github](https://github.com/NG-ZORRO/ng-zorro-antd/releases)查看

## 0.6.3
`2017-12-07`

### BREAK CHANGES
* `DropDownButton``nzDisabled` 取代 `nzDisable` [#459](https://github.com/NG-ZORRO/ng-zorro-antd/pull/459) [@Trotyl Yu](https://github.com/trotyl)

### Features
* `Select` 支持 `option` 直接渲染 `ng-template` 内容 [#689](https://github.com/NG-ZORRO/ng-zorro-antd/pull/689)
* `Carousel` 支持更多 API [#688](https://github.com/NG-ZORRO/ng-zorro-antd/pull/688) [@Hsuan Lee](https://github.com/HsuanXyz)
* `Select` 支持下拉滚动到底部事件 `nzScrollToBottom`,用于滚动加载 [#678](https://github.com/NG-ZORRO/ng-zorro-antd/pull/678)
* 打包版本支持 `sourcemaps` [#666](https://github.com/NG-ZORRO/ng-zorro-antd/pull/666) [@Trotyl Yu](https://github.com/trotyl)
* 国际化支持土耳其语 [#634](https://github.com/NG-ZORRO/ng-zorro-antd/pull/634) [@Emrullah TUNCAY](https://github.com/etuncay)
* 国际化支持繁体中文 [#687](https://github.com/NG-ZORRO/ng-zorro-antd/pull/687)
* 所有 `boolean` 类型的属性支持直接以 `attribute` 方式使用 [#459](https://github.com/NG-ZORRO/ng-zorro-antd/pull/459) [@Trotyl Yu](https://github.com/trotyl)

### Bug Fixes
* `Radio` 修复动态改变选项时的问题 [#677](https://github.com/NG-ZORRO/ng-zorro-antd/pull/677) [@Hsuan Lee](https://github.com/HsuanXyz)
* `Select` 修复 `disabled` 选项可以使用方向键选中的问题 [#675](https://github.com/NG-ZORRO/ng-zorro-antd/pull/675) [@卡色](https://github.com/cipchk)
* `Affix` 修复位置问题 [#672](https://github.com/NG-ZORRO/ng-zorro-antd/pull/672) [@卡色](https://github.com/cipchk)

### Refactor
* 重构所有静态 `className` 绑定的方式 [#664](https://github.com/NG-ZORRO/ng-zorro-antd/pull/664) [@Trotyl Yu](https://github.com/trotyl)

### CI
* 并行加速CI测试 [#655](https://github.com/NG-ZORRO/ng-zorro-antd/pull/655) [@Trotyl Yu](https://github.com/trotyl)

## 0.6.2
`2017-11-29`

Expand Down
4 changes: 2 additions & 2 deletions src/showcase/nz-intro-getting-started/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { HttpClientModule } from '@angular/common/http';
import { NgZorroAntdModule } from 'ng-zorro-antd';
import { AppComponent } from './app.component';

Expand All @@ -58,7 +58,7 @@ import { AppComponent } from './app.component';
imports: [
BrowserModule,
FormsModule,
HttpModule,
HttpClientModule,
BrowserAnimationsModule,
NgZorroAntdModule.forRoot()
],
Expand Down

0 comments on commit c6c28b8

Please sign in to comment.