Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
chevdor committed Apr 27, 2023
1 parent 936a4b7 commit e743fd9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions 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 = "cargo-crate"
version = "0.1.8"
version = "0.2.0"
edition = "2021"
description = "A set of crate related cargo commands. You can for instance get the information about a crate, as text or json, including the owners of a crate and its versions."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -23,7 +23,7 @@ env_logger = "0.10"
log = "0.4"
color-eyre = "0.6"
webbrowser = "0.8"
lib-cargo-crate = { path = "../lib", version = "0.1" }
lib-cargo-crate = { path = "../lib", version = "0.2" }
anyhow = "1.0.70"
inquire = { version = "0.6", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ publish:
git checkout v$TAG
cargo workspaces publish --skip-published --amend --exact --all

release : check test_all bump doc md tag tag_push publish

tag:
#!/bin/sh
echo Tagging version v$TAG
Expand All @@ -75,3 +73,5 @@ tag_push:
#!/bin/sh
echo Pushing v$TAG
git push origin v$TAG

release : check test_all bump doc md tag tag_push publish
2 changes: 1 addition & 1 deletion lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lib-cargo-crate"
version = "0.1.8"
version = "0.2.0"
edition = "2021"
license = "MIT"
description = "The lib for cargo-crate"
Expand Down

0 comments on commit e743fd9

Please sign in to comment.