Skip to content

Commit

Permalink
Merge pull request #90 from G-Research/85-3.12-support
Browse files Browse the repository at this point in the history
Newer PyO3, newer Rust, initial prep for next release
  • Loading branch information
itamarst authored Oct 13, 2023
2 parents f6fdac1 + a4625fa commit 85b8866
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.20.0

* Added support for Python 3.12.

## 0.19.0

* If an empty string is passed in as a pattern, `AhoCorasick()` will now raise a `ValueError`.
Expand Down
41 changes: 24 additions & 17 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ahocorasick_rs"
version = "0.19.0"
version = "0.20.0"
edition = "2021"
authors = ["G-Research <[email protected]>", "Itamar Turner-Trauring <[email protected]>"]
description = "Search a string for multiple substrings at once"
Expand All @@ -16,7 +16,7 @@ crate-type = ["cdylib"]
[dependencies]
aho-corasick = "1.0"
itertools = "0.11.0"
pyo3 = "0.19"
pyo3 = "0.20"

[features]
# The extension-module song and dance is explained here:
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.72.1"
channel = "1.73"
components = ["rustfmt", "clippy"]

0 comments on commit 85b8866

Please sign in to comment.