Skip to content

Commit

Permalink
chore: release v0.10.1 (#891)
Browse files Browse the repository at this point in the history
## 🤖 New release
* `vortex-alp`: 0.10.0 -> 0.10.1
* `vortex-array`: 0.10.0 -> 0.10.1
* `vortex-buffer`: 0.10.0 -> 0.10.1
* `vortex-datetime-dtype`: 0.10.0 -> 0.10.1
* `vortex-dtype`: 0.10.0 -> 0.10.1
* `vortex-error`: 0.10.0 -> 0.10.1
* `vortex-flatbuffers`: 0.10.0 -> 0.10.1
* `vortex-proto`: 0.10.0 -> 0.10.1
* `vortex-scalar`: 0.10.0 -> 0.10.1
* `vortex-datafusion`: 0.10.0 -> 0.10.1
* `vortex-expr`: 0.10.0 -> 0.10.1
* `vortex-schema`: 0.10.0 -> 0.10.1
* `vortex-serde`: 0.10.0 -> 0.10.1 (✓ API compatible changes)
* `vortex-fastlanes`: 0.10.0 -> 0.10.1
* `vortex-sampling-compressor`: 0.10.0 -> 0.10.1
* `vortex-datetime-parts`: 0.10.0 -> 0.10.1
* `vortex-dict`: 0.10.0 -> 0.10.1
* `vortex-fsst`: 0.10.0 -> 0.10.1
* `vortex-roaring`: 0.10.0 -> 0.10.1
* `vortex-runend`: 0.10.0 -> 0.10.1
* `vortex-zigzag`: 0.10.0 -> 0.10.1
* `vortex-bytebool`: 0.10.0 -> 0.10.1
* `vortex-runend-bool`: 0.10.0 -> 0.10.1

<details><summary><i><b>Changelog</b></i></summary><p>


</p></details>

---
This PR was generated with
[release-plz](https://github.com/MarcoIeni/release-plz/).

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Sep 20, 2024
1 parent 196a776 commit a7841c9
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 50 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## `vortex-serde` - [0.10.1](https://github.com/spiraldb/vortex/compare/vortex-serde-v0.10.0...vortex-serde-v0.10.1) - 2024-09-20

### Added
- track compressed size & compare to parquet(zstd)? & canonical ([#882](https://github.com/spiraldb/vortex/pull/882))

## `vortex-runend-bool` - [0.10.0](https://github.com/spiraldb/vortex/compare/vortex-runend-bool-v0.9.0...vortex-runend-bool-v0.10.0) - 2024-09-20

### Fixed
Expand Down
52 changes: 26 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 24 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.10.0"
version = "0.10.1"
homepage = "https://github.com/spiraldb/vortex"
repository = "https://github.com/spiraldb/vortex"
authors = ["Vortex Authors <[email protected]>"]
Expand Down Expand Up @@ -129,29 +129,29 @@ url = "2"
uuid = "1.8.0"

# BEGIN crates published by this project
vortex-alp = { version = "0.10.0", path = "./encodings/alp" }
vortex-array = { version = "0.10.0", path = "./vortex-array" }
vortex-buffer = { version = "0.10.0", path = "./vortex-buffer" }
vortex-bytebool = { version = "0.10.0", path = "./encodings/bytebool" }
vortex-datafusion = { version = "0.10.0", path = "./vortex-datafusion" }
vortex-datetime-dtype = { version = "0.10.0", path = "./vortex-datetime-dtype" }
vortex-datetime-parts = { version = "0.10.0", path = "./encodings/datetime-parts" }
vortex-dict = { version = "0.10.0", path = "./encodings/dict" }
vortex-dtype = { version = "0.10.0", path = "./vortex-dtype", default-features = false }
vortex-error = { version = "0.10.0", path = "./vortex-error" }
vortex-expr = { version = "0.10.0", path = "./vortex-expr" }
vortex-fastlanes = { version = "0.10.0", path = "./encodings/fastlanes" }
vortex-flatbuffers = { version = "0.10.0", path = "./vortex-flatbuffers" }
vortex-fsst = { version = "0.10.0", path = "./encodings/fsst" }
vortex-proto = { version = "0.10.0", path = "./vortex-proto" }
vortex-roaring = { version = "0.10.0", path = "./encodings/roaring" }
vortex-runend = { version = "0.10.0", path = "./encodings/runend" }
vortex-runend-bool = { version = "0.10.0", path = "./encodings/runend-bool" }
vortex-scalar = { version = "0.10.0", path = "./vortex-scalar", default-features = false }
vortex-schema = { version = "0.10.0", path = "./vortex-schema" }
vortex-serde = { version = "0.10.0", path = "./vortex-serde", default-features = false }
vortex-sampling-compressor = { version = "0.10.0", path = "./vortex-sampling-compressor" }
vortex-zigzag = { version = "0.10.0", path = "./encodings/zigzag" }
vortex-alp = { version = "0.10.1", path = "./encodings/alp" }
vortex-array = { version = "0.10.1", path = "./vortex-array" }
vortex-buffer = { version = "0.10.1", path = "./vortex-buffer" }
vortex-bytebool = { version = "0.10.1", path = "./encodings/bytebool" }
vortex-datafusion = { version = "0.10.1", path = "./vortex-datafusion" }
vortex-datetime-dtype = { version = "0.10.1", path = "./vortex-datetime-dtype" }
vortex-datetime-parts = { version = "0.10.1", path = "./encodings/datetime-parts" }
vortex-dict = { version = "0.10.1", path = "./encodings/dict" }
vortex-dtype = { version = "0.10.1", path = "./vortex-dtype", default-features = false }
vortex-error = { version = "0.10.1", path = "./vortex-error" }
vortex-expr = { version = "0.10.1", path = "./vortex-expr" }
vortex-fastlanes = { version = "0.10.1", path = "./encodings/fastlanes" }
vortex-flatbuffers = { version = "0.10.1", path = "./vortex-flatbuffers" }
vortex-fsst = { version = "0.10.1", path = "./encodings/fsst" }
vortex-proto = { version = "0.10.1", path = "./vortex-proto" }
vortex-roaring = { version = "0.10.1", path = "./encodings/roaring" }
vortex-runend = { version = "0.10.1", path = "./encodings/runend" }
vortex-runend-bool = { version = "0.10.1", path = "./encodings/runend-bool" }
vortex-scalar = { version = "0.10.1", path = "./vortex-scalar", default-features = false }
vortex-schema = { version = "0.10.1", path = "./vortex-schema" }
vortex-serde = { version = "0.10.1", path = "./vortex-serde", default-features = false }
vortex-sampling-compressor = { version = "0.10.1", path = "./vortex-sampling-compressor" }
vortex-zigzag = { version = "0.10.1", path = "./encodings/zigzag" }
# END crates published by this project

walkdir = "2.5.0"
Expand Down

0 comments on commit a7841c9

Please sign in to comment.