Skip to content

Commit

Permalink
Release 0.6.4-alpha.3
Browse files Browse the repository at this point in the history
  • Loading branch information
iesahin committed Dec 4, 2023
1 parent 686b234 commit dda9790
Show file tree
Hide file tree
Showing 10 changed files with 59 additions and 61 deletions.
9 changes: 4 additions & 5 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.4-alpha.1"
version = "0.6.4-alpha.3"
edition = "2021"
description = "Xvc configuration management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -17,16 +17,15 @@ crate-type = ["rlib"]


[dependencies]
xvc-logging = {version = "0.6.0", path = "../logging" }
xvc-walker = {version = "0.6.4-alpha.1", path = "../walker" }

xvc-logging = { version = "^0.6", path = "../logging" }
xvc-walker = { version = "0.6.4-alpha.3", path = "../walker" }


## Cli and config
directories-next = "2.0"

## Serialization
serde = { version = "^1.0", features=["derive"] }
serde = { version = "^1.0", features = ["derive"] }
serde_yaml = "^0.9"
toml = "^0.8"

Expand Down
10 changes: 5 additions & 5 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.4-alpha.1"
version = "0.6.4-alpha.3"
edition = "2021"
description = "Xvc core for common elements for all commands"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -17,10 +17,10 @@ crate-type = ["rlib"]


[dependencies]
xvc-config = { version = "0.6.4-alpha.1", path = "../config" }
xvc-logging = { version = "0.6.0", path = "../logging" }
xvc-ecs = { version = "0.6.0", path = "../ecs" }
xvc-walker = { version = "0.6.4-alpha.1", path = "../walker" }
xvc-config = { version = "0.6.4-alpha.3", path = "../config" }
xvc-logging = { version = "^0.6", path = "../logging" }
xvc-ecs = { version = "0.6.4-alpha.3", path = "../ecs" }
xvc-walker = { version = "0.6.4-alpha.3", path = "../walker" }

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down
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.3"
version = "0.6.4-alpha.3"
edition = "2021"
description = "Entity-Component System for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -17,7 +17,7 @@ crate-type = ["rlib"]


[dependencies]
xvc-logging = { version = "0.6.0", path = "../logging" }
xvc-logging = { version = "^0.6", path = "../logging" }

## Serialization
serde = { version = "^1.0", features = ["derive"] }
Expand Down
14 changes: 7 additions & 7 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.4-alpha.1"
version = "0.6.4-alpha.3"
edition = "2021"
description = "File tracking, versioning, upload and download functions for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -22,12 +22,12 @@ bench = true


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


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


[dependencies]
xvc-config = { version = "0.6.4-alpha.1", path = "../config" }
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.4-alpha.0", path = "../file" }
xvc-pipeline = { version = "0.6.4-alpha.0", path = "../pipeline" }
xvc-walker = { version = "0.6.4-alpha.1", path = "../walker" }
xvc-storage = { version = "0.6.4-alpha.0", path = "../storage" }
xvc-config = { version = "0.6.4-alpha.3", path = "../config" }
xvc-core = { version = "0.6.4-alpha.3", path = "../core" }
xvc-logging = { version = "^0.6", path = "../logging" }
xvc-ecs = { version = "0.6.4-alpha.3", path = "../ecs" }
xvc-file = { version = "0.6.4-alpha.3", path = "../file" }
xvc-pipeline = { version = "0.6.4-alpha.3", path = "../pipeline" }
xvc-walker = { version = "0.6.4-alpha.3", path = "../walker" }
xvc-storage = { version = "0.6.4-alpha.3", path = "../storage" }


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


[dependencies]
xvc-config = { version = "0.6.4-alpha.1", path = "../config" }
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.4-alpha.1", path = "../walker" }
xvc-file = { version = "0.6.4-alpha.0", path = "../file" }
xvc-config = { version = "0.6.4-alpha.3", path = "../config" }
xvc-core = { version = "0.6.4-alpha.3", path = "../core" }
xvc-ecs = { version = "0.6.4-alpha.3", path = "../ecs" }
xvc-logging = { version = "^0.6", path = "../logging" }
xvc-walker = { version = "0.6.4-alpha.3", path = "../walker" }
xvc-file = { version = "0.6.4-alpha.3", path = "../file" }

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down
15 changes: 7 additions & 8 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.4-alpha.2"
version = "0.6.4-alpha.3"
edition = "2021"
description = "Xvc remote (and local) storage management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -17,11 +17,11 @@ crate-type = ["rlib"]


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

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down Expand Up @@ -76,7 +76,7 @@ lazy_static = "^1.4"
uuid = { version = "^1.5", features = ["serde", "v4", "fast-rng"] }
hex = { version = "^0.4", features = ["serde"] }
url = { version = "^2.4", features = ["serde"] }
itertools = "^0.11"
itertools = "^0.12"
derive_more = "^0.99"
tempfile = "^3.8"

Expand All @@ -93,7 +93,6 @@ futures = { version = "^0.3", optional = true }
openssl = { version = "^0.10", features = ["vendored"] }



[features]
default = ["s3", "minio", "gcs", "wasabi", "r2", "digital-ocean"]
s3 = ["dep:rust-s3", "dep:futures", "dep:tokio"]
Expand Down
7 changes: 3 additions & 4 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.4-alpha.1"
version = "0.6.4-alpha.3"
edition = "2021"
description = "Unit test helper functions for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -20,10 +20,9 @@ path = "src/main.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
xvc-logging = {version = "0.6.0", path = "../logging/" }
xvc-logging = { version = "^0.6", path = "../logging/" }

rand = "^0.8"
log = "^0.4"
anyhow = "^1.0"
clap = {version = "^4.4", features=["derive"]}

clap = { version = "^4.4", features = ["derive"] }
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.4-alpha.1"
version = "0.6.4-alpha.3"
edition = "2021"
description = "Xvc parallel file system walker with ignore features"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -17,7 +17,7 @@ crate-type = ["rlib"]


[dependencies]
xvc-logging = {version = "0.6.0", path = "../logging"}
xvc-logging = { version = "0.6", path = "../logging" }
globset = "^0.4"

## Parallelization
Expand All @@ -34,7 +34,7 @@ anyhow = "^1.0"
log = "^0.4"

## Misc
itertools = "^0.11"
itertools = "^0.12"
regex = "^1.10"

[dev-dependencies]
Expand Down
23 changes: 12 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.4-alpha.1"
version = "0.6.4-alpha.3"
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.4-alpha.0", path = "../lib" }
xvc-config = { version = "0.6.4-alpha.1", path = "../config" }
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.4-alpha.0", path = "../file" }
xvc-pipeline = { version = "0.6.4-alpha.0", path = "../pipeline" }
xvc-walker = { version = "0.6.4-alpha.1", path = "../walker" }
xvc-storage = { version = "0.6.4-alpha.0", path = "../storage" }
xvc = { version = "0.6.4-alpha.3", path = "../lib" }
xvc-config = { version = "0.6.4-alpha.3", path = "../config" }
xvc-core = { version = "0.6.4-alpha.3", path = "../core" }
xvc-logging = { version = "^0.6", path = "../logging" }
xvc-ecs = { version = "0.6.4-alpha.3", path = "../ecs" }
xvc-file = { version = "0.6.4-alpha.3", path = "../file" }
xvc-pipeline = { version = "0.6.4-alpha.3", path = "../pipeline" }
xvc-walker = { version = "0.6.4-alpha.3", path = "../walker" }
xvc-storage = { version = "0.6.4-alpha.3", path = "../storage" }

## packages for testing
clap = { version = "^4.4", features = ["derive"] }
Expand Down Expand Up @@ -62,11 +62,12 @@ test-generic-rsync = []


[dev-dependencies]
xvc-test-helper = { version = "0.6.0", path = "../test_helper" }

proptest = "^1.3"
test-case = "^3.2"
globset = "^0.4"
escargot = "^0.5"
xvc-test-helper = { version = "0.6.0", path = "../test_helper" }
shellfn = "^0.1"
jwalk = "^0.8"
anyhow = "^1.0"
Expand Down

0 comments on commit dda9790

Please sign in to comment.