From 2349ddbd4b82ce4483ac93742a81957820457ea7 Mon Sep 17 00:00:00 2001 From: eprbell <77937475+eprbell@users.noreply.github.com> Date: Sun, 30 Jun 2024 16:08:42 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.7.0=20=E2=86=92=201.7.1?= 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 97b1079..11b5641 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 1.7.0 +current_version = 1.7.1 [bumpversion:file:setup.cfg] search = version = {current_version} diff --git a/README.dev.md b/README.dev.md index b133340..75eabed 100644 --- a/README.dev.md +++ b/README.dev.md @@ -12,7 +12,7 @@ -# RP2 v1.7.0 Developer Guide +# RP2 v1.7.1 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 2afc386..61110c6 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.7.0 +# RP2 v1.7.1 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 ab449b5..6fb2291 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = rp2 -version = 1.7.0 +version = 1.7.1 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 multiple countries and accounting menthods (FIFO, LIFO, HIFO), it features transparent computation for easy result verification, and it generates reports tax accountants can understand (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 1da4e22..593d776 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.7.0" +_VERSION: str = "1.7.1" _ACCOUNTING_METHOD_PACKAGE = "rp2.plugin.accounting_method"