Skip to content

Commit

Permalink
chore(release): 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Dec 15, 2023
1 parent 38e9d7c commit 6cde103
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
# Release Notes
---

# [0.2.0](https://github.com/osl-incubator/envers/compare/0.1.0...0.2.0) (2023-12-15)


### Bug Fixes

* Fix release workflow ([#5](https://github.com/osl-incubator/envers/issues/5)) ([8ba1407](https://github.com/osl-incubator/envers/commit/8ba1407ea27fb6e1a8712608f7f8af4ee1850475))
* Fix release workflow ([#6](https://github.com/osl-incubator/envers/issues/6)) ([38e9d7c](https://github.com/osl-incubator/envers/commit/38e9d7c5ce45a83f6d50bdc9e98fcb76b6a34caf))


### Features

* Implement option for passing password as a stdin ([#4](https://github.com/osl-incubator/envers/issues/4)) ([4ab5ba8](https://github.com/osl-incubator/envers/commit/4ab5ba8ee54e98b6f580dbd3f7659af77e9a72c3))
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "envers"
version = "0.1.0" # semantic-release
version = "0.2.0" # semantic-release
description = "Envers is a tool for handling environment files (e.g. .env) for multiple kind of environments with versioning"
authors = ["Ivan Ogasawara <ivan.ogasawara@gmail.com>"]
packages = [
Expand Down
2 changes: 1 addition & 1 deletion src/envers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def get_version() -> str:
try:
return importlib_metadata.version(__name__)
except importlib_metadata.PackageNotFoundError: # pragma: no cover
return "0.1.0" # semantic-release
return "0.2.0" # semantic-release


version = get_version()
Expand Down

0 comments on commit 6cde103

Please sign in to comment.