Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
ang-zeyu committed May 16, 2023
1 parent ec61b3d commit cb68c37
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
@@ -4,7 +4,7 @@
# Update the cargo.toml version numbers before running anything!

# And this
VERSION=v0.10.0
VERSION=v0.10.1

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

There are a couple of options for installing the indexer:
- Install the global npm package with `npm install -g @infisearch/cli`.
- If you have the rust / cargo toolchains setup, run `cargo install infisearch --vers 0.10.0`.
- If you have the rust / cargo toolchains setup, run `cargo install infisearch --vers 0.10.1`.
- You can also grab the cli binaries [here](https://github.com/ang-zeyu/infisearch/releases).

### 2. Running the indexer
@@ -49,9 +49,9 @@ Add the following resources to your pages:

```html
<!-- Search UI script -->
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.0/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/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/infisearch@v0.10.0/packages/search-ui/dist/search-ui-light.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/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.
8 changes: 4 additions & 4 deletions docs/src/getting_started.md
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ This page assumes the use case of a **static site**, that is:

There are a couple of options for installing the indexer:
- Install the global npm package with `npm install -g @infisearch/cli`.
- If you have the rust / cargo toolchains setup, run `cargo install infisearch --vers 0.10.0`.
- If you have the rust / cargo toolchains setup, run `cargo install infisearch --vers 0.10.1`.
- You can also grab the cli binaries [here](https://github.com/ang-zeyu/infisearch/releases).

## Running the indexer
@@ -46,12 +46,12 @@ If you are using the binaries, replace `infisearch` with the appropriate executa
### Installation via CDN

```html
<!-- Replace "v0.10.0" as appropriate -->
<!-- Replace "v0.10.1" as appropriate -->

<!-- Search UI script -->
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.0/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/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/infisearch@v0.10.0/packages/search-ui/dist/search-ui-light.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/packages/search-ui/dist/search-ui-light.css" />
```

> ⚠️ Ensure the linked versions **match the indexer version** used exactly.
6 changes: 3 additions & 3 deletions docs/src/language.md
Original file line number Diff line number Diff line change
@@ -37,7 +37,7 @@ The text is first split into on sentences, then whitespaces to obtain tokens. An
**CDN Link**

```html
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.0/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/packages/search-ui/dist/search-ui.ascii.bundle.js"></script>
```

## Ascii Tokenizer with Stemmer
@@ -66,7 +66,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/infisearch@v0.10.0/packages/search-ui/dist/search-ui.ascii-stemmer.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/packages/search-ui/dist/search-ui.ascii-stemmer.bundle.js"></script>
```

## Chinese Tokenizer
@@ -89,7 +89,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/infisearch@v0.10.0/packages/search-ui/dist/search-ui.chinese.bundle.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/packages/search-ui/dist/search-ui.chinese.bundle.js"></script>
```

## Stop Words
12 changes: 6 additions & 6 deletions docs/src/search_configuration_styling.md
Original file line number Diff line number Diff line change
@@ -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.10.0" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.0/packages/search-ui/dist/search-ui-light.css" />
<!-- Replace "v0.10.1" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/packages/search-ui/dist/search-ui-light.css" />
```

#### Preview
@@ -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.10.0" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.0/packages/search-ui/dist/search-ui-basic.css" />
<!-- Replace "v0.10.1" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/packages/search-ui/dist/search-ui-basic.css" />
```

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

```html
<!-- Replace "v0.10.0" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.0/packages/search-ui/dist/search-ui-dark.css" />
<!-- Replace "v0.10.1" as appropriate -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/ang-zeyu/infisearch@v0.10.1/packages/search-ui/dist/search-ui-dark.css" />
```

#### Preview
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -4,5 +4,5 @@
"packages/search-ui",
"packages/infisearch_search/pkg/*"
],
"version": "0.10.0"
"version": "0.10.1"
}
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.10.0"
version = "0.10.1"
authors = ["Ze Yu <angzeyu@gmail.com>"]
edition = "2018"
description = "A complete and more scalable pre-built index approach to client-side search."
@@ -33,10 +33,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.10.0", features = ["indexer"] }
infisearch_lang_ascii = { path = "../infisearch_languages/infisearch_lang_ascii", version="=0.10.0", features = ["indexer"] }
infisearch_lang_ascii_stemmer = { path = "../infisearch_languages/infisearch_lang_ascii_stemmer", version="=0.10.0", features = ["indexer"] }
infisearch_lang_chinese = { path = "../infisearch_languages/infisearch_lang_chinese", version="=0.10.0", features = ["indexer"] }
infisearch_common = { path = "../infisearch_common", version="=0.10.1", features = ["indexer"] }
infisearch_lang_ascii = { path = "../infisearch_languages/infisearch_lang_ascii", version="=0.10.1", features = ["indexer"] }
infisearch_lang_ascii_stemmer = { path = "../infisearch_languages/infisearch_lang_ascii_stemmer", version="=0.10.1", features = ["indexer"] }
infisearch_lang_chinese = { path = "../infisearch_languages/infisearch_lang_chinese", version="=0.10.1", features = ["indexer"] }
num_cpus = "1"
path-absolutize = { version = "3.0", features = ["lazy_static_cache"] }
pathdiff = "0.2"
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.10.0"
version = "0.10.1"
authors = ["Ze Yu <angzeyu@gmail.com>"]
edition = "2018"
description = "Internal library for other InfiSearch packages."
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "infisearch_lang_ascii"
version = "0.10.0"
version = "0.10.1"
authors = ["Ze Yu <angzeyu@gmail.com>"]
edition = "2018"
description = "Basic ascii tokenizer for InfiSearch."
@@ -14,6 +14,6 @@ indexer = ["lazy_static", "regex"]

[dependencies]
lazy_static = { version = "1.4", optional = true }
infisearch_common = { path = "../../infisearch_common", version="=0.10.0" }
infisearch_common = { path = "../../infisearch_common", version="=0.10.1" }
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_ascii_stemmer"
version = "0.10.0"
version = "0.10.1"
authors = ["Ze Yu <angzeyu@gmail.com>"]
edition = "2018"
description = "Ascii tokenizer with stemmers for InfiSearch."
@@ -13,7 +13,7 @@ license = "MIT"
indexer = []

[dependencies]
infisearch_common = { path = "../../infisearch_common", version="=0.10.0" }
infisearch_lang_ascii = { path = "../infisearch_lang_ascii", version="=0.10.0" }
infisearch_common = { path = "../../infisearch_common", version="=0.10.1" }
infisearch_lang_ascii = { path = "../infisearch_lang_ascii", version="=0.10.1" }
rust-stemmers = "^1.0"
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.10.0"
version = "0.10.1"
authors = ["Ze Yu <angzeyu@gmail.com>"]
edition = "2018"
description = "Chinese tokenizer for InfiSearch."
@@ -13,8 +13,8 @@ license = "MIT"
indexer = ["regex"]

[dependencies]
infisearch_common = { path = "../../infisearch_common", version="=0.10.0" }
infisearch_lang_ascii = { path = "../infisearch_lang_ascii", version="=0.10.0" }
infisearch_common = { path = "../../infisearch_common", version="=0.10.1" }
infisearch_lang_ascii = { path = "../infisearch_lang_ascii", version="=0.10.1" }
lazy_static = { version = "1.4" }
regex = { version = "1", optional = true }
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.10.0"
version = "0.10.1"
authors = ["Ze Yu <angzeyu@gmail.com>"]
edition = "2018"

2 changes: 1 addition & 1 deletion packages/infisearch_search/pkg/lang_ascii/package.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"collaborators": [
"Ze Yu <angzeyu@gmail.com>"
],
"version": "0.10.0",
"version": "0.10.1",
"files": [
"index_bg.wasm",
"index.js",
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"collaborators": [
"Ze Yu <angzeyu@gmail.com>"
],
"version": "0.10.0",
"version": "0.10.1",
"files": [
"index_bg.wasm",
"index.js",
2 changes: 1 addition & 1 deletion packages/infisearch_search/pkg/lang_chinese/package.json
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
"collaborators": [
"Ze Yu <angzeyu@gmail.com>"
],
"version": "0.10.0",
"version": "0.10.1",
"files": [
"index_bg.wasm",
"index.js",
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.10.0"
version = "0.10.1"
authors = ["Ze Yu <angzeyu@gmail.com>"]
edition = "2018"
description = "InfiSearch plugin for Mdbook."
@@ -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.10.0" }
infisearch = { path = "../infisearch", version="=0.10.1" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.5"
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-stemmer.bundle.js

Large diffs are not rendered by default.

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.

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.10.0",
"version": "0.10.1",
"description": "A complete and more scalable pre-built index approach to client-side search.",
"keywords": [
"search"
@@ -26,6 +26,6 @@
},
"dependencies": {
"@floating-ui/dom": "^1.0.10",
"@infisearch/search-lib": "^0.10.0"
"@infisearch/search-lib": "^0.10.1"
}
}
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.10.0",
"version": "0.10.1",
"description": "Internal search library module for @infisearch/search-ui",
"keywords": [
"search"
@@ -29,8 +29,8 @@
"escape-string-regexp": "^5.0.0"
},
"devDependencies": {
"@infisearch/lang-ascii": "^0.10.0",
"@infisearch/lang-ascii-stemmer": "^0.10.0",
"@infisearch/lang-chinese": "^0.10.0"
"@infisearch/lang-ascii": "^0.10.1",
"@infisearch/lang-ascii-stemmer": "^0.10.1",
"@infisearch/lang-chinese": "^0.10.1"
}
}

0 comments on commit cb68c37

Please sign in to comment.