From ddfc48303d0a13c41088e4e8984c1d5e1209d704 Mon Sep 17 00:00:00 2001 From: eprbell <77937475+eprbell@users.noreply.github.com> Date: Sun, 6 Mar 2022 18:00:36 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.9.17=20=E2=86=92=200.9.18?= 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/configuration.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 90c67240..a50988fa 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = True tag = True -current_version = 0.9.17 +current_version = 0.9.18 [bumpversion:file:setup.cfg] search = version = {current_version} diff --git a/README.dev.md b/README.dev.md index 7462f56d..d1192b26 100644 --- a/README.dev.md +++ b/README.dev.md @@ -12,7 +12,7 @@ -# RP2 v0.9.17 Developer Guide +# RP2 v0.9.18 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 177d0750..0cd0db2e 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ -# RP2 v0.9.17 +# RP2 v0.9.18 [![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/setup.cfg b/setup.cfg index d61764e9..11812eab 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = rp2 -version = 0.9.17 +version = 0.9.18 description = Privacy-focused, free, open-source cryptocurrency US tax calculator, up to date for fiscal year 2021: it handles multiple coins/exchanges and computes long/short-term capital gains, cost bases, in/out lot relationships/fractioning, and account balances. It supports FIFO and LIFO and it generates data that tax accountants can understand, even if they are not cryptocurrency experts (e.g. form 8949). long_description_content_type = text/markdown long_description = file: README.md, CHANGELOG.md diff --git a/src/rp2/configuration.py b/src/rp2/configuration.py index b9bfeb28..4fbc6fe1 100644 --- a/src/rp2/configuration.py +++ b/src/rp2/configuration.py @@ -25,7 +25,7 @@ from rp2.rp2_decimal import ZERO, RP2Decimal from rp2.rp2_error import RP2TypeError, RP2ValueError -VERSION: str = "0.9.17" +VERSION: str = "0.9.18" MIN_DATE: date = date(1970, 1, 1) MAX_DATE: date = date(9999, 12, 31)