Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ang-zeyu committed Nov 13, 2022
1 parent 35deac2 commit e6af511
Show file tree
Hide file tree
Showing 33 changed files with 61 additions and 61 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 @@ -4,7 +4,7 @@
# Update the cargo.toml version numbers before running anything!

# And this
VERSION=v0.8.3
VERSION=v0.8.4

# Run in order
# Check preReleaseXX outputs manually before running release
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Powering static site search with InfiSearch is extremely easy, and requires just

### 1. Installing the indexer

If you have the rust / cargo toolchains setup, simply run `cargo install infisearch --vers 0.8.3`.
If you have the rust / cargo toolchains setup, simply run `cargo install infisearch --vers 0.8.4`.

Alternatively, download the cli binaries [here](https://github.com/ang-zeyu/infisearch/releases).

Expand All @@ -42,9 +42,9 @@ Add the following resources to your pages:

```html
<!-- Search UI script -->
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
<!-- Search UI css, this provides some basic styling for the search dropdown, and can be omitted if desired -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui-light.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui-light.css" />
```

If you wish to host the files, you can find them in the `<output-folder-path>/assets` directory generated by the indexer, or in the [releases](https://github.com/ang-zeyu/infisearch/releases) page.
Expand Down
8 changes: 4 additions & 4 deletions docs/src/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This page assumes the use case of a **static site**, that is:

## Installing the indexer

If you have the rust / cargo toolchains setup, simply run `cargo install infisearch --vers 0.8.3`.
If you have the rust / cargo toolchains setup, simply run `cargo install infisearch --vers 0.8.4`.

Alternatively, download the cli binaries [here](https://github.com/ang-zeyu/infisearch/releases).

Expand All @@ -38,12 +38,12 @@ If you are using the binaries, replace `infisearch` with the appropriate executa
### Installation via CDN

```html
<!-- Replace "v0.8.3" as appropriate -->
<!-- Replace "v0.8.4" as appropriate -->

<!-- Search UI script -->
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
<!-- Search UI css, this provides some basic styling for the search dropdown, and can be omitted if desired -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui-light.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui-light.css" />
```

> ⚠️ Ensure the versions here **match the indexer version** used exactly.
Expand Down
6 changes: 3 additions & 3 deletions docs/src/language.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ An [asciiFoldingFilter](https://github.com/tantivy-search/tantivy/blob/main/src/
**CDN Link**

```html
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
```

## Latin Tokenizer
Expand Down Expand Up @@ -60,7 +60,7 @@ If you do not need stemming, use the `ascii` tokenizer, which has a smaller wasm
**CDN Link**

```html
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui.latin.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui.latin.bundle.js"></script>
```

## Chinese Tokenizer
Expand All @@ -83,7 +83,7 @@ You are highly recommended to keep positions indexed and query term proximity ra
**CDN Link**

```html
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui.chinese.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui.chinese.bundle.js"></script>
```

## Stop Words
Expand Down
12 changes: 6 additions & 6 deletions docs/src/search_configuration_styling.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Head on over to the demo site [here](https://infi-search.com) to try them out!
#### CDN link

```html
<!-- Replace "v0.8.3" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui-light.css" />
<!-- Replace "v0.8.4" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui-light.css" />
```

#### Preview
Expand All @@ -46,8 +46,8 @@ Head on over to the demo site [here](https://infi-search.com) to try them out!
#### CDN link

```html
<!-- Replace "v0.8.3" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui-basic.css" />
<!-- Replace "v0.8.4" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui-basic.css" />
```

<div class="image-container">
Expand All @@ -60,8 +60,8 @@ Head on over to the demo site [here](https://infi-search.com) to try them out!
#### CDN link

```html
<!-- Replace "v0.8.3" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].3/packages/search-ui/dist/search-ui-dark.css" />
<!-- Replace "v0.8.4" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/[email protected].4/packages/search-ui/dist/search-ui-dark.css" />
```

#### Preview
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"packages/search-ui",
"packages/infisearch_search/pkg/*"
],
"version": "0.8.3"
"version": "0.8.4"
}
10 changes: 5 additions & 5 deletions packages/infisearch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "infisearch"
version = "0.8.3"
version = "0.8.4"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "A complete and more scalable pre-built index approach to client-side search."
Expand Down Expand Up @@ -32,10 +32,10 @@ glob = "0.3"
lazy_static = "1.4"
log = { version = "0.4", features = ["max_level_info", "release_max_level_info"] }
log4rs = "1.0"
infisearch_common = { path = "../infisearch_common", version="=0.8.3", features = ["indexer"] }
infisearch_lang_ascii = { path = "../infisearch_languages/infisearch_lang_ascii", version="=0.8.3", features = ["indexer"] }
infisearch_lang_latin = { path = "../infisearch_languages/infisearch_lang_latin", version="=0.8.3", features = ["indexer"] }
infisearch_lang_chinese = { path = "../infisearch_languages/infisearch_lang_chinese", version="=0.8.3", features = ["indexer"] }
infisearch_common = { path = "../infisearch_common", version="=0.8.4", features = ["indexer"] }
infisearch_lang_ascii = { path = "../infisearch_languages/infisearch_lang_ascii", version="=0.8.4", features = ["indexer"] }
infisearch_lang_latin = { path = "../infisearch_languages/infisearch_lang_latin", version="=0.8.4", features = ["indexer"] }
infisearch_lang_chinese = { path = "../infisearch_languages/infisearch_lang_chinese", version="=0.8.4", features = ["indexer"] }
num_cpus = "1"
path-absolutize = { version = "3.0", features = ["lazy_static_cache"] }
pathdiff = "0.2"
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/infisearch_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "infisearch_common"
version = "0.8.3"
version = "0.8.4"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "Internal library for other InfiSearch packages."
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "infisearch_lang_ascii"
version = "0.8.3"
version = "0.8.4"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "Basic ascii tokenizer for InfiSearch."
Expand All @@ -14,6 +14,6 @@ indexer = ["lazy_static", "regex"]

[dependencies]
lazy_static = { version = "1.4", optional = true }
infisearch_common = { path = "../../infisearch_common", version="=0.8.3" }
infisearch_common = { path = "../../infisearch_common", version="=0.8.4" }
regex = { version = "1", optional = true }
smartstring = "0.2.7"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "infisearch_lang_chinese"
version = "0.8.3"
version = "0.8.4"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "Chinese tokenizer for InfiSearch."
Expand All @@ -13,8 +13,8 @@ license = "MIT"
indexer = ["regex"]

[dependencies]
infisearch_common = { path = "../../infisearch_common", version="=0.8.3" }
infisearch_lang_ascii = { path = "../infisearch_lang_ascii", version="=0.8.3" }
infisearch_common = { path = "../../infisearch_common", version="=0.8.4" }
infisearch_lang_ascii = { path = "../infisearch_lang_ascii", version="=0.8.4" }
lazy_static = { version = "1.4" }
regex = { version = "1", optional = true }
smartstring = "0.2.7"
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "infisearch_lang_latin"
version = "0.8.3"
version = "0.8.4"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "Ascii tokenizer with stemmers for InfiSearch."
Expand All @@ -13,7 +13,7 @@ license = "MIT"
indexer = []

[dependencies]
infisearch_common = { path = "../../infisearch_common", version="=0.8.3" }
infisearch_lang_ascii = { path = "../infisearch_lang_ascii", version="=0.8.3" }
infisearch_common = { path = "../../infisearch_common", version="=0.8.4" }
infisearch_lang_ascii = { path = "../infisearch_lang_ascii", version="=0.8.4" }
rust-stemmers = "^1.0"
smartstring = "0.2.7"
2 changes: 1 addition & 1 deletion packages/infisearch_search/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "infisearch_search"
version = "0.8.3"
version = "0.8.4"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion packages/infisearch_search/pkg/lang_ascii/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"collaborators": [
"Ze Yu <[email protected]>"
],
"version": "0.8.3",
"version": "0.8.4",
"files": [
"index_bg.wasm",
"index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/infisearch_search/pkg/lang_chinese/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"collaborators": [
"Ze Yu <[email protected]>"
],
"version": "0.8.3",
"version": "0.8.4",
"files": [
"index_bg.wasm",
"index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/infisearch_search/pkg/lang_latin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"collaborators": [
"Ze Yu <[email protected]>"
],
"version": "0.8.3",
"version": "0.8.4",
"files": [
"index_bg.wasm",
"index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/mdbook-infisearch/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdbook-infisearch"
version = "0.8.3"
version = "0.8.4"
authors = ["Ze Yu <[email protected]>"]
edition = "2018"
description = "InfiSearch plugin for Mdbook."
Expand All @@ -16,7 +16,7 @@ include = ["/src", "mark.min.js", "default_infi_search.json"]
anyhow = "1.0"
clap = "2.0"
mdbook = "0.4.21"
infisearch = { path = "../infisearch", version="=0.8.3" }
infisearch = { path = "../infisearch", version="=0.8.4" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.5"
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion packages/search-ui/dist/search-ui.ascii.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/search-ui/dist/search-ui.chinese.bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/search-ui/dist/search-ui.latin.bundle.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/search-ui/package-lock.json

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

4 changes: 2 additions & 2 deletions packages/search-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infisearch/search-ui",
"version": "0.8.3",
"version": "0.8.4",
"description": "A complete and more scalable pre-built index approach to client-side search.",
"keywords": [
"search"
Expand All @@ -26,6 +26,6 @@
},
"dependencies": {
"@floating-ui/dom": "^1.0",
"@infisearch/search-lib": "^0.8.3"
"@infisearch/search-lib": "^0.8.4"
}
}
4 changes: 2 additions & 2 deletions packages/search/package-lock.json

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

8 changes: 4 additions & 4 deletions packages/search/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infisearch/search-lib",
"version": "0.8.3",
"version": "0.8.4",
"description": "Internal search library module for @infisearch/search-ui",
"keywords": [
"search"
Expand Down Expand Up @@ -29,8 +29,8 @@
"escape-string-regexp": "^5.0.0"
},
"devDependencies": {
"@infisearch/lang-ascii": "^0.8.3",
"@infisearch/lang-chinese": "^0.8.3",
"@infisearch/lang-latin": "^0.8.3"
"@infisearch/lang-ascii": "^0.8.4",
"@infisearch/lang-chinese": "^0.8.4",
"@infisearch/lang-latin": "^0.8.4"
}
}

0 comments on commit e6af511

Please sign in to comment.