diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3d68f36..aadd08e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.4.2 +current_version = 1.5.0 [bumpversion:file:setup.cfg] search = version = {current_version} diff --git a/README.dev.md b/README.dev.md index 810d917..b2950a8 100644 --- a/README.dev.md +++ b/README.dev.md @@ -12,7 +12,7 @@ -# RP2 v1.4.2 Developer Guide +# RP2 v1.5.0 Developer Guide [![Static Analysis / Main Branch](https://github.com/eprbell/rp2/actions/workflows/static_analysis.yml/badge.svg)](https://github.com/eprbell/rp2/actions/workflows/static_analysis.yml) [![Documentation Check / Main Branch](https://github.com/eprbell/rp2/actions/workflows/documentation_check.yml/badge.svg)](https://github.com/eprbell/rp2/actions/workflows/documentation_check.yml) [![Unix Unit Tests / Main Branch](https://github.com/eprbell/rp2/actions/workflows/unix_unit_tests.yml/badge.svg)](https://github.com/eprbell/rp2/actions/workflows/unix_unit_tests.yml) diff --git a/README.md b/README.md index 6232f74..351665b 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ ![RP2 Logo](https://raw.githubusercontent.com/eprbell/rp2/main/docs/images/rp2_header.png) -# RP2 v1.4.2 +# RP2 v1.5.0 Privacy-focused, free, powerful crypto tax calculator [![Static Analysis / Main Branch](https://github.com/eprbell/rp2/actions/workflows/static_analysis.yml/badge.svg)](https://github.com/eprbell/rp2/actions/workflows/static_analysis.yml) diff --git a/setup.cfg b/setup.cfg index 654aceb..f43978a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = rp2 -version = 1.4.2 +version = 1.5.0 description = Privacy-focused, free, non-commercial, open-source, community-driven cryptocurrency tax calculator: it handles multiple coins/exchanges and computes long/short-term capital gains, cost bases, in/out lot relationships/fractioning, and account balances. It supports the FIFO accounting method, it features transparent computation for easy result verification, and it generates reports that tax accountants can understand, even if they are not cryptocurrency experts (e.g. form 8949). long_description_content_type = text/markdown diff --git a/src/rp2/rp2_main.py b/src/rp2/rp2_main.py index 6f0927e..6e50723 100644 --- a/src/rp2/rp2_main.py +++ b/src/rp2/rp2_main.py @@ -42,7 +42,7 @@ from rp2.ods_parser import open_ods, parse_ods from rp2.tax_engine import compute_tax -_VERSION: str = "1.4.2" +_VERSION: str = "1.5.0" _ACCOUNTING_METHOD_PACKAGE = "rp2.plugin.accounting_method"