Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
iesahin committed Aug 4, 2024
1 parent c63f525 commit f383881
Show file tree
Hide file tree
Showing 11 changed files with 53 additions and 56 deletions.
9 changes: 3 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# Introduction

This document is a change log that I write for the project as I develop. It's a
tree, and subtasks are marked with indentation.

## Unreleased

- Removed caching for globs that caused bugs in Python bindings.
## 0.6.10 (2024-08-04)

- Removed caching for globs that caused bugs in Python bindings and long running processes.
- Documentation updates
- Fix optional features. Now inter-workspace dependencies are defined by `default-features = false` on Cargo.toml
- Added `bundled-openssl` feature to use `vendored` feature of `openssl` crate optionally. This is turned on for Windows builds on GA.
Expand Down
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.10-alpha.2"
version = "0.6.10"
edition = "2021"
description = "Xvc configuration management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -16,8 +16,8 @@ name = "xvc_config"
crate-type = ["rlib"]

[dependencies]
xvc-logging = { version = "0.6.10-alpha.2", path = "../logging" }
xvc-walker = { version = "0.6.10-alpha.2", path = "../walker" }
xvc-logging = { version = "0.6.10", path = "../logging" }
xvc-walker = { version = "0.6.10", 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.10-alpha.2"
version = "0.6.10"
edition = "2021"
description = "Xvc core for common elements for all commands"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -16,10 +16,10 @@ name = "xvc_core"
crate-type = ["rlib"]

[dependencies]
xvc-config = { version = "0.6.10-alpha.2", path = "../config" }
xvc-logging = { version = "0.6.10-alpha.2", path = "../logging" }
xvc-ecs = { version = "0.6.10-alpha.2", path = "../ecs" }
xvc-walker = { version = "0.6.10-alpha.2", path = "../walker" }
xvc-config = { version = "0.6.10", path = "../config" }
xvc-logging = { version = "0.6.10", path = "../logging" }
xvc-ecs = { version = "0.6.10", path = "../ecs" }
xvc-walker = { version = "0.6.10", path = "../walker" }

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down Expand Up @@ -80,6 +80,6 @@ itertools = "^0.13"


[dev-dependencies]
xvc-test-helper = { version = "0.6.10-alpha.2", path = "../test_helper/" }
xvc-test-helper = { version = "0.6.10", 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.10-alpha.2"
version = "0.6.10"
edition = "2021"
description = "Entity-Component System for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -16,7 +16,7 @@ name = "xvc_ecs"
crate-type = ["rlib"]

[dependencies]
xvc-logging = { version = "0.6.10-alpha.2", path = "../logging" }
xvc-logging = { version = "0.6.10", 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.10-alpha.2"
version = "0.6.10"
edition = "2021"
description = "File tracking, versioning, upload and download functions for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -21,12 +21,12 @@ test = true
bench = true

[dependencies]
xvc-logging = { version = "0.6.10-alpha.2", path = "../logging" }
xvc-config = { version = "0.6.10-alpha.2", path = "../config" }
xvc-core = { version = "0.6.10-alpha.2", path = "../core" }
xvc-ecs = { version = "0.6.10-alpha.2", path = "../ecs" }
xvc-walker = { version = "0.6.10-alpha.2", path = "../walker" }
xvc-storage = { version = "0.6.10-alpha.2", path = "../storage", default-features = false }
xvc-logging = { version = "0.6.10", path = "../logging" }
xvc-config = { version = "0.6.10", path = "../config" }
xvc-core = { version = "0.6.10", path = "../core" }
xvc-ecs = { version = "0.6.10", path = "../ecs" }
xvc-walker = { version = "0.6.10", path = "../walker" }
xvc-storage = { version = "0.6.10", path = "../storage", default-features = false }


## Cli and config
Expand Down Expand Up @@ -94,5 +94,5 @@ default = ["reflink"]
reflink = ["dep:reflink"]

[dev-dependencies]
xvc-test-helper = { version = "0.6.10-alpha.2", path = "../test_helper/" }
xvc-test-helper = { version = "0.6.10", 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.10-alpha.2"
version = "0.6.10"
edition = "2021"
description = "An MLOps tool to manage data files and pipelines on top of Git"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -20,16 +20,16 @@ name = "xvc"
path = "src/main.rs"

[dependencies]
xvc-config = { version = "0.6.10-alpha.2", path = "../config" }
xvc-core = { version = "0.6.10-alpha.2", path = "../core" }
xvc-logging = { version = "0.6.10-alpha.2", path = "../logging" }
xvc-ecs = { version = "0.6.10-alpha.2", path = "../ecs" }
xvc-file = { version = "0.6.10-alpha.2", path = "../file", default-features = false }
xvc-pipeline = { version = "0.6.10-alpha.2", path = "../pipeline" }
xvc-walker = { version = "0.6.10-alpha.2", path = "../walker" }
xvc-config = { version = "0.6.10", path = "../config" }
xvc-core = { version = "0.6.10", path = "../core" }
xvc-logging = { version = "0.6.10", path = "../logging" }
xvc-ecs = { version = "0.6.10", path = "../ecs" }
xvc-file = { version = "0.6.10", path = "../file", default-features = false }
xvc-pipeline = { version = "0.6.10", path = "../pipeline" }
xvc-walker = { version = "0.6.10", path = "../walker" }
## Cli and config
clap = { version = "^4.4", features = ["derive", "cargo"] }
xvc-storage = { version = "0.6.10-alpha.2", path = "../storage", default-features = false }
xvc-storage = { version = "0.6.10", path = "../storage", default-features = false }
directories-next = "2.0"

## Hashing
Expand Down Expand Up @@ -133,4 +133,4 @@ shellfn = "^0.1"
test-case = "^3.3"
trycmd = "^0.15"
which = "^6.0"
xvc-test-helper = { version = "0.6.10-alpha.2", path = "../test_helper/" }
xvc-test-helper = { version = "0.6.10", 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.10-alpha.2"
version = "0.6.10"
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.10-alpha.2"
version = "0.6.10"
edition = "2021"
description = "Xvc data pipeline management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -19,12 +19,12 @@ default = []
bundled-sqlite = ["rusqlite/bundled"]

[dependencies]
xvc-config = { version = "0.6.10-alpha.2", path = "../config" }
xvc-core = { version = "0.6.10-alpha.2", path = "../core" }
xvc-ecs = { version = "0.6.10-alpha.2", path = "../ecs" }
xvc-logging = { version = "0.6.10-alpha.2", path = "../logging" }
xvc-walker = { version = "0.6.10-alpha.2", path = "../walker" }
xvc-file = { version = "0.6.10-alpha.2", path = "../file", default-features = false }
xvc-config = { version = "0.6.10", path = "../config" }
xvc-core = { version = "0.6.10", path = "../core" }
xvc-ecs = { version = "0.6.10", path = "../ecs" }
xvc-logging = { version = "0.6.10", path = "../logging" }
xvc-walker = { version = "0.6.10", path = "../walker" }
xvc-file = { version = "0.6.10", path = "../file", default-features = false }

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down Expand Up @@ -98,5 +98,5 @@ itertools = "^0.13"
derive_more = "^0.99"

[dev-dependencies]
xvc-test-helper = { version = "0.6.10-alpha.2", path = "../test_helper/" }
xvc-test-helper = { version = "0.6.10", 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.10-alpha.2"
version = "0.6.10"
edition = "2021"
description = "Xvc remote and local storage management"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -16,11 +16,11 @@ name = "xvc_storage"
crate-type = ["rlib"]

[dependencies]
xvc-logging = { version = "0.6.10-alpha.2", path = "../logging" }
xvc-config = { version = "0.6.10-alpha.2", path = "../config" }
xvc-core = { version = "0.6.10-alpha.2", path = "../core" }
xvc-ecs = { version = "0.6.10-alpha.2", path = "../ecs" }
xvc-walker = { version = "0.6.10-alpha.2", path = "../walker" }
xvc-logging = { version = "0.6.10", path = "../logging" }
xvc-config = { version = "0.6.10", path = "../config" }
xvc-core = { version = "0.6.10", path = "../core" }
xvc-ecs = { version = "0.6.10", path = "../ecs" }
xvc-walker = { version = "0.6.10", path = "../walker" }

## Cli and config
clap = { version = "^4.4", features = ["derive"] }
Expand Down Expand Up @@ -104,7 +104,7 @@ bundled-openssl = ["openssl/vendored"]


[dev-dependencies]
xvc-test-helper = { version = "0.6.10-alpha.2", path = "../test_helper/" }
xvc-test-helper = { version = "0.6.10", 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.10-alpha.2"
version = "0.6.10"
edition = "2021"
description = "Unit test helper functions for Xvc"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -20,7 +20,7 @@ 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.10-alpha.2", path = "../logging/" }
xvc-logging = { version = "0.6.10", 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.10-alpha.2"
version = "0.6.10"
edition = "2021"
description = "Xvc parallel file system walker with ignore features"
authors = ["Emre Şahin <[email protected]>"]
Expand All @@ -16,7 +16,7 @@ name = "xvc_walker"
crate-type = ["rlib"]

[dependencies]
xvc-logging = { version = "0.6.10-alpha.2", path = "../logging" }
xvc-logging = { version = "0.6.10", path = "../logging" }
globset = "^0.4"

## Parallelization
Expand All @@ -38,7 +38,7 @@ itertools = "^0.13"
regex = "^1.10"

[dev-dependencies]
xvc-test-helper = { path = "../test_helper/", version = "0.6.10-alpha.2" }
xvc-test-helper = { path = "../test_helper/", version = "0.6.10" }
test-case = "^3.3"

[package.metadata.cargo-udeps.ignore]
Expand Down

0 comments on commit f383881

Please sign in to comment.