From 3bfc5b919075205bc72b64d40ffd64a13dcd41b7 Mon Sep 17 00:00:00 2001 From: eprbell <77937475+eprbell@users.noreply.github.com> Date: Tue, 18 Jun 2024 20:25:58 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.5.1=20=E2=86=92=201.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.dev.md | 2 +- README.md | 2 +- setup.cfg | 2 +- src/rp2/rp2_main.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 700e076..15c6619 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.5.1 +current_version = 1.6.0 [bumpversion:file:setup.cfg] search = version = {current_version} diff --git a/README.dev.md b/README.dev.md index c22b2f4..c3fc3bf 100644 --- a/README.dev.md +++ b/README.dev.md @@ -12,7 +12,7 @@ -# RP2 v1.5.1 Developer Guide +# RP2 v1.6.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 2592e06..b93bcf1 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.5.1 +# RP2 v1.6.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 b67c1f4..c30f7ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = rp2 -version = 1.5.1 +version = 1.6.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, LIFO and HIFO accounting methods, 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 1b67fcb..3c69724 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.5.1" +_VERSION: str = "1.6.0" _ACCOUNTING_METHOD_PACKAGE = "rp2.plugin.accounting_method"