-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge ; commit '0189b38859649424af28b321740041086d026541'
- Loading branch information
Showing
34 changed files
with
246 additions
and
762 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "xvc-config" | ||
version = "0.6.8-alpha.1" | ||
version = "0.6.8-alpha.2" | ||
edition = "2021" | ||
description = "Xvc configuration management" | ||
authors = ["Emre Şahin <[email protected]>"] | ||
|
@@ -20,8 +20,8 @@ debug = true | |
|
||
|
||
[dependencies] | ||
xvc-logging = { version = "0.6.8-alpha.1", path = "../logging" } | ||
xvc-walker = { version = "0.6.8-alpha.1", path = "../walker" } | ||
xvc-logging = { version = "0.6.8-alpha.2", path = "../logging" } | ||
xvc-walker = { version = "0.6.8-alpha.2", path = "../walker" } | ||
|
||
|
||
## Cli and config | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "xvc-core" | ||
version = "0.6.8-alpha.1" | ||
version = "0.6.8-alpha.2" | ||
edition = "2021" | ||
description = "Xvc core for common elements for all commands" | ||
authors = ["Emre Şahin <[email protected]>"] | ||
|
@@ -19,10 +19,10 @@ crate-type = ["rlib"] | |
debug = true | ||
|
||
[dependencies] | ||
xvc-config = { version = "0.6.8-alpha.1", path = "../config" } | ||
xvc-logging = { version = "0.6.8-alpha.1", path = "../logging" } | ||
xvc-ecs = { version = "0.6.8-alpha.1", path = "../ecs" } | ||
xvc-walker = { version = "0.6.8-alpha.1", path = "../walker" } | ||
xvc-config = { version = "0.6.8-alpha.2", path = "../config" } | ||
xvc-logging = { version = "0.6.8-alpha.2", path = "../logging" } | ||
xvc-ecs = { version = "0.6.8-alpha.2", path = "../ecs" } | ||
xvc-walker = { version = "0.6.8-alpha.2", 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.8-alpha.1", path = "../test_helper/" } | ||
xvc-test-helper = { version = "0.6.8-alpha.2", path = "../test_helper/" } | ||
proptest = "^1.4" | ||
test-case = "^3.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "xvc-ecs" | ||
version = "0.6.8-alpha.1" | ||
version = "0.6.8-alpha.2" | ||
edition = "2021" | ||
description = "Entity-Component System for Xvc" | ||
authors = ["Emre Şahin <[email protected]>"] | ||
|
@@ -19,7 +19,7 @@ crate-type = ["rlib"] | |
debug = true | ||
|
||
[dependencies] | ||
xvc-logging = { version = "0.6.8-alpha.1", path = "../logging" } | ||
xvc-logging = { version = "0.6.8-alpha.2", path = "../logging" } | ||
|
||
## Serialization | ||
serde = { version = "^1.0", features = ["derive"] } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "xvc-file" | ||
version = "0.6.8-alpha.1" | ||
version = "0.6.8-alpha.2" | ||
edition = "2021" | ||
description = "File tracking, versioning, upload and download functions for Xvc" | ||
authors = ["Emre Şahin <[email protected]>"] | ||
|
@@ -24,12 +24,12 @@ bench = true | |
debug = true | ||
|
||
[dependencies] | ||
xvc-logging = { version = "0.6.8-alpha.1", path = "../logging" } | ||
xvc-config = { version = "0.6.8-alpha.1", path = "../config" } | ||
xvc-core = { version = "0.6.8-alpha.1", path = "../core" } | ||
xvc-ecs = { version = "0.6.8-alpha.1", path = "../ecs" } | ||
xvc-walker = { version = "0.6.8-alpha.1", path = "../walker" } | ||
xvc-storage = { version = "0.6.8-alpha.1", path = "../storage" } | ||
xvc-logging = { version = "0.6.8-alpha.2", path = "../logging" } | ||
xvc-config = { version = "0.6.8-alpha.2", path = "../config" } | ||
xvc-core = { version = "0.6.8-alpha.2", path = "../core" } | ||
xvc-ecs = { version = "0.6.8-alpha.2", path = "../ecs" } | ||
xvc-walker = { version = "0.6.8-alpha.2", path = "../walker" } | ||
xvc-storage = { version = "0.6.8-alpha.2", path = "../storage" } | ||
|
||
|
||
## Cli and config | ||
|
@@ -94,5 +94,5 @@ parse-size = "^1.0" | |
|
||
|
||
[dev-dependencies] | ||
xvc-test-helper = { version = "0.6.8-alpha.1", path = "../test_helper/" } | ||
xvc-test-helper = { version = "0.6.8-alpha.2", path = "../test_helper/" } | ||
shellfn = "^0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "xvc" | ||
version = "0.6.8-alpha.1" | ||
version = "0.6.8-alpha.2" | ||
edition = "2021" | ||
description = "An MLOps tool to manage data files and pipelines on top of Git" | ||
authors = ["Emre Şahin <[email protected]>"] | ||
|
@@ -23,14 +23,14 @@ path = "src/main.rs" | |
debug = true | ||
|
||
[dependencies] | ||
xvc-config = { version = "0.6.8-alpha.1", path = "../config" } | ||
xvc-core = { version = "0.6.8-alpha.1", path = "../core" } | ||
xvc-logging = { version = "0.6.8-alpha.1", path = "../logging" } | ||
xvc-ecs = { version = "0.6.8-alpha.1", path = "../ecs" } | ||
xvc-file = { version = "0.6.8-alpha.1", path = "../file" } | ||
xvc-pipeline = { version = "0.6.8-alpha.1", path = "../pipeline" } | ||
xvc-walker = { version = "0.6.8-alpha.1", path = "../walker" } | ||
xvc-storage = { version = "0.6.8-alpha.1", path = "../storage" } | ||
xvc-config = { version = "0.6.8-alpha.2", path = "../config" } | ||
xvc-core = { version = "0.6.8-alpha.2", path = "../core" } | ||
xvc-logging = { version = "0.6.8-alpha.2", path = "../logging" } | ||
xvc-ecs = { version = "0.6.8-alpha.2", path = "../ecs" } | ||
xvc-file = { version = "0.6.8-alpha.2", path = "../file" } | ||
xvc-pipeline = { version = "0.6.8-alpha.2", path = "../pipeline" } | ||
xvc-walker = { version = "0.6.8-alpha.2", path = "../walker" } | ||
xvc-storage = { version = "0.6.8-alpha.2", 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.8-alpha.1", path = "../test_helper/" } | ||
xvc-test-helper = { version = "0.6.8-alpha.2", path = "../test_helper/" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "xvc-logging" | ||
version = "0.6.8-alpha.1" | ||
version = "0.6.8-alpha.2" | ||
edition = "2021" | ||
description = "Logging crate for Xvc" | ||
authors = ["Emre Şahin <[email protected]>"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "xvc-pipeline" | ||
version = "0.6.8-alpha.1" | ||
version = "0.6.8-alpha.2" | ||
edition = "2021" | ||
description = "Xvc data pipeline management" | ||
authors = ["Emre Şahin <[email protected]>"] | ||
|
@@ -19,12 +19,12 @@ debug = true | |
|
||
|
||
[dependencies] | ||
xvc-config = { version = "0.6.8-alpha.1", path = "../config" } | ||
xvc-core = { version = "0.6.8-alpha.1", path = "../core" } | ||
xvc-ecs = { version = "0.6.8-alpha.1", path = "../ecs" } | ||
xvc-logging = { version = "0.6.8-alpha.1", path = "../logging" } | ||
xvc-walker = { version = "0.6.8-alpha.1", path = "../walker" } | ||
xvc-file = { version = "0.6.8-alpha.1", path = "../file" } | ||
xvc-config = { version = "0.6.8-alpha.2", path = "../config" } | ||
xvc-core = { version = "0.6.8-alpha.2", path = "../core" } | ||
xvc-ecs = { version = "0.6.8-alpha.2", path = "../ecs" } | ||
xvc-logging = { version = "0.6.8-alpha.2", path = "../logging" } | ||
xvc-walker = { version = "0.6.8-alpha.2", path = "../walker" } | ||
xvc-file = { version = "0.6.8-alpha.2", 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.8-alpha.1", path = "../test_helper/" } | ||
xvc-test-helper = { version = "0.6.8-alpha.2", path = "../test_helper/" } | ||
test-case = "^3.3" |
Oops, something went wrong.