Skip to content

Commit

Permalink
Merge branch 'master' into fix-bar-axis-label
Browse files Browse the repository at this point in the history
  • Loading branch information
paleface001 committed Nov 26, 2019
2 parents d2f76c5 + fd9e178 commit e010e15
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 25 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/gh-pages.yml

This file was deleted.

48 changes: 48 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,48 @@
name: Release

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm install
- run: npm ci
- run: npm run build

publish-site:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- run: npm install
- run: npm run site:build
- uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: public

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
37 changes: 36 additions & 1 deletion CHANGELOG.md
@@ -1,3 +1,38 @@
## 0.11.0 (2019-11-22)

* Start a new journey
- Start a new journey

## <small>0.11.1 (2019-11-26)</small>

- chore: :up: upgrade @antv/gatsby-theme-antv ([4e917df](https://github.com/antvis/g2plot/commit/4e917df))
- chore: add design principles for components ([a17476d](https://github.com/antvis/g2plot/commit/a17476d))
- chore: add header image to readme ([df16646](https://github.com/antvis/g2plot/commit/df16646))
- chore: add npm publish to release action ([6f120b5](https://github.com/antvis/g2plot/commit/6f120b5))
- chore: add titleSuffix ([8b039df](https://github.com/antvis/g2plot/commit/8b039df))
- chore: fix lint ([aa94993](https://github.com/antvis/g2plot/commit/aa94993))
- chore: prettier code ([7304b64](https://github.com/antvis/g2plot/commit/7304b64))
- chore: update g2 and component version ([4d7043d](https://github.com/antvis/g2plot/commit/4d7043d))
- chore: update gatsby-theme-antv ([15374bf](https://github.com/antvis/g2plot/commit/15374bf))
- chore: update homepage address ([1010f35](https://github.com/antvis/g2plot/commit/1010f35))
- chore: update package.json ([cb1ef7a](https://github.com/antvis/g2plot/commit/cb1ef7a))
- chore: update readme ([566ceb9](https://github.com/antvis/g2plot/commit/566ceb9))
- chore: update readme ([f371024](https://github.com/antvis/g2plot/commit/f371024))
- chore: update readme header ([3126ab8](https://github.com/antvis/g2plot/commit/3126ab8))
- chore: update readme header ([317d111](https://github.com/antvis/g2plot/commit/317d111))
- chore: update readme image ([3fcd5c0](https://github.com/antvis/g2plot/commit/3fcd5c0))
- chore: update site & readme ([94f5552](https://github.com/antvis/g2plot/commit/94f5552))
- chore: 优化文档样式 ([e7460bb](https://github.com/antvis/g2plot/commit/e7460bb))
- chore(action): update gh-pages trigger to on release published ([e98a995](https://github.com/antvis/g2plot/commit/e98a995))
- chore(website): build website and gh-pages on action ([cf7d6e0](https://github.com/antvis/g2plot/commit/cf7d6e0))
- add ggplot2 link ([891bbcd](https://github.com/antvis/g2plot/commit/891bbcd))
- add isAppLogo config to homepage ([aad0d93](https://github.com/antvis/g2plot/commit/aad0d93))
- update hpmepage image ([47f4999](https://github.com/antvis/g2plot/commit/47f4999))
- Update locale.json ([201a487](https://github.com/antvis/g2plot/commit/201a487))
- Update README.md ([057a0aa](https://github.com/antvis/g2plot/commit/057a0aa))
- Update README.md ([55a6a0e](https://github.com/antvis/g2plot/commit/55a6a0e))
- fix: axisLine style won't work in responsive plots ([99e7f3c](https://github.com/antvis/g2plot/commit/99e7f3c))
- fix: homepage english version ([135db97](https://github.com/antvis/g2plot/commit/135db97))
- fix: homepage typo ([770dacf](https://github.com/antvis/g2plot/commit/770dacf))
- fix: support line label formatter config ([df84160](https://github.com/antvis/g2plot/commit/df84160))
- docs: remove wrong title and description ([bfa101f](https://github.com/antvis/g2plot/commit/bfa101f))
- feat: 隐藏 bar 和 percentagestackbar x 轴的 tickline ([b443f21](https://github.com/antvis/g2plot/commit/b443f21))
6 changes: 3 additions & 3 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@antv/g2plot",
"version": "0.11.0",
"version": "0.11.1",
"description": "G2 Plot, a market of plots built with the Grammar of Graphics'",
"author": "https://github.com/orgs/antvis/people",
"main": "lib/index.js",
Expand Down Expand Up @@ -52,13 +52,13 @@
}
},
"dependencies": {
"@antv/component": "~0.4.0-beta.4",
"@antv/component": "~0.4.0-beta.5",
"@antv/coord": "~0.2.2",
"@antv/dom-util": "~2.0.1",
"@antv/event-emitter": "^0.1.1",
"@antv/g": "~3.5.0-beta.1",
"@antv/g-gesture": "~0.1.0",
"@antv/g2": "~3.6.0-beta.5",
"@antv/g2": "~3.6.0-beta.6",
"@antv/gui": "~0.1.0",
"@antv/matrix-util": "~2.0.2",
"@antv/scale": "^0.2.1",
Expand Down

0 comments on commit e010e15

Please sign in to comment.