From 441219d9d6b3849c04cad1b007f8eb034938fb07 Mon Sep 17 00:00:00 2001 From: GeoJulien Date: Thu, 31 Mar 2022 10:32:09 +0200 Subject: [PATCH] Bump to 1.0.0 --- CHANGELOG.md | 25 ++++++++++++++++++++++--- README.md | 5 +++-- mkdocs_rss_plugin/__about__.py | 2 +- 3 files changed, 26 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f019adad..380dab6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,15 +9,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -No feature in this release, just focusing on quality and code cleanliness. +### Added ### Changed -- Test coverage reaches 80% -- Mkdocs version bumped to `mkdocs>=1.1,<1.4` +### Removed --> +## 1.0.0 - 2022-03-31 + +First stable release according to semver. +So, no feature in this release, just focusing on quality and code cleanliness. + +### Added + +- Unit tests to reach a 80% coverage score + +### Changed + +- Supported Mkdocs versions range increased to `mkdocs>=1.1,<1.4` + +### Fixed + +- Minor bugs fixes +- Minor documentation improvments + +---- + ## 0.21.0 - 2022-02-10 ### Added diff --git a/README.md b/README.md index 29cd839c..bc9d1b8a 100644 --- a/README.md +++ b/README.md @@ -86,5 +86,6 @@ Then follow the [contribution guidelines](CONTRIBUTING.md). ## Release workflow 1. Fill the `CHANGELOG.md` -2. Apply a git tag with the relevant version: `git tag -a 0.3.0 {git commit hash} -m "New awesome feature"` -3. Push tag to main branch: `git push origin 0.3.0` +1. Change the version number in `__about__.py` +1. Apply a git tag with the relevant version: `git tag -a 0.3.0 {git commit hash} -m "New awesome feature"` +1. Push tag to main branch: `git push origin 0.3.0` diff --git a/mkdocs_rss_plugin/__about__.py b/mkdocs_rss_plugin/__about__.py index db2abfc0..6153d2ed 100644 --- a/mkdocs_rss_plugin/__about__.py +++ b/mkdocs_rss_plugin/__about__.py @@ -40,7 +40,7 @@ __title_clean__ = "".join(e for e in __title__ if e.isalnum()) __uri__ = "https://github.com/Guts/mkdocs-rss-plugin/" -__version__ = "0.21.0" +__version__ = "1.0.0" __version_info__ = tuple( [ int(num) if num.isdigit() else num