Skip to content

Commit

Permalink
Bump to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Mar 31, 2022
1 parent 73557cd commit 441219d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
25 changes: 22 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
2 changes: 1 addition & 1 deletion mkdocs_rss_plugin/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 441219d

Please sign in to comment.