Skip to content

Commit

Permalink
Merge pull request #27 from rodneylab/fix__add_exact_version_support
Browse files Browse the repository at this point in the history
fix: 💫 add support for exact versions
  • Loading branch information
rodneylab authored Jan 29, 2025
2 parents 6897c15 + 90bcce1 commit d6eef03
Show file tree
Hide file tree
Showing 8 changed files with 936 additions and 516 deletions.
8 changes: 4 additions & 4 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 @@ -22,10 +22,10 @@ ahash = "0.8.11"
anyhow = "1.0.95"
clap = { version = "4.5.23", features = ["derive"] }
clap-verbosity-flag = "3.0.2"
config = "0.15.4"
config = "0.15.6"
env_logger = "0.11.6"
git2 = "0.20.0"
log = "0.4.22"
log = "0.4.25"
nom = "7.1.3"
semver = "1.0.24"
serde = { version = "1.0.217", features = ["derive"] }
Expand Down
3 changes: 1 addition & 2 deletions src/domain/cargo_toml/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ trycmd = "0.15.8"
// assert
assert_eq!(
output,
String::from("📦 bump ahash from 0.8.10 to 0.8.11\n🤷 change serde from 1.0.215 to 1\n")
String::from("📦 bump ahash from 0.8.10 to 0.8.11\n🤷 drop serde from 1.0.215 to 1\n")
);
}

Expand Down Expand Up @@ -488,7 +488,6 @@ wiremock = "0.6.2"
String::from(
"📦 bump ahash from 0.8.10 to 0.8.11\n✨ add serde 1\n🗑\u{fe0f} remove image 0.25.5\n\
❗ bump assert_fs (🖥\u{fe0f} dev-dependencies) from 0 to 1.1.2\n\
🤷 change float-cmp (🖥\u{fe0f} dev-dependencies) from 0.10.0 to 0.10\n\
✨ add proptest (🖥\u{fe0f} dev-dependencies) 1.6.0\n\
❗ drop trycmd (🖥\u{fe0f} dev-dependencies) from 0.15.8 to 0.14\n\
🗑\u{fe0f} remove wiremock (🖥\u{fe0f} dev-dependencies) 0.6.2\n\
Expand Down
Loading

0 comments on commit d6eef03

Please sign in to comment.