From 7e3b1f67f86c5436e59617025e3c63da3575f87b Mon Sep 17 00:00:00 2001 From: Sebastien Mirolo Date: Wed, 1 May 2024 16:30:40 -0700 Subject: [PATCH] releases 0.20.4 to pypi --- README.md | 9 ++++----- changelog | 8 ++++++++ docs/conf.py | 2 +- saas/__init__.py | 2 +- 4 files changed, 14 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7e4d5c14..dbdbaa5b 100644 --- a/README.md +++ b/README.md @@ -105,11 +105,10 @@ Tested with - **Python:** 3.10, **Django:** 4.2 (latest) - **Python:** 2.7, **Django:** 1.11 (legacy) - use testsite/requirements-legacy.txt -0.20.3 +0.20.4 - * adds back `created_at` in registered-not-subscribed API - * uses db router for lifetime and balances-due APIs - * fixes bad refactoring of balance sheet API - * restores group buy checkbox as default option + * accounts for upper/lower case email during group buy + * enables filter by provider in /api/pricing + * removes b'' marker in downloads while being py27-compatible [previous release notes](changelog) diff --git a/changelog b/changelog index 4ff79a74..9310e06f 100644 --- a/changelog +++ b/changelog @@ -17,6 +17,14 @@ Roadmap Released versions ================= +0.20.4 + + * accounts for upper/lower case email during group buy + * enables filter by provider in /api/pricing + * removes b'' marker in downloads while being py27-compatible + + -- Sebastien Mirolo Wed, 1 May 2024 16:25:00 -0700 + 0.20.3 * adds back `created_at` in registered-not-subscribed API diff --git a/docs/conf.py b/docs/conf.py index 6747c774..3c76713d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -63,7 +63,7 @@ # The short X.Y version. version = '0.20' # The full version, including alpha/beta/rc tags. -release = '0.20.4-dev' +release = '0.20.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/saas/__init__.py b/saas/__init__.py index 112424f3..ab0d910f 100644 --- a/saas/__init__.py +++ b/saas/__init__.py @@ -26,4 +26,4 @@ PEP 386-compliant version number for the saas django app. """ -__version__ = '0.20.4-dev' +__version__ = '0.20.4'