Skip to content

Commit 17b661b

Browse files
committed
chore: bump version
1 parent cbfcb58 commit 17b661b

File tree

7 files changed

+27
-26
lines changed

7 files changed

+27
-26
lines changed

.github/workflows/main.yml

+18-17
Original file line numberDiff line numberDiff line change
@@ -42,23 +42,24 @@ jobs:
4242
- name: Check Format
4343
run: cargo fmt -- --check
4444

45-
build-web:
46-
needs: build-main
47-
runs-on: ubuntu-latest
48-
steps:
49-
- uses: actions/checkout@v2
50-
- uses: actions/setup-node@v1
51-
with:
52-
node-version: "16"
53-
- name: Init web
54-
working-directory: web/
55-
run: |
56-
node --version
57-
yarn --version
58-
yarn install
59-
- name: Build
60-
working-directory: web/
61-
run: yarn build
45+
# now Pages.dev do this for us
46+
# build-web:
47+
# needs: build-main
48+
# runs-on: ubuntu-latest
49+
# steps:
50+
# - uses: actions/checkout@v2
51+
# - uses: actions/setup-node@v1
52+
# with:
53+
# node-version: "16"
54+
# - name: Init web
55+
# working-directory: web/
56+
# run: |
57+
# node --version
58+
# yarn --version
59+
# yarn install
60+
# - name: Build
61+
# working-directory: web/
62+
# run: yarn build
6263
# - name: Test
6364
# working-directory: web/
6465
# run: yarn test # no effective test so far

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: "Release"
33
on:
44
push:
55
branches:
6-
- main
6+
# - main
77
- test
88
tags:
99
- v*

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zhconv"
3-
version = "0.1.0-rc5"
3+
version = "0.1.0-rc6"
44
edition = "2021"
55
authors = ["Hung-I Wang <[email protected]>"]
66
license = "GPL-2.0-or-later"

cli/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zhconv-cli"
3-
version = "0.1.0-rc"
3+
version = "0.1.0-rc6"
44
edition = "2021"
55
authors = ["Hung-I Wang <[email protected]>"]
66
license = "GPL-2.0-or-later"
@@ -13,7 +13,7 @@ name = "zhconv"
1313
path = "src/main.rs"
1414

1515
[dependencies]
16-
zhconv = { version = "0.1.0-rc5", path = "../" }
16+
zhconv = { version = "0.1.0-rc6", path = "../" }
1717
structopt = "0.3"
1818
anyhow = "1.0"
1919
log = "0.4"

pyo3/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyo3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zhconv-pyo3"
3-
version = "0.1.0-rc5"
3+
version = "0.1.0-rc6"
44
edition = "2021"
55
authors = ["Hung-I Wang <[email protected]>"]
66
license = "GPL-2.0-or-later"

0 commit comments

Comments
 (0)