-
-
Notifications
You must be signed in to change notification settings - Fork 680
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* prerelease * chore: Release
- Loading branch information
Showing
9 changed files
with
49 additions
and
37 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tantivy" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Paul Masurel <[email protected]>"] | ||
license = "MIT" | ||
categories = ["database-implementations", "data-structures"] | ||
|
@@ -55,13 +55,13 @@ measure_time = "0.8.2" | |
async-trait = "0.1.53" | ||
arc-swap = "1.5.0" | ||
|
||
columnar = { version="0.1", path="./columnar", package ="tantivy-columnar" } | ||
sstable = { version="0.1", path="./sstable", package ="tantivy-sstable", optional = true } | ||
stacker = { version="0.1", path="./stacker", package ="tantivy-stacker" } | ||
query-grammar = { version= "0.19.0", path="./query-grammar", package = "tantivy-query-grammar" } | ||
tantivy-bitpacker = { version= "0.3", path="./bitpacker" } | ||
columnar = { version= "0.1", path="./columnar", package ="tantivy-columnar" } | ||
sstable = { version= "0.1", path="./sstable", package ="tantivy-sstable", optional = true } | ||
stacker = { version= "0.1", path="./stacker", package ="tantivy-stacker" } | ||
query-grammar = { version= "0.20.0", path="./query-grammar", package = "tantivy-query-grammar" } | ||
tantivy-bitpacker = { version= "0.4", path="./bitpacker" } | ||
common = { version= "0.5", path = "./common/", package = "tantivy-common" } | ||
tokenizer-api = { version="0.1", path="./tokenizer-api", package="tantivy-tokenizer-api" } | ||
tokenizer-api = { version= "0.1", path="./tokenizer-api", package="tantivy-tokenizer-api" } | ||
sketches-ddsketch = { version = "0.2.1", features = ["use_serde"] } | ||
futures-util = { version = "0.3.28", optional = true } | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Release a new Tantivy Version | ||
|
||
## Steps | ||
|
||
1. Identify new packages in workspace since last release | ||
2. Identify changed packages in workspace since last release | ||
3. Bump version in `Cargo.toml` and their dependents for all changed packages | ||
4. Update version of root `Cargo.toml` | ||
5. Publish version starting with leaf nodes | ||
6. Set git tag with new version | ||
|
||
|
||
In conjucation with `cargo-release` Steps 1-4 (I'm not sure if the change detection works): | ||
Set new packages to version 0.0.0 | ||
|
||
Replace prev-tag-name | ||
```bash | ||
cargo release --workspace --no-publish -v --prev-tag-name 0.19 --push-remote origin minor --no-tag --execute | ||
``` | ||
|
||
no-tag or it will create tags for all the subpackages |
This file was deleted.
Oops, something went wrong.
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 = "tantivy-bitpacker" | ||
version = "0.3.0" | ||
version = "0.4.0" | ||
edition = "2021" | ||
authors = ["Paul Masurel <[email protected]>"] | ||
license = "MIT" | ||
|
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 = "tantivy-query-grammar" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Paul Masurel <[email protected]>"] | ||
license = "MIT" | ||
categories = ["database-implementations", "data-structures"] | ||
|
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