Skip to content

Commit

Permalink
Publish latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
mre committed Sep 27, 2022
1 parent 1928a1d commit 5d98c35
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

5 changes: 3 additions & 2 deletions bin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
[package]
name = "tinysearch"
authors = ["Matthias Endler <matthias-endler@gmx.net>"]
version = "0.6.4"
version = "0.7.0"
edition = "2021"
description = "A tiny search engine for static websites"
license = "Apache-2.0/MIT"
documentation = "https://github.com/mre/tinysearch/blob/master/README.md"
homepage = "https://github.com/mre/tinysearch"
repository = "https://github.com/mre/tinysearch"

[dependencies]
tinysearch-shared = { path = "../shared", version = "0.6.3" }
tinysearch-shared = { path = "../shared", version = "0.7.0" }

argh = "0.1.5"
log = "0.4.14"
Expand Down
4 changes: 2 additions & 2 deletions engine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tinysearch-engine"
authors = ["Matthias Endler <matthias-endler@gmx.net>"]
version = "0.6.3"
version = "0.7.0"
edition = "2021"
description = "A tiny search engine for static websites"
license = "Apache-2.0/MIT"
Expand All @@ -17,7 +17,7 @@ once_cell = "1.8.0"

[dependencies.tinysearch-shared]
path = "../shared"
version = "0.6.3"
version = "0.7.0"

[dependencies.xorf]
version = "0.7.2"
Expand Down
5 changes: 4 additions & 1 deletion shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
[package]
name = "tinysearch-shared"
version = "0.6.4"
version = "0.7.0"
authors = ["Matthias Endler <matthias-endler@gmx.net>"]
edition = "2021"
description = "Shared libraries for tinysearch - a tiny search engine for static websites"
license = "Apache-2.0/MIT"
documentation = "https://github.com/mre/tinysearch/blob/master/README.md"
homepage = "https://github.com/mre/tinysearch"
repository = "https://github.com/mre/tinysearch"

[dependencies]
bincode = "1.3.3"
Expand Down

0 comments on commit 5d98c35

Please sign in to comment.