From 2a5f7dbd19f7f708f2cc4a380bbaf5fd7b417a3a Mon Sep 17 00:00:00 2001 From: Yun-Jhong Wu Date: Mon, 17 Jun 2024 02:25:36 -0500 Subject: [PATCH] Bump version to v0.12.0 --- README.md | 2 +- strong-type-derive/Cargo.toml | 2 +- strong-type/Cargo.toml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 45ac838..33c9879 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ println!("{}", timestamp); // Timestamp(1701620628123456789) Add `strong-type` to your `Cargo.toml`: ```toml [dependencies] -strong-type = "0.11" +strong-type = "0.12" ``` ## Supported underlying types: diff --git a/strong-type-derive/Cargo.toml b/strong-type-derive/Cargo.toml index 52c0a4a..9a7b5de 100644 --- a/strong-type-derive/Cargo.toml +++ b/strong-type-derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "strong-type-derive" description = "Macro implemenation for #[derive(StrongType)]" -version = "0.11.2" +version = "0.12.0" edition = "2021" license = "MIT OR Apache-2.0" diff --git a/strong-type/Cargo.toml b/strong-type/Cargo.toml index 293ca77..d0038a9 100644 --- a/strong-type/Cargo.toml +++ b/strong-type/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "strong-type" description = "Procedural macros for naming and strong-typing pritimives and strings" -version = "0.11.2" +version = "0.12.0" edition = "2021" license = "MIT OR Apache-2.0" @@ -10,4 +10,4 @@ repository = "https://github.com/yunjhongwu/strong-type" readme = "../README.md" [dependencies] -strong-type-derive = { version = "0.11.2", path = "../strong-type-derive" } +strong-type-derive = { version = "0.12.0", path = "../strong-type-derive" }