Skip to content

Commit

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

# [0.4.0](https://github.com/osl-incubator/envers/compare/0.3.0...0.4.0) (2023-12-23)


### Features

* Add step for password confirmation for the deploy command ([#15](https://github.com/osl-incubator/envers/issues/15)) ([72c270e](https://github.com/osl-incubator/envers/commit/72c270ef4741fac93e60300f6866b607f8771447))
* **cli:** Implement --version flag to CLI ([#11](https://github.com/osl-incubator/envers/issues/11)) ([5fd7a68](https://github.com/osl-incubator/envers/commit/5fd7a685282e0e5750b209a1206272d3d99dc391))

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


Expand Down
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.3.0" # semantic-release
version = "0.4.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 <[email protected]>"]
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.3.0" # semantic-release
return "0.4.0" # semantic-release


version = get_version()
Expand Down

0 comments on commit a7c63fe

Please sign in to comment.