Skip to content

Commit

Permalink
Bump version for release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
WyvernIXTL committed Jun 4, 2024
1 parent 86b2500 commit 6919237
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed


## [0.3.0] - 2024-06-04

### Added

* Added schema validation when reading in config. (Before it was only validated when rendering the template.)
* Added parse function `parse_schema` to `InstallationInstruction` for
[web-installation-instruction](https://github.com/instructions-d-installation/web-installation-instruction)
project.
* Added documentation for release procedure.


## [0.2.0] - 2024-05-30

### Added
Expand Down Expand Up @@ -59,7 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Added contributors.


[unreleased]: https://github.com/instructions-d-installation/installation-instruction/compare/v0.2.0...HEAD
[unreleased]: https://github.com/instructions-d-installation/installation-instruction/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/instructions-d-installation/installation-instruction/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/instructions-d-installation/installation-instruction/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/instructions-d-installation/installation-instruction/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/instructions-d-installation/installation-instruction/releases/tag/v0.1.0
10 changes: 6 additions & 4 deletions doc/release_workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

1. Goto ``pyproject.toml`` and bump the version.
2. Goto ``CHANGELOG.md`` and bump the version.
3. Add a tag ``git tag -s 'vX.Y.Z' -m 'Release vX.Y.Z'``.
4. Push tag ``git push origin vX.Y.Z``.
5. Goto [Releases] and ``Draft new release``.
6. Add changelog to release and create the new release.
3. `git add *`
4. `git commit -S -m "Bump version for release vX.Y.Z"`
5. Add a tag ``git tag -s 'vX.Y.Z' -m 'Release vX.Y.Z'``.
6. Push tag ``git push origin vX.Y.Z``.
7. Goto [Releases] and ``Draft new release``.
8. Add changelog to release and create the new release.

[Releases]: https://github.com/instructions-d-installation/installation-instruction/releases
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ authors = [
{ name = "Kanushka Gupta" },
{ name = "Timo Ege", email = "[email protected]" },
]
version = "0.2.0"
version = "0.3.0"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
classifiers = [
Expand Down

0 comments on commit 6919237

Please sign in to comment.