diff --git a/config/Cargo.toml b/config/Cargo.toml index c4337ac7..fd800c41 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-config" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "Xvc configuration management" authors = ["Emre Şahin "] @@ -20,8 +20,8 @@ debug = true [dependencies] -xvc-logging = { version = "0.6.5-beta.0", path = "../logging" } -xvc-walker = { version = "0.6.5-beta.0", path = "../walker" } +xvc-logging = { version = "0.6.5", path = "../logging" } +xvc-walker = { version = "0.6.5", path = "../walker" } ## Cli and config diff --git a/core/Cargo.toml b/core/Cargo.toml index a1f9b8f5..5fbc9324 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-core" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "Xvc core for common elements for all commands" authors = ["Emre Şahin "] @@ -19,10 +19,10 @@ crate-type = ["rlib"] debug = true [dependencies] -xvc-config = { version = "0.6.5-beta.0", path = "../config" } -xvc-logging = { version = "0.6.5-beta.0", path = "../logging" } -xvc-ecs = { version = "0.6.5-beta.0", path = "../ecs" } -xvc-walker = { version = "0.6.5-beta.0", path = "../walker" } +xvc-config = { version = "0.6.5", path = "../config" } +xvc-logging = { version = "0.6.5", path = "../logging" } +xvc-ecs = { version = "0.6.5", path = "../ecs" } +xvc-walker = { version = "0.6.5", path = "../walker" } ## Cli and config clap = { version = "^4.4", features = ["derive"] } @@ -82,6 +82,6 @@ derive_more = "^0.99" itertools = "^0.12" [dev-dependencies] -xvc-test-helper = { version = "0.6.5-beta.0", path = "../test_helper/" } +xvc-test-helper = { version = "0.6.5", path = "../test_helper/" } proptest = "^1.4" test-case = "^3.3" diff --git a/ecs/Cargo.toml b/ecs/Cargo.toml index ca5bbaba..7eb6c3f1 100644 --- a/ecs/Cargo.toml +++ b/ecs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-ecs" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "Entity-Component System for Xvc" authors = ["Emre Şahin "] @@ -19,7 +19,7 @@ crate-type = ["rlib"] debug = true [dependencies] -xvc-logging = { version = "0.6.5-beta.0", path = "../logging" } +xvc-logging = { version = "0.6.5", path = "../logging" } ## Serialization serde = { version = "^1.0", features = ["derive"] } diff --git a/file/Cargo.toml b/file/Cargo.toml index 0bada575..e1b2de39 100644 --- a/file/Cargo.toml +++ b/file/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-file" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "File tracking, versioning, upload and download functions for Xvc" authors = ["Emre Şahin "] @@ -24,12 +24,12 @@ bench = true debug = true [dependencies] -xvc-logging = { version = "0.6.5-beta.0", path = "../logging" } -xvc-config = { version = "0.6.5-beta.0", path = "../config" } -xvc-core = { version = "0.6.5-beta.0", path = "../core" } -xvc-ecs = { version = "0.6.5-beta.0", path = "../ecs" } -xvc-walker = { version = "0.6.5-beta.0", path = "../walker" } -xvc-storage = { version = "0.6.5-beta.0", path = "../storage" } +xvc-logging = { version = "0.6.5", path = "../logging" } +xvc-config = { version = "0.6.5", path = "../config" } +xvc-core = { version = "0.6.5", path = "../core" } +xvc-ecs = { version = "0.6.5", path = "../ecs" } +xvc-walker = { version = "0.6.5", path = "../walker" } +xvc-storage = { version = "0.6.5", path = "../storage" } ## Cli and config @@ -93,5 +93,5 @@ parse-size = "^1.0" [dev-dependencies] -xvc-test-helper = { version = "0.6.5-beta.0", path = "../test_helper/" } +xvc-test-helper = { version = "0.6.5", path = "../test_helper/" } shellfn = "^0.1" diff --git a/lib/Cargo.toml b/lib/Cargo.toml index a1eb63df..09139513 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "An MLOps tool to manage data files and pipelines on top of Git" authors = ["Emre Şahin "] @@ -23,14 +23,14 @@ path = "src/main.rs" debug = true [dependencies] -xvc-config = { version = "0.6.5-beta.0", path = "../config" } -xvc-core = { version = "0.6.5-beta.0", path = "../core" } -xvc-logging = { version = "0.6.5-beta.0", path = "../logging" } -xvc-ecs = { version = "0.6.5-beta.0", path = "../ecs" } -xvc-file = { version = "0.6.5-beta.0", path = "../file" } -xvc-pipeline = { version = "0.6.5-beta.0", path = "../pipeline" } -xvc-walker = { version = "0.6.5-beta.0", path = "../walker" } -xvc-storage = { version = "0.6.5-beta.0", path = "../storage" } +xvc-config = { version = "0.6.5", path = "../config" } +xvc-core = { version = "0.6.5", path = "../core" } +xvc-logging = { version = "0.6.5", path = "../logging" } +xvc-ecs = { version = "0.6.5", path = "../ecs" } +xvc-file = { version = "0.6.5", path = "../file" } +xvc-pipeline = { version = "0.6.5", path = "../pipeline" } +xvc-walker = { version = "0.6.5", path = "../walker" } +xvc-storage = { version = "0.6.5", path = "../storage" } ## Cli and config @@ -113,4 +113,4 @@ jwalk = "^0.8" proptest = "^1.4" shellfn = "^0.1" test-case = "^3.3" -xvc-test-helper = { version = "0.6.5-beta.0", path = "../test_helper/" } +xvc-test-helper = { version = "0.6.5", path = "../test_helper/" } diff --git a/logging/Cargo.toml b/logging/Cargo.toml index ff675d9e..aa38b648 100644 --- a/logging/Cargo.toml +++ b/logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-logging" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "Logging crate for Xvc" authors = ["Emre Şahin "] diff --git a/pipeline/Cargo.toml b/pipeline/Cargo.toml index c8004d83..82e95b09 100644 --- a/pipeline/Cargo.toml +++ b/pipeline/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-pipeline" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "Xvc data pipeline management" authors = ["Emre Şahin "] @@ -19,12 +19,12 @@ debug = true [dependencies] -xvc-config = { version = "0.6.5-beta.0", path = "../config" } -xvc-core = { version = "0.6.5-beta.0", path = "../core" } -xvc-ecs = { version = "0.6.5-beta.0", path = "../ecs" } -xvc-logging = { version = "0.6.5-beta.0", path = "../logging" } -xvc-walker = { version = "0.6.5-beta.0", path = "../walker" } -xvc-file = { version = "0.6.5-beta.0", path = "../file" } +xvc-config = { version = "0.6.5", path = "../config" } +xvc-core = { version = "0.6.5", path = "../core" } +xvc-ecs = { version = "0.6.5", path = "../ecs" } +xvc-logging = { version = "0.6.5", path = "../logging" } +xvc-walker = { version = "0.6.5", path = "../walker" } +xvc-file = { version = "0.6.5", path = "../file" } ## Cli and config clap = { version = "^4.4", features = ["derive"] } @@ -92,5 +92,5 @@ itertools = "^0.12" derive_more = "^0.99" [dev-dependencies] -xvc-test-helper = { version = "0.6.5-beta.0", path = "../test_helper/" } +xvc-test-helper = { version = "0.6.5", path = "../test_helper/" } test-case = "^3.3" diff --git a/storage/Cargo.toml b/storage/Cargo.toml index c1f4ea44..07c13393 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-storage" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "Xvc remote (and local) storage management" authors = ["Emre Şahin "] @@ -20,11 +20,11 @@ debug = true [dependencies] -xvc-logging = { version = "0.6.5-beta.0", path = "../logging" } -xvc-config = { version = "0.6.5-beta.0", path = "../config" } -xvc-core = { version = "0.6.5-beta.0", path = "../core" } -xvc-ecs = { version = "0.6.5-beta.0", path = "../ecs" } -xvc-walker = { version = "0.6.5-beta.0", path = "../walker" } +xvc-logging = { version = "0.6.5", path = "../logging" } +xvc-config = { version = "0.6.5", path = "../config" } +xvc-core = { version = "0.6.5", path = "../core" } +xvc-ecs = { version = "0.6.5", path = "../ecs" } +xvc-walker = { version = "0.6.5", path = "../walker" } ## Cli and config clap = { version = "^4.4", features = ["derive"] } @@ -107,7 +107,7 @@ digital-ocean = ["dep:rust-s3", "dep:futures", "dep:tokio"] [dev-dependencies] -xvc-test-helper = { version = "0.6.5-beta.0", path = "../test_helper/" } +xvc-test-helper = { version = "0.6.5", path = "../test_helper/" } shellfn = "^0.1" [package.metadata.cargo-udeps.ignore] diff --git a/test_helper/Cargo.toml b/test_helper/Cargo.toml index d1f23e86..f4bcf651 100644 --- a/test_helper/Cargo.toml +++ b/test_helper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-test-helper" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "Unit test helper functions for Xvc" authors = ["Emre Şahin "] @@ -23,7 +23,7 @@ debug = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -xvc-logging = { version = "0.6.5-beta.0", path = "../logging/" } +xvc-logging = { version = "0.6.5", path = "../logging/" } rand = "^0.8" log = "^0.4" diff --git a/walker/Cargo.toml b/walker/Cargo.toml index c0dc69ee..e0bed39a 100644 --- a/walker/Cargo.toml +++ b/walker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-walker" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "Xvc parallel file system walker with ignore features" authors = ["Emre Şahin "] @@ -19,7 +19,7 @@ crate-type = ["rlib"] debug = true [dependencies] -xvc-logging = { version = "0.6.5-beta.0", path = "../logging" } +xvc-logging = { version = "0.6.5", path = "../logging" } globset = "^0.4" ## Parallelization @@ -41,7 +41,7 @@ itertools = "^0.12" regex = "^1.10" [dev-dependencies] -xvc-test-helper = { path = "../test_helper/", version = "0.6.5-beta.0" } +xvc-test-helper = { path = "../test_helper/", version = "0.6.5" } test-case = "^3.3" [package.metadata.cargo-udeps.ignore] diff --git a/workflow_tests/Cargo.toml b/workflow_tests/Cargo.toml index 79e1ba7e..fff1a919 100644 --- a/workflow_tests/Cargo.toml +++ b/workflow_tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xvc-workflow-tests" -version = "0.6.5-beta.0" +version = "0.6.5" edition = "2021" description = "Integration test suite for Xvc" authors = ["Emre Şahin "] @@ -23,15 +23,15 @@ debug = true [dependencies] -xvc = { version = "0.6.5-beta.0", path = "../lib" } -xvc-config = { version = "0.6.5-beta.0", path = "../config" } -xvc-core = { version = "0.6.5-beta.0", path = "../core" } -xvc-logging = { version = "0.6.5-beta.0", path = "../logging" } -xvc-ecs = { version = "0.6.5-beta.0", path = "../ecs" } -xvc-file = { version = "0.6.5-beta.0", path = "../file" } -xvc-pipeline = { version = "0.6.5-beta.0", path = "../pipeline" } -xvc-walker = { version = "0.6.5-beta.0", path = "../walker" } -xvc-storage = { version = "0.6.5-beta.0", path = "../storage" } +xvc = { version = "0.6.5", path = "../lib" } +xvc-config = { version = "0.6.5", path = "../config" } +xvc-core = { version = "0.6.5", path = "../core" } +xvc-logging = { version = "0.6.5", path = "../logging" } +xvc-ecs = { version = "0.6.5", path = "../ecs" } +xvc-file = { version = "0.6.5", path = "../file" } +xvc-pipeline = { version = "0.6.5", path = "../pipeline" } +xvc-walker = { version = "0.6.5", path = "../walker" } +xvc-storage = { version = "0.6.5", path = "../storage" } ## packages for testing clap = { version = "^4.4", features = ["derive"] } @@ -70,7 +70,7 @@ proptest = "^1.4" test-case = "^3.3" globset = "^0.4" escargot = "^0.5" -xvc-test-helper = { version = "0.6.5-beta.0", path = "../test_helper" } +xvc-test-helper = { version = "0.6.5", path = "../test_helper" } shellfn = "^0.1" jwalk = "^0.8" anyhow = "^1.0"