diff --git a/CHANGELOG.md b/CHANGELOG.md index 14be1c1..f20406f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ +## v1.4.2 (2023-03-22) +### Fix +* **fetch:** Add support for id differentiation ([`4f830b8`](https://github.com/MadeInPierre/finalynx/commit/4f830b86f822c37bfa815b302689beaff2133f8b)) + ## v1.4.1 (2023-03-22) ### Fix * **fetch:** Ask to reuse credentials if already saved ([`df8bec1`](https://github.com/MadeInPierre/finalynx/commit/df8bec1054daa19fe1e96f55849713977a9750a8)) diff --git a/docs/conf.py b/docs/conf.py index 0ae070a..746d136 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.4.1" +release = "1.4.2" # -- General configuration --------------------------------------------------- diff --git a/finalynx/__meta__.py b/finalynx/__meta__.py index c8b63de..10d4976 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.4.1" +__version__ = "1.4.2" __author__ = "Pierre Laclau (MadeInPierre)" diff --git a/pyproject.toml b/pyproject.toml index fcf36f8..62650fb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "finalynx" -version = "1.4.1" +version = "1.4.2" 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.4.1" +version = "1.4.2" tag_format = "v$version" [tool.mypy]