Skip to content

Commit

Permalink
Updated documents
Browse files Browse the repository at this point in the history
  • Loading branch information
kkmtyyz committed May 17, 2021
1 parent d70d246 commit 7490758
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [3.1.1] - 2021-05-18

### Fixes
- Fixed a bug where `Input.set_cursor ()` could move the cursor after EOF.


## [3.1.0] - 2021-05-16

### Additions
Expand Down Expand Up @@ -46,6 +52,7 @@
## [1.0.0] - 2021-05-08
Initial release.

[3.1.1]: https://github.com/kkmtyyz/parsercher/compare/v3.1.0...v3.1.1
[3.1.0]: https://github.com/kkmtyyz/parsercher/compare/v3.0.0...v3.1.0
[3.0.0]: https://github.com/kkmtyyz/parsercher/compare/v2.1.0...v3.0.0
[2.1.0]: https://github.com/kkmtyyz/parsercher/compare/v2.0.0...v2.1.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parsercher"
version = "3.1.0"
version = "3.1.1"
authors = ["kkmtyyz <45735463+kkmtyyz@users.noreply.github.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# parsercher

[![Crate](https://img.shields.io/crates/v/parsercher.svg)](https://crates.io/crates/parsercher)
[![API](https://img.shields.io/badge/api-3.1.0-green.svg)](https://docs.rs/parsercher)
[![API](https://img.shields.io/badge/api-3.1.1-green.svg)](https://docs.rs/parsercher)

**Parses and searches Tag documents. (e.g. HTML, XML)**

Expand All @@ -14,7 +14,7 @@ parsercher parses documents written in tags such as HTML and XML.
Add this to your `Cargo.toml`:
```
[dependencies]
parsercher = "3.1.0"
parsercher = "3.1.1"
```

## License
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
//! Add this to your `Cargo.toml`:
//! ```text
//! [dependencies]
//! parsercher = "3.1.0"
//! parsercher = "3.1.1"
//! ```
//!
//! # Examples
Expand Down

0 comments on commit 7490758

Please sign in to comment.