diff --git a/Cargo.lock b/Cargo.lock index 8c5a99e..8d49dfa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -109,7 +109,7 @@ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" [[package]] name = "bigtools" -version = "0.5.0-dev" +version = "0.5.0" dependencies = [ "attohttpc", "bincode", @@ -743,7 +743,7 @@ dependencies = [ [[package]] name = "pybigtools" -version = "0.2.0-dev" +version = "0.2.0" dependencies = [ "bigtools", "futures", diff --git a/bigtools/Cargo.toml b/bigtools/Cargo.toml index 9618343..871b8ac 100644 --- a/bigtools/Cargo.toml +++ b/bigtools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bigtools" -version = "0.5.0-dev" +version = "0.5.0" authors = ["Jack Huey "] edition = "2021" license = "MIT" diff --git a/pybigtools/Cargo.toml b/pybigtools/Cargo.toml index 7e156e9..47fc2b9 100644 --- a/pybigtools/Cargo.toml +++ b/pybigtools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pybigtools" -version = "0.2.0-dev" +version = "0.2.0" authors = ["Jack "] edition = "2021" @@ -9,7 +9,7 @@ name = "pybigtools" crate-type = ["cdylib"] [dependencies] -bigtools = { version = "0.5.0-dev", path = "../bigtools", default_features = false, features = ["read", "write"] } +bigtools = { version = "0.5.0", path = "../bigtools", default_features = false, features = ["read", "write"] } url = "2.4.0" tokio = { version = "1.34.0", features = ["rt", "rt-multi-thread"] } futures = { version = "0.3.1", features = ["thread-pool"] }