Skip to content

Commit 8bcc2b8

Browse files
committed
[Release] v0.7.1
1 parent 14b0c3a commit 8bcc2b8

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ jobs:
3030
command: login
3131
args: ${{ secrets.CRATES_TOKEN }}
3232

33-
- name: Publish library to crates.io
34-
uses: actions-rs/cargo@v1
35-
with:
36-
command: publish
37-
args: --manifest-path core/Cargo.toml
38-
39-
- name: Publish cli to crates.io
40-
uses: actions-rs/cargo@v1
41-
with:
42-
command: publish
43-
args: --manifest-path cli/Cargo.toml
33+
# - name: Publish library to crates.io
34+
# uses: actions-rs/cargo@v1
35+
# with:
36+
# command: publish
37+
# args: --manifest-path core/Cargo.toml
38+
39+
# - name: Publish cli to crates.io
40+
# uses: actions-rs/cargo@v1
41+
# with:
42+
# command: publish
43+
# args: --manifest-path cli/Cargo.toml
4444

4545
- name: Bump version and push tag
4646
id: tag_version

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codesnap-cli"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
edition = "2021"
55
description = "CLI tools for generating beautiful code snapshots"
66
license = "MIT"
@@ -13,7 +13,7 @@ path = "src/main.rs"
1313
ansi_term = "0.12.1"
1414
anyhow = "1.0.91"
1515
clap = { version = "4.5.21", features = ["derive"] }
16-
codesnap = { path = "../core", version = "0.7.0" }
16+
codesnap = { path = "../core", version = "0.7.1" }
1717
home = "0.5.9"
1818
indicatif = "0.17.9"
1919
serde_json = "1.0.132"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "codesnap"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
edition = "2021"
55
description = "Pure Rust library for generating beautiful code snapshots"
66
license = "MIT"

0 commit comments

Comments
 (0)