Skip to content

Commit

Permalink
Bump Version
Browse files Browse the repository at this point in the history
Onig 6.1.0 and onig_sys 69.5.1 with:

 * Minimum Rust (MSRV) is now 1.40
 * WASM support (#147)
 * Empty matches are only skipped when they overlap the previous
   match (#145)
  • Loading branch information
iwillspeak committed Sep 9, 2020
1 parent 99bcb06 commit 0c39b88
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

![CI](https://github.com/rust-onig/rust-onig/workflows/CI/badge.svg)
[![Build status](https://ci.appveyor.com/api/projects/status/7qxdb44xpw4bkjfi/branch/master?svg=true)](https://ci.appveyor.com/project/iwillspeak/rust-onig/branch/master)
[![dependency status](https://deps.rs/crate/onig/6.0.0/status.svg)](https://deps.rs/crate/onig/6.0.0)
[![dependency status](https://deps.rs/crate/onig/6.1.0/status.svg)](https://deps.rs/crate/onig/6.1.0)

Rust bindings for the [Oniguruma regex library][Onig_wiki], a powerful and mature regular expression library with support for a wide range of character sets and language syntaxes. Oniguruma is written in C. This repository provides two crates: `onig-sys` which provides the raw Rust FFI bindings, and `onig`, which provides a safe Rust wrapper around them.

Expand Down Expand Up @@ -92,9 +92,7 @@ at our open [easy issues][easy_issues].
[Onig_wiki]: https://en.wikipedia.org/wiki/Oniguruma
[onig_crate_doc]: https://docs.rs/onig/
[examples_folder]: https://github.com/rust-onig/rust-onig/tree/master/onig/examples
[regex_new]: https://docs.rs/onig/6.0.0/onig/struct.Regex.html#method.new
[regex_is_match]: https://docs.rs/onig/6.0.0/onig/struct.Regex.html#method.is_match
[regex_find]: https://docs.rs/onig/6.0.0/onig/struct.Regex.html#method.find
[regex_new]: https://docs.rs/onig/6.1.0/onig/struct.Regex.html#method.new
[regex_is_match]: https://docs.rs/onig/6.1.0/onig/struct.Regex.html#method.is_match
[regex_find]: https://docs.rs/onig/6.1.0/onig/struct.Regex.html#method.find
[easy_issues]: https://github.com/rust-onig/rust-onig/issues?q=is%3Aopen+is%3Aissue+label%3AE-Easy


4 changes: 2 additions & 2 deletions onig/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "onig"
version = "6.0.0"
version = "6.1.0"
authors = [
"Will Speak <will@willspeak.me>",
"Ivan Ivashchenko <defuz@me.com>"
Expand Down Expand Up @@ -35,6 +35,6 @@ lazy_static = "1.2"
libc = "0.2"

[dependencies.onig_sys]
version = "69.5.0"
version = "69.5.1"
path = "../onig_sys"
default-features = false
2 changes: 1 addition & 1 deletion onig_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "onig_sys"
version = "69.5.0"
version = "69.5.1"
authors = [
"Will Speak <will@willspeak.me>",
"Ivan Ivashchenko <defuz@me.com>"
Expand Down

0 comments on commit 0c39b88

Please sign in to comment.