Skip to content

Commit

Permalink
Update version to 0.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Sas-Szymański committed Jul 1, 2024
1 parent fb872ff commit 7a34ec1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "synonym"
version = "0.1.3"
version = "0.1.4"
authors = ["Marcin Sas-Szymanski <[email protected]>"]
license-file = "LICENSE"
description = "Customizable derive macro to create newtypes. It peeks into the underlying type to choose which traits should be implemented."
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ To use `synonym`, add it to your Cargo.toml:

```toml
[dependencies]
synonym = "0.1.3"
synonym = "0.1.4"
```

### Basic example
Expand Down Expand Up @@ -157,7 +157,7 @@ To enable Serde support for serialization and deserialization, you'll need to en

```toml
[dependencies]
synonym = { version = "0.1.3", features = ["with_serde"] }
synonym = { version = "0.1.4", features = ["with_serde"] }
```

With this feature enabled, the `Serialize` and `Deserialize` traits will be automatically implemented for your type.
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//!
//! ```toml
//! [dependencies]
//! synonym = "0.1.3"
//! synonym = "0.1.4"
//! ```
//!
//! ## Basic example
Expand Down Expand Up @@ -149,7 +149,7 @@
//!
//! ```toml
//! [dependencies]
//! synonym = { version = "0.1.3", features = ["with_serde"] }
//! synonym = { version = "0.1.4", features = ["with_serde"] }
//! ```
//!
//! With this feature enabled, the `Serialize` and `Deserialize` traits will be automatically implemented for your type.
Expand Down
2 changes: 1 addition & 1 deletion tests/cases/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## 0.1.4 (2024-07-01)

* Add `Box<str>` and `&'static str` synonyms
* Add `NonZero*` synonyms
Expand Down

0 comments on commit 7a34ec1

Please sign in to comment.