diff --git a/CHANGELOG.md b/CHANGELOG.md index bd77a80..589d6d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ +## v1.18.1 (2023-05-31) +### Fix + +* **fetch:** Skip malformed realt lines for now ([`3b55c43`](https://github.com/MadeInPierre/finalynx/commit/3b55c4305d2eab2c1c8a7f862be05da4a8426eeb)) + ## v1.18.0 (2023-05-31) ### Feature diff --git a/docs/conf.py b/docs/conf.py index debe999..f9ef3ca 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.18.0" +release = "1.18.1" # -- General configuration --------------------------------------------------- diff --git a/finalynx/__meta__.py b/finalynx/__meta__.py index c8834da..a52068e 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.18.0" +__version__ = "1.18.1" __author__ = "Pierre Laclau (MadeInPierre)" diff --git a/pyproject.toml b/pyproject.toml index f8c76ab..bc441fd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "finalynx" -version = "1.18.0" +version = "1.18.1" description = "A command line investment assistant to organize your portfolio and simulate its future to reach your life goals." authors = ["MadeInPierre "] license = "GPLv3" @@ -51,7 +51,7 @@ build_command = "pip install poetry && poetry build" [tool.commitizen] name = "cz_conventional_commits" -version = "1.18.0" +version = "1.18.1" tag_format = "v$version" [tool.mypy]