Skip to content

Commit

Permalink
0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tdelmas committed Feb 18, 2024
1 parent 80255f1 commit 08e8582
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ resolver = "2"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/tdelmas/typed_floats"
version = "0.7.3"
rust-version = "1.70"
version = "0.7.4"
rust-version = "1.70"
2 changes: 1 addition & 1 deletion typed_floats/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ libm = ["dep:num-traits", "typed_floats_macros/libm"]
[dependencies]

[dependencies.typed_floats_macros]
version = "=0.7.3"
version = "=0.7.4"
path = "../typed_floats_macros"

[dependencies.serde]
Expand Down
2 changes: 2 additions & 0 deletions xtask/src/tag.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ pub fn tag(args: Vec<String>) {
println!("Updating version in Cargo.toml files...");

update_version(&crate_version, &new_version, "./Cargo.toml");
update_version(&crate_version, &new_version, "./typed_floats/Cargo.toml");
//build
std::process::Command::new("cargo")
.args(["build", "--release"])
Expand All @@ -85,6 +86,7 @@ pub fn tag(args: Vec<String>) {
std::process::Command::new("git")
.args([
"add",
"./Cargo.toml",
"./typed_floats/Cargo.toml",
"./typed_floats_macros/Cargo.toml",
"./Cargo.lock",
Expand Down

0 comments on commit 08e8582

Please sign in to comment.