Skip to content

Commit

Permalink
chore(*): Release-1.9.23
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed Dec 6, 2018
1 parent 348ce3b commit 3dca61c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .fusion
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"engine": "sass",
"publish-template": "@alifd/[email protected].x",
"publish-template": "@alifd/[email protected].3",
"class-prefix": ".next",
"icon": {
"iconfont-project-id": "544230",
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

<a name="1.9.23"></a>
## [1.9.23](https://github.com/alibaba-fusion/next/compare/1.9.22...1.9.23) (2018-12-06)




<a name="1.9.22"></a>
## [1.9.22](https://github.com/alibaba-fusion/next/compare/1.9.21...1.9.22) (2018-11-29)

Expand Down
2 changes: 1 addition & 1 deletion LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Latest Log

## [1.9.22](https://github.com/alibaba-fusion/next/compare/1.9.21...1.9.22) (2018-11-29)
## [1.9.23](https://github.com/alibaba-fusion/next/compare/1.9.22...1.9.23) (2018-12-06)


2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var next = require('./lib/index.js');

next.version = '1.9.22';
next.version = '1.9.23';

module.exports = next;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alifd/next",
"version": "1.9.22",
"version": "1.9.23",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = function* changelog() {
default: updateVersion(packageInfo.version, 'z'),
message: '请输入待发布的版本号:',
validate: function(value) {
if (!semver.valid(value) || semver.lte(value, npmVersion)) {
if (!semver.valid(value)) {
return logger.warn('请输入正确的版本号,并且大于基线版本号!');
}
return true;
Expand Down

0 comments on commit 3dca61c

Please sign in to comment.