Skip to content

Commit

Permalink
Bump Version
Browse files Browse the repository at this point in the history
Uupdate package versions after Oniguruma upgrade.
  • Loading branch information
iwillspeak committed Sep 6, 2018
1 parent cd3a029 commit 5a7ad0a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 17 deletions.
16 changes: 10 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
[package]
name = "onig"
version = "4.1.0"
version = "4.2.0"
authors = [
"Will Speak <will@willspeak.me>",
"Ivan Ivashchenko <defuz@me.com>"
"Will Speak <will@willspeak.me>",
"Ivan Ivashchenko <defuz@me.com>"
]

description = """Rust-Onig is a set of rust bindings for the
oniguruma regular expression library."""
description = """
Rust-Onig is a set of Rust bindings for the
Oniguruma regular expression library. Oniguruma
is a modern regex library with support for
multiple character encodings and regex syntaxes.
"""
repository = "http://github.com/iwillspeak/rust-onig"
documentation = "http://rust-onig.github.io/rust-onig/onig/"
documentation = "https://docs.rs/onig/"
readme = "README.md"
license = "MIT"

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add the following to your `Cargo.toml` file:

```toml
[dependencies]
onig = "4.0"
onig = "4.2"
```

Add the following extern to your crate root:
Expand Down Expand Up @@ -73,9 +73,9 @@ The contents of this repository are distributed under the MIT license. See
at our open [easy issues][easy_issues].

[Onig_wiki]: https://en.wikipedia.org/wiki/Oniguruma
[onig_crate_doc]: https://docs.rs/onig/4.1.0/onig/
[onig_crate_doc]: https://docs.rs/onig/4.2.0/onig/
[examples_folder]: https://github.com/rust-onig/rust-onig/tree/master/examples
[regex_new]: https://docs.rs/onig/4.1.0/onig/struct.Regex.html#method.new
[regex_is_match]: https://docs.rs/onig/4.1.0/onig/struct.Regex.html#method.is_match
[regex_find]: https://docs.rs/onig/4.1.0/onig/struct.Regex.html#method.find
[regex_new]: https://docs.rs/onig/4.2.0/onig/struct.Regex.html#method.new
[regex_is_match]: https://docs.rs/onig/4.2.0/onig/struct.Regex.html#method.is_match
[regex_find]: https://docs.rs/onig/4.2.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
18 changes: 12 additions & 6 deletions onig_sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
[package]
name = "onig_sys"
version = "69.0.0"
authors = ["Will Speak <will@willspeak.me>", "Ivan Ivashchenko <defuz@me.com>"]
authors = [
"Will Speak <will@willspeak.me>",
"Ivan Ivashchenko <defuz@me.com>"
]
build = "build.rs"
links = "onig"

description = """The Onig Sys crate contains raw rust bindings to the
oniguruma library. This crate exposes a set of unsafe functions which
can then be used by other crates to create safe wrappers around
Oniguruma.
description = """
The `onig_sys` crate contains raw rust bindings to the
oniguruma library. This crate exposes a set of unsafe
functions which can then be used by other crates to
create safe wrappers around Oniguruma.
You probably don't want to link to this crate directly."""
You probably don't want to link to this crate directly;
instead check out the `onig` crate.
"""

repository = "http://github.com/iwillspeak/rust-onig"
documentation = "http://rust-onig.github.io/rust-onig/onig_sys/"
Expand Down

0 comments on commit 5a7ad0a

Please sign in to comment.