Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Commit

Permalink
v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
yesmeck committed Aug 28, 2019
1 parent d4d8572 commit 3b57566
Show file tree
Hide file tree
Showing 10 changed files with 37 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.7](https://github.com/remaxjs/remax/compare/v1.0.6...v1.0.7) (2019-08-28)

### Bug Fixes

- 修正 async/await 报错问题 ([423f30d](https://github.com/remaxjs/remax/commit/423f30d))
- 修正支付宝 events 事件不触发的问题 ([dbf6e09](https://github.com/remaxjs/remax/commit/dbf6e09))
- 修正支付宝组件的类型定义 ([#154](https://github.com/remaxjs/remax/issues/154)) ([9050ca1](https://github.com/remaxjs/remax/commit/9050ca1))

## [1.0.6](https://github.com/remaxjs/remax/compare/v1.0.5...v1.0.6) (2019-08-28)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"conventionalCommits": true
}
},
"version": "1.0.6",
"version": "1.0.7",
"npmClient": "yarn"
}
6 changes: 6 additions & 0 deletions packages/remax-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.7](https://github.com/remaxjs/remax/compare/v1.0.6...v1.0.7) (2019-08-28)

### Bug Fixes

- 修正 async/await 报错问题 ([423f30d](https://github.com/remaxjs/remax/commit/423f30d))

## [1.0.6](https://github.com/remaxjs/remax/compare/v1.0.5...v1.0.6) (2019-08-28)

**Note:** Version bump only for package remax-cli
Expand Down
6 changes: 3 additions & 3 deletions packages/remax-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remax-cli",
"version": "1.0.6",
"version": "1.0.7",
"description": "",
"main": "./lib/index.js",
"scripts": {
Expand All @@ -26,11 +26,11 @@
"@babel/types": "^7.4.4",
"@meck/rollup-plugin-postcss": "^2.0.3",
"@remax/postcss-px2units": "^0.2.0",
"@remax/regenerator-runtime": "^0.11.1",
"acorn-walk": "^7.0.0",
"commander": "^2.19.0",
"ejs": "^2.6.1",
"lodash": "^4.17.11",
"@remax/regenerator-runtime": "^0.11.1",
"rollup": "^1.16.0",
"rollup-plugin-alias": "^1.5.2",
"rollup-plugin-babel": "^4.3.2",
Expand Down Expand Up @@ -62,7 +62,7 @@
"@types/through2": "^2.0.34",
"jest": "^24.8.0",
"react": "^16.8.6",
"remax": "^1.0.6",
"remax": "^1.0.7",
"ts-jest": "^24.0.2",
"typescript": "^3.2.2"
}
Expand Down
7 changes: 7 additions & 0 deletions packages/remax/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.7](https://github.com/remaxjs/remax/compare/v1.0.6...v1.0.7) (2019-08-28)

### Bug Fixes

- 修正支付宝 events 事件不触发的问题 ([dbf6e09](https://github.com/remaxjs/remax/commit/dbf6e09))
- 修正支付宝组件的类型定义 ([#154](https://github.com/remaxjs/remax/issues/154)) ([9050ca1](https://github.com/remaxjs/remax/commit/9050ca1))

## [1.0.6](https://github.com/remaxjs/remax/compare/v1.0.5...v1.0.6) (2019-08-28)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/remax/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remax",
"version": "1.0.6",
"version": "1.0.7",
"description": "Runtime of remax",
"main": "lib/index.js",
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions packages/umi-plugin-remax/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.7](https://github.com/remaxjs/remax/compare/v1.0.6...v1.0.7) (2019-08-28)

**Note:** Version bump only for package umi-plugin-remax

## [1.0.6](https://github.com/remaxjs/remax/compare/v1.0.5...v1.0.6) (2019-08-28)

**Note:** Version bump only for package umi-plugin-remax
Expand Down
4 changes: 2 additions & 2 deletions packages/umi-plugin-remax/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "umi-plugin-remax",
"version": "1.0.6",
"version": "1.0.7",
"description": "> TODO: description",
"author": "Meck Zhu <[email protected]>",
"homepage": "https://github.com/remaxjs/remax#readme",
Expand All @@ -26,7 +26,7 @@
"url": "https://github.com/remaxjs/remax/issues"
},
"dependencies": {
"remax-cli": "^1.0.6",
"remax-cli": "^1.0.7",
"umi-types": "^0.3.17"
}
}
4 changes: 4 additions & 0 deletions website/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.7](https://github.com/remaxjs/remax/compare/v1.0.6...v1.0.7) (2019-08-28)

**Note:** Version bump only for package website

## [1.0.6](https://github.com/remaxjs/remax/compare/v1.0.5...v1.0.6) (2019-08-28)

**Note:** Version bump only for package website
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"description": "Documentation, built with mdx",
"author": "Praveen <[email protected]> (@praveenweb)",
"version": "1.0.6",
"version": "1.0.7",
"dependencies": {
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@emotion/core": "^10.0.10",
Expand Down

0 comments on commit 3b57566

Please sign in to comment.