diff --git a/CHANGELOG.md b/CHANGELOG.md index 168f84e..6f2f156 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.1.0 (2023-03-05) +### Feature +* **fetch:** Add real estate support ([#24](https://github.com/MadeInPierre/finalynx/issues/24)) ([`d973fc0`](https://github.com/MadeInPierre/finalynx/commit/d973fc025eeeafc67b11089987b45d73272389b5)) + ## v1.0.1 (2023-03-04) ### Fix * **dependencies:** Added unidecode and numpy dependencies ([`7574eae`](https://github.com/MadeInPierre/finalynx/commit/7574eae6261a3fdd6650c28bd3f530ae1d2d2026)) diff --git a/finalynx/__meta__.py b/finalynx/__meta__.py index 716aa11..7d97258 100644 --- a/finalynx/__meta__.py +++ b/finalynx/__meta__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.1" +__version__ = "1.1.0" __author__ = "Pierre Laclau (MadeInPierre)" diff --git a/pyproject.toml b/pyproject.toml index 02c7614..ae523b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "finalynx" -version = "1.0.1" +version = "1.1.0" description = "A command line investment assistant to organize your portfolio and simulate its future to reach your life goals." authors = ["MadeInPierre "] license = "GPLv3" @@ -41,5 +41,5 @@ build_command = "pip install poetry && poetry build" [tool.commitizen] name = "cz_conventional_commits" -version = "1.0.1" +version = "1.1.0" tag_format = "v$version"