Skip to content

Commit

Permalink
Bump toml versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ang-zeyu committed Jan 2, 2022
1 parent 8950075 commit 922f5c7
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 23 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Update the cargo.toml version numbers before running anything!

VERSION=v0.0.6
VERSION=v0.0.7

# Run in order
# Check preReleaseXX outputs manually before running release
Expand Down
2 changes: 1 addition & 1 deletion packages/mdbook-morsels/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdbook-morsels"
version = "0.0.6"
version = "0.0.7"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "Morsels plugin for Mdbook."
Expand Down
2 changes: 1 addition & 1 deletion packages/morsels_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "morsels_common"
version = "0.0.6"
version = "0.0.7"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "Internal library for other morsels packages."
Expand Down
10 changes: 5 additions & 5 deletions packages/morsels_indexer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "morsels_indexer"
version = "0.0.6"
version = "0.0.7"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "A complete and more scalable pre-built index approach to client-side search."
Expand All @@ -26,10 +26,10 @@ csv = "1.1"
dashmap = "4"
glob = "0.3"
lazy_static = "1.4"
morsels_common = { path = "../morsels_common", version="0.0.6" }
morsels_lang_ascii = { path = "../morsels_languages/morsels_lang_ascii", version="0.0.6" }
morsels_lang_latin = { path = "../morsels_languages/morsels_lang_latin", version="0.0.6" }
morsels_lang_chinese = { path = "../morsels_languages/morsels_lang_chinese", version="0.0.6" }
morsels_common = { path = "../morsels_common", version="0.0.7" }
morsels_lang_ascii = { path = "../morsels_languages/morsels_lang_ascii", version="0.0.7" }
morsels_lang_latin = { path = "../morsels_languages/morsels_lang_latin", version="0.0.7" }
morsels_lang_chinese = { path = "../morsels_languages/morsels_lang_chinese", version="0.0.7" }
normalize-line-endings = "0.3"
num_cpus = "1.13.0"
path-slash = "0.1.4"
Expand Down
4 changes: 2 additions & 2 deletions packages/morsels_languages/morsels_lang_ascii/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "morsels_lang_ascii"
version = "0.0.6"
version = "0.0.7"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "Basic ascii tokenizer for morsels."
Expand All @@ -14,7 +14,7 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
lazy_static = "1.4"
morsels_common = { path = "../../morsels_common", version="0.0.6" }
morsels_common = { path = "../../morsels_common", version="0.0.7" }
regex = "1"
rustc-hash = "1.1"
serde = { version = "1.0", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions packages/morsels_languages/morsels_lang_chinese/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "morsels_lang_chinese"
version = "0.0.6"
version = "0.0.7"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "Chinese tokenizer for morsels."
Expand All @@ -14,7 +14,7 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
lazy_static = "1.4"
morsels_common = { path = "../../morsels_common", version="0.0.6" }
morsels_common = { path = "../../morsels_common", version="0.0.7" }
regex = "1"
rustc-hash = "1.1"
jieba-rs = { version = "0.6.5", default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions packages/morsels_languages/morsels_lang_latin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "morsels_lang_latin"
version = "0.0.6"
version = "0.0.7"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "Ascii tokenizer with stemmers for morsels."
Expand All @@ -13,8 +13,8 @@ license = "MIT"
crate-type = ["cdylib", "rlib"]

[dependencies]
morsels_common = { path = "../../morsels_common", version="0.0.6" }
morsels_lang_ascii = { path = "../morsels_lang_ascii", version="0.0.6" }
morsels_common = { path = "../../morsels_common", version="0.0.7" }
morsels_lang_ascii = { path = "../morsels_lang_ascii", version="0.0.7" }
rustc-hash = "1.1"
rust-stemmers = "^1.0"
serde = { version = "1.0", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion packages/morsels_search/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "morsels_search"
version = "0.0.6"
version = "0.0.7"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"

Expand Down

0 comments on commit 922f5c7

Please sign in to comment.