Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Gowee committed Aug 14, 2022
1 parent cbfcb58 commit 17b661b
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 26 deletions.
35 changes: 18 additions & 17 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,23 +42,24 @@ jobs:
- name: Check Format
run: cargo fmt -- --check

build-web:
needs: build-main
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "16"
- name: Init web
working-directory: web/
run: |
node --version
yarn --version
yarn install
- name: Build
working-directory: web/
run: yarn build
# now Pages.dev do this for us
# build-web:
# needs: build-main
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-node@v1
# with:
# node-version: "16"
# - name: Init web
# working-directory: web/
# run: |
# node --version
# yarn --version
# yarn install
# - name: Build
# working-directory: web/
# run: yarn build
# - name: Test
# working-directory: web/
# run: yarn test # no effective test so far
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: "Release"
on:
push:
branches:
- main
# - main
- test
tags:
- v*
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zhconv"
version = "0.1.0-rc5"
version = "0.1.0-rc6"
edition = "2021"
authors = ["Hung-I Wang <[email protected]>"]
license = "GPL-2.0-or-later"
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zhconv-cli"
version = "0.1.0-rc"
version = "0.1.0-rc6"
edition = "2021"
authors = ["Hung-I Wang <[email protected]>"]
license = "GPL-2.0-or-later"
Expand All @@ -13,7 +13,7 @@ name = "zhconv"
path = "src/main.rs"

[dependencies]
zhconv = { version = "0.1.0-rc5", path = "../" }
zhconv = { version = "0.1.0-rc6", path = "../" }
structopt = "0.3"
anyhow = "1.0"
log = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions pyo3/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyo3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zhconv-pyo3"
version = "0.1.0-rc5"
version = "0.1.0-rc6"
edition = "2021"
authors = ["Hung-I Wang <[email protected]>"]
license = "GPL-2.0-or-later"
Expand Down

0 comments on commit 17b661b

Please sign in to comment.