Skip to content

Commit

Permalink
Remove superfluous "^" from version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
Kijewski committed Sep 15, 2024
1 parent e0a5f72 commit 7b6b93b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/current-time/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ license = "MIT OR Apache-2.0"
publish = false

[dependencies]
tzdb = { path = "../../tzdb" }
tzdb = { path = "../../tzdb", version = "0.7.0-pre.0" }
6 changes: 3 additions & 3 deletions tzdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ readme = "README.md"
rust-version = "1.81.0"

[dependencies]
tzdb_data = { version = "^0.2.0-pre.0", default-features = false, path = "../tzdb_data" }
tzdb_data = { version = "0.2.0-pre.0", default-features = false, path = "../tzdb_data" }

iana-time-zone = { version = "^0.1.60", default-features = false, features = ["fallback"], optional = true }
tz-rs = { version = "^0.7.0", default-features = false, features = ["std"] }
iana-time-zone = { version = "0.1.60", default-features = false, features = ["fallback"], optional = true }
tz-rs = { version = "0.7.0", default-features = false, features = ["std"] }

[features]
default = ["local", "now", "std"]
Expand Down
2 changes: 1 addition & 1 deletion tzdb_data/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"
rust-version = "1.81.0"

[dependencies]
tz-rs = { version = "^0.7.0", default-features = false }
tz-rs = { version = "0.7.0", default-features = false }

[package.metadata.docs.rs]
all-features = true
Expand Down

0 comments on commit 7b6b93b

Please sign in to comment.