Skip to content

Commit

Permalink
v0.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
iesahin committed Jan 9, 2024
1 parent 6bf5209 commit 494079d
Show file tree
Hide file tree
Showing 11 changed files with 61 additions and 61 deletions.
6 changes: 3 additions & 3 deletions config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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
Expand Down
12 changes: 6 additions & 6 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"] }
Expand Down Expand Up @@ -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"
4 changes: 2 additions & 2 deletions ecs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"] }
Expand Down
16 changes: 8 additions & 8 deletions file/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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
Expand Down Expand Up @@ -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"
20 changes: 10 additions & 10 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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
Expand Down Expand Up @@ -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/" }
2 changes: 1 addition & 1 deletion logging/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand Down
16 changes: 8 additions & 8 deletions pipeline/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"] }
Expand Down Expand Up @@ -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"
14 changes: 7 additions & 7 deletions storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"] }
Expand Down Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions test_helper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions walker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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
Expand All @@ -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]
Expand Down
22 changes: 11 additions & 11 deletions workflow_tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"] }
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 494079d

Please sign in to comment.