Skip to content

Commit

Permalink
bump version v0.1.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Lips7 committed Jun 12, 2024
1 parent 5be48ff commit 3fb3552
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 12 deletions.
6 changes: 3 additions & 3 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ readme = "README.md"
keywords = ["text", "string", "search", "pattern", "multi"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Lips7/Matcher"
version = "0.1.8"
version = "0.1.9"

[profile.release]
strip = true
Expand Down
Binary file modified matcher_c/matcher_c.so
Binary file not shown.
Binary file modified matcher_java/src/main/resources/matcher_c.so
Binary file not shown.
Binary file modified matcher_py/matcher_py/matcher_py.so
Binary file not shown.
2 changes: 1 addition & 1 deletion matcher_py/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "matcher_py"
version = "0.1.8"
version = "0.1."
readme = "README.md"
requires-python = ">=3.8"
authors = [{ name = 'Fuji Guo' }, { email = "[email protected]" }]
Expand Down
3 changes: 1 addition & 2 deletions matcher_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ version.workspace = true
build = "build.rs"

[package.metadata.docs.rs]
rustc-args = ["--cfg", "matcher_rs_docs_rs"]
rustdoc-args = ["--cfg", "matcher_rs_docs_rs"]
default-target = "x86_64-apple-darwin"

[lib]
name = "matcher_rs"
Expand Down
2 changes: 1 addition & 1 deletion matcher_rs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To use `matcher_rs` in your Rust project, add the following to your `Cargo.toml`

```toml
[dependencies]
matcher_rs = "0.1.8"
matcher_rs = "*"
```

You can then use the Matcher struct to perform text matching. Here's a basic example:
Expand Down
4 changes: 0 additions & 4 deletions matcher_rs/build.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
fn main() {
println!("cargo:rustc-env=RUSTFLAGS={}", "-C target-feature=+aes");
#[allow(unexpected_cfgs)]
if cfg!(matcher_rs_docs_rs) {
println!("cargo:rustc-env=RUSTFLAGS={}", "-C target-feature=+aes");
}
}

0 comments on commit 3fb3552

Please sign in to comment.