From aa195497b19392513b3cc95dbf29babd3376f251 Mon Sep 17 00:00:00 2001 From: Shun Sakai Date: Wed, 9 Aug 2023 19:41:25 +0900 Subject: [PATCH] Update version to 0.5.3 --- .bumpversion.cfg | 2 +- CHANGELOG.adoc | 2 +- Cargo.toml | 4 ++-- README.md | 2 +- src/lib.rs | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c330223..4e4a0fe 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.2 +current_version = 0.5.3 [bumpversion:file:Cargo.toml] diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 2c5fd27..824e85b 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -16,7 +16,7 @@ project adheres to https://semver.org/[Semantic Versioning]. toc::[] -== {compare-url}/v0.5.2\...HEAD[Unreleased] +== {compare-url}/v0.5.2\...v0.5.3[0.5.3] - 2023-08-09 === Added diff --git a/Cargo.toml b/Cargo.toml index ba92390..15d3b2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nt-time" -version = "0.5.2" +version = "0.5.3" authors = ["Shun Sakai "] edition = "2021" rust-version = "1.65.0" @@ -29,7 +29,7 @@ exclude = [ [dependencies] chrono = { version = "0.4.26", default-features = false, optional = true } -serde = { version = "1.0.182", default-features = false, features = ["derive"], optional = true } +serde = { version = "1.0.183", default-features = false, features = ["derive"], optional = true } time = { version = "=0.3.23", default-features = false, features = ["macros"] } [dev-dependencies] diff --git a/README.md b/README.md index df3d5b4..9f5ddc8 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Add this to your `Cargo.toml`: ```toml [dependencies] -nt-time = "0.5.2" +nt-time = "0.5.3" ``` ### Example diff --git a/src/lib.rs b/src/lib.rs index 52db671..723acce 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -35,7 +35,7 @@ //! [file-time-docs-url]: https://docs.microsoft.com/en-us/windows/win32/sysinfo/file-times //! [7z-format-url]: https://www.7-zip.org/7z.html -#![doc(html_root_url = "https://docs.rs/nt-time/0.5.2/")] +#![doc(html_root_url = "https://docs.rs/nt-time/0.5.3/")] #![no_std] #![cfg_attr(doc_cfg, feature(doc_auto_cfg, doc_cfg))] // Lint levels of rustc.