Skip to content

Commit 9747394

Browse files
chore(release): 0.4.1
1 parent 2a85543 commit 9747394

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

docs/changelog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Release Notes
22
---
33

4+
## [0.4.1](https://github.com/osl-incubator/envers/compare/0.4.0...0.4.1) (2024-09-28)
5+
6+
7+
### Bug Fixes
8+
9+
* Update project structure and configuration ([#20](https://github.com/osl-incubator/envers/issues/20)) ([2a85543](https://github.com/osl-incubator/envers/commit/2a85543f09923d273bde7627a208e87d25c326e3))
10+
411
# [0.4.0](https://github.com/osl-incubator/envers/compare/0.3.0...0.4.0) (2023-12-23)
512

613

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "envers"
3-
version = "0.4.0" # semantic-release
3+
version = "0.4.1" # semantic-release
44
description = "Envers is a tool for handling environment files (e.g. .env) for multiple kind of environments with versioning"
55
authors = ["Ivan Ogasawara <[email protected]>"]
66
packages = [

src/envers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def get_version() -> str:
1111
try:
1212
return importlib_metadata.version(__name__)
1313
except importlib_metadata.PackageNotFoundError: # pragma: no cover
14-
return "0.4.0" # semantic-release
14+
return "0.4.1" # semantic-release
1515

1616

1717
version = get_version()

0 commit comments

Comments
 (0)