Skip to content

Commit 441219d

Browse files
committed
Bump to 1.0.0
1 parent 73557cd commit 441219d

3 files changed

Lines changed: 26 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,34 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
1010
## [Unreleased]
1111
12-
No feature in this release, just focusing on quality and code cleanliness.
12+
### Added
1313
1414
### Changed
1515
16-
- Test coverage reaches 80%
17-
- Mkdocs version bumped to `mkdocs>=1.1,<1.4`
16+
### Removed
1817
1918
-->
2019

20+
## 1.0.0 - 2022-03-31
21+
22+
First stable release according to semver.
23+
So, no feature in this release, just focusing on quality and code cleanliness.
24+
25+
### Added
26+
27+
- Unit tests to reach a 80% coverage score
28+
29+
### Changed
30+
31+
- Supported Mkdocs versions range increased to `mkdocs>=1.1,<1.4`
32+
33+
### Fixed
34+
35+
- Minor bugs fixes
36+
- Minor documentation improvments
37+
38+
----
39+
2140
## 0.21.0 - 2022-02-10
2241

2342
### Added

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,5 +86,6 @@ Then follow the [contribution guidelines](CONTRIBUTING.md).
8686
## Release workflow
8787

8888
1. Fill the `CHANGELOG.md`
89-
2. Apply a git tag with the relevant version: `git tag -a 0.3.0 {git commit hash} -m "New awesome feature"`
90-
3. Push tag to main branch: `git push origin 0.3.0`
89+
1. Change the version number in `__about__.py`
90+
1. Apply a git tag with the relevant version: `git tag -a 0.3.0 {git commit hash} -m "New awesome feature"`
91+
1. Push tag to main branch: `git push origin 0.3.0`

mkdocs_rss_plugin/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
__title_clean__ = "".join(e for e in __title__ if e.isalnum())
4141
__uri__ = "https://github.com/Guts/mkdocs-rss-plugin/"
4242

43-
__version__ = "0.21.0"
43+
__version__ = "1.0.0"
4444
__version_info__ = tuple(
4545
[
4646
int(num) if num.isdigit() else num

0 commit comments

Comments
 (0)