From 81ad71f9ff524bde00ec4cee46bd93f5e732d2c0 Mon Sep 17 00:00:00 2001 From: Nikita Tikhonov Date: Sat, 14 Sep 2024 13:13:45 +0300 Subject: [PATCH] Prepare the next release. --- Cargo.toml | 2 +- README.md | 8 ++++---- changelogging.toml | 2 +- examples/CHANGELOG.md | 2 +- pyproject.toml | 2 +- src/context.rs | 2 +- src/lib.rs | 2 +- tests/changelogging.toml | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4620a52..b5909d9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "changelogging" -version = "0.5.0" +version = "0.6.0" authors = ["nekitdev "] edition = "2021" description = "Building changelogs from fragments." diff --git a/README.md b/README.md index 40c6496..d8637d6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ The binaries can be downloaded from [releases][Releases]. ### `pipx` Note: because `changelogging` was originally written in python, releases on PyPI have -different versions: for instance, the `0.5.0` release is on PyPI with version `2.5.0`, +different versions: for instance, the `0.6.0` release is on PyPI with version `2.6.0`, meaning the major part of the version is always incremented twice to get the PyPI one. Installing `changelogging` with `pipx` is quite simple: @@ -75,7 +75,7 @@ Create `changelogging.toml` and add the *name*, *version* and *URL* of the proje ```toml [context] name = "changelogging" -version = "0.5.0" +version = "0.6.0" url = "https://github.com/nekitdev/changelogging" ``` @@ -102,7 +102,7 @@ And finally, preview the changelog entry! ```console $ changelogging preview -## 0.5.0 (YYYY-MM-DD) +## 0.6.0 (YYYY-MM-DD) ### Security @@ -141,7 +141,7 @@ $ cat CHANGELOG.md -## 0.5.0 (YYYY-MM-DD) +## 0.6.0 (YYYY-MM-DD) ### Security diff --git a/changelogging.toml b/changelogging.toml index fe4dafb..8840251 100644 --- a/changelogging.toml +++ b/changelogging.toml @@ -1,6 +1,6 @@ [context] name = "changelogging" -version = "0.5.0" +version = "0.6.0" url = "https://github.com/nekitdev/changelogging" [formats] diff --git a/examples/CHANGELOG.md b/examples/CHANGELOG.md index 158e8dc..b57e505 100644 --- a/examples/CHANGELOG.md +++ b/examples/CHANGELOG.md @@ -2,7 +2,7 @@ -## [0.5.0](https://github.com/nekitdev/changelogging/tree/v0.5.0) (YYYY-MM-DD) +## [0.6.0](https://github.com/nekitdev/changelogging/tree/v0.6.0) (YYYY-MM-DD) ### Features diff --git a/pyproject.toml b/pyproject.toml index 03beaad..293c3cd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "changelogging" -version = "2.5.0" +version = "2.6.0" description = "Building changelogs from fragments." readme = "README.md" requires-python = ">= 3.8" diff --git a/src/context.rs b/src/context.rs index e22d6de..717d872 100644 --- a/src/context.rs +++ b/src/context.rs @@ -13,7 +13,7 @@ //! ```toml //! [context] //! name = "changelogging" -//! version = "0.5.0" +//! version = "0.6.0" //! url = "https://github.com/nekitdev/changelogging" //! ``` //! diff --git a/src/lib.rs b/src/lib.rs index 46f9e30..3a46703 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -108,7 +108,7 @@ //! //! ```console //! $ changelogging preview -//! ## [0.5.0](https://github.com/nekitdev/changelogging/tree/v0.5.0) (YYYY-MM-DD) +//! ## [0.6.0](https://github.com/nekitdev/changelogging/tree/v0.6.0) (YYYY-MM-DD) //! //! ### Features //! diff --git a/tests/changelogging.toml b/tests/changelogging.toml index fe4dafb..8840251 100644 --- a/tests/changelogging.toml +++ b/tests/changelogging.toml @@ -1,6 +1,6 @@ [context] name = "changelogging" -version = "0.5.0" +version = "0.6.0" url = "https://github.com/nekitdev/changelogging" [formats]