Skip to content

Commit

Permalink
Version 0.9.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
frozenlib committed May 30, 2024
1 parent 253838e commit 2fd6c6e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 10 deletions.
19 changes: 14 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,30 @@

### Changed

- Set `rust-version` to 1.70.0. [#42](https://github.com/frozenlib/parse-display/issues/42)

### Deprecated

### Removed

### Fixed

### Performance

### Security

## [0.9.1] - 2024-05-31

### Changed

- Set `rust-version` to 1.70.0. [#42](https://github.com/frozenlib/parse-display/issues/42)

### Fixed

- Ensure `Pointer` format is formatted correctly.

### Performance

- Optimizing runtime performance for the literal string case. [#39](https://github.com/frozenlib/parse-display/issues/39)

### Security

## [0.9.0] - 2024-02-04

### Added
Expand Down Expand Up @@ -79,7 +87,8 @@

- Support `#[from_str(ignore)]` for variant.

[unreleased]: https://github.com/frozenlib/parse-display/compare/v0.9.0...HEAD
[unreleased]: https://github.com/frozenlib/parse-display/compare/v0.9.1...HEAD
[0.9.1]: https://github.com/frozenlib/parse-display/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/frozenlib/parse-display/compare/v0.8.2...v0.9.0
[0.8.2]: https://github.com/frozenlib/parse-display/compare/v0.8.1...v0.8.2
[0.8.1]: https://github.com/frozenlib/parse-display/compare/v0.8.0...v0.8.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Add this to your Cargo.toml:

```toml
[dependencies]
parse-display = "0.9.0"
parse-display = "0.9.1"
```

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion parse-display-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parse-display-derive"
version = "0.9.0"
version = "0.9.1"
authors = ["frozenlib"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
Expand Down
2 changes: 1 addition & 1 deletion parse-display-with/src/tests/readme_parse_display.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
//!
//! ```toml
//! [dependencies]
//! parse-display = "0.9.0"
//! parse-display = "0.9.1"
//! ```
//!
//! ## Documentation
Expand Down
4 changes: 2 additions & 2 deletions parse-display/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "parse-display"
version = "0.9.0"
version = "0.9.1"
edition = "2021"
authors = ["frozenlib"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,7 +19,7 @@ std = ["regex", "regex-syntax"]
docs = []

[dependencies]
parse-display-derive = { version = "=0.9.0", path = "../parse-display-derive" }
parse-display-derive = { version = "=0.9.1", path = "../parse-display-derive" }
regex = { version = "1.10.4", optional = true }
regex-syntax = { version = "0.8.3", optional = true }

Expand Down

0 comments on commit 2fd6c6e

Please sign in to comment.