diff --git a/CHANGELOG.md b/CHANGELOG.md index 76a4bdf..3df05a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.10.0 (2023-04-27) +### Feature +* **json:** Export & import portfolio ([#53](https://github.com/MadeInPierre/finalynx/issues/53)) ([`4f852fb`](https://github.com/MadeInPierre/finalynx/commit/4f852fba8c365189eada3e3c3b1aa7f38b34805a)) + ## v1.9.0 (2023-04-24) ### Feature * **perf:** Can now set & analyze expected yearly performance ([#51](https://github.com/MadeInPierre/finalynx/issues/51)) ([`44bde0a`](https://github.com/MadeInPierre/finalynx/commit/44bde0af65be001ea3cef101d6ccba37a78d7d57)) diff --git a/docs/conf.py b/docs/conf.py index 1064b19..cafa8b3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = "Pierre Laclau" # The full version, including alpha/beta/rc tags -release = "1.9.0" +release = "1.10.0" # -- General configuration --------------------------------------------------- diff --git a/finalynx/__meta__.py b/finalynx/__meta__.py index 06d16cc..803bcd0 100644 --- a/finalynx/__meta__.py +++ b/finalynx/__meta__.py @@ -6,7 +6,7 @@ Metadata information about Finalynx. This file is used by Fynalinx and updated by the CI/CD pipeline. """ -__version__ = "1.9.0" +__version__ = "1.10.0" __author__ = "Pierre Laclau (MadeInPierre)" diff --git a/pyproject.toml b/pyproject.toml index 03f00f1..0505f61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "finalynx" -version = "1.9.0" +version = "1.10.0" description = "A command line investment assistant to organize your portfolio and simulate its future to reach your life goals." authors = ["MadeInPierre "] license = "GPLv3" @@ -52,7 +52,7 @@ build_command = "pip install poetry && poetry build" [tool.commitizen] name = "cz_conventional_commits" -version = "1.9.0" +version = "1.10.0" tag_format = "v$version" [tool.mypy]