Skip to content

Commit

Permalink
Release 0.6.4-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iesahin committed Dec 2, 2023
1 parent dba4f9d commit 413758a
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc-core"
version = "0.6.3"
version = "0.6.4-alpha.0"
edition = "2021"
description = "Xvc core for common elements for all commands"
authors = ["Emre Şahin <[email protected]>"]
Expand Down
6 changes: 3 additions & 3 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.3"
version = "0.6.4-alpha.0"
edition = "2021"
description = "File tracking, versioning, upload and download functions for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -24,10 +24,10 @@ bench = true
[dependencies]
xvc-logging = { version = "0.6.0", path = "../logging" }
xvc-config = { version = "0.6.0", path = "../config" }
xvc-core = { version = "0.6.0", path = "../core" }
xvc-core = { version = "0.6.4-alpha.0", path = "../core" }
xvc-ecs = { version = "0.6.0", path = "../ecs" }
xvc-walker = { version = "0.6.0", path = "../walker" }
xvc-storage = { version = "0.6.0", path = "../storage" }
xvc-storage = { version = "0.6.4-alpha.0", path = "../storage" }


## Cli and config
Expand Down
10 changes: 5 additions & 5 deletions lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xvc"
version = "0.6.3"
version = "0.6.4-alpha.0"
edition = "2021"
description = "An MLOps tool to manage data files and pipelines on top of Git"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -22,13 +22,13 @@ path = "src/main.rs"

[dependencies]
xvc-config = { version = "0.6.0", path = "../config" }
xvc-core = { version = "0.6.0", path = "../core" }
xvc-core = { version = "0.6.4-alpha.0", path = "../core" }
xvc-logging = { version = "0.6.0", path = "../logging" }
xvc-ecs = { version = "0.6.0", path = "../ecs" }
xvc-file = { version = "0.6.0", path = "../file" }
xvc-pipeline = { version = "0.6.0", path = "../pipeline" }
xvc-file = { version = "0.6.4-alpha.0", path = "../file" }
xvc-pipeline = { version = "0.6.4-alpha.0", path = "../pipeline" }
xvc-walker = { version = "0.6.0", path = "../walker" }
xvc-storage = { version = "0.6.0", path = "../storage" }
xvc-storage = { version = "0.6.4-alpha.0", path = "../storage" }


## Cli and config
Expand Down
6 changes: 3 additions & 3 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.3"
version = "0.6.4-alpha.0"
edition = "2021"
description = "Xvc data pipeline management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -17,11 +17,11 @@ crate-type = ["rlib"]

[dependencies]
xvc-config = { version = "0.6.0", path = "../config" }
xvc-core = { version = "0.6.0", path = "../core" }
xvc-core = { version = "0.6.4-alpha.0", path = "../core" }
xvc-ecs = { version = "0.6.0", path = "../ecs" }
xvc-logging = { version = "0.6.0", path = "../logging" }
xvc-walker = { version = "0.6.0", path = "../walker" }
xvc-file = { version = "0.6.0", path = "../file" }
xvc-file = { version = "0.6.4-alpha.0", path = "../file" }

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 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.3"
version = "0.6.4-alpha.0"
edition = "2021"
description = "Xvc remote (and local) storage management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -19,7 +19,7 @@ crate-type = ["rlib"]
[dependencies]
xvc-logging = { version = "0.6.0", path = "../logging" }
xvc-config = { version = "0.6.0", path = "../config" }
xvc-core = { version = "0.6.0", path = "../core" }
xvc-core = { version = "0.6.4-alpha.0", path = "../core" }
xvc-ecs = { version = "0.6.0", path = "../ecs" }
xvc-walker = { version = "0.6.0", path = "../walker" }

Expand Down
12 changes: 6 additions & 6 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.3"
version = "0.6.4-alpha.0"
edition = "2021"
description = "Integration test suite for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -19,15 +19,15 @@ name = "xvc_tests"
crate-type = ["rlib"]

[dependencies]
xvc = { version = "0.6.0", path = "../lib" }
xvc = { version = "0.6.4-alpha.0", path = "../lib" }
xvc-config = { version = "0.6.0", path = "../config" }
xvc-core = { version = "0.6.0", path = "../core" }
xvc-core = { version = "0.6.4-alpha.0", path = "../core" }
xvc-logging = { version = "0.6.0", path = "../logging" }
xvc-ecs = { version = "0.6.0", path = "../ecs" }
xvc-file = { version = "0.6.0", path = "../file" }
xvc-pipeline = { version = "0.6.0", path = "../pipeline" }
xvc-file = { version = "0.6.4-alpha.0", path = "../file" }
xvc-pipeline = { version = "0.6.4-alpha.0", path = "../pipeline" }
xvc-walker = { version = "0.6.0", path = "../walker" }
xvc-storage = { version = "0.6.0", path = "../storage" }
xvc-storage = { version = "0.6.4-alpha.0", path = "../storage" }

## packages for testing
clap = { version = "^4.4", features = ["derive"] }
Expand Down

0 comments on commit 413758a

Please sign in to comment.