diff --git a/README.md b/README.md index e2d0ac28..74c8a1d5 100644 --- a/README.md +++ b/README.md @@ -105,11 +105,14 @@ Tested with - **Python:** 3.10, **Django:** 4.2 (latest) - **Python:** 2.7, **Django:** 1.11 (legacy) - use testsite/requirements-legacy.txt -0.20.1 - - * uses Django formats to localize money and dates (renamed `|short_date`) - * uses same template context for e-mail and PDF charge receipts - * prevents deleted subscribers to show in subscribers API results - * fixes 500 when balance due on a one-time charge +0.20.2 + + * matches period_sales_report notification context to API format + * supports queryset and list in TypeaheadPagination + * makes profile redirect page consistent with deployutils + * adds contact info in CSV downloads + * adds feature flag for group buy functionality + * handles alpha channel properly in profile pictures (UI) + * attaches error message to input field or toplevel - not both (UI) [previous release notes](changelog) diff --git a/changelog b/changelog index 346cf37f..e2d69bd6 100644 --- a/changelog +++ b/changelog @@ -8,7 +8,7 @@ Roadmap 1.0 - * completes documentation of new features in 0.19 + * completes documentation of new features in 0.20 (initially we anticipated to support Vue3 but there are so many features in Vue2 that lead us to pick Vue from a front-end UI framework, and that @@ -17,6 +17,18 @@ Roadmap Released versions ================= +0.20.2 + + * matches period_sales_report notification context to API format + * supports queryset and list in TypeaheadPagination + * makes profile redirect page consistent with deployutils + * adds contact info in CSV downloads + * adds feature flag for group buy functionality + * handles alpha channel properly in profile pictures (UI) + * attaches error message to input field or toplevel - not both (UI) + + -- Sebastien Mirolo Fri, 12 Apr 2024 16:00:00 -0700 + 0.20.1 * uses Django formats to localize money and dates (renamed `|short_date`) diff --git a/docs/conf.py b/docs/conf.py index c80c5728..ffa05616 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.2-dev' +release = '0.20.2' # 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 76c8829b..75bb2ea6 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.2-dev' +__version__ = '0.20.2'