From 52a13aafeff577964c460f931ccdcb586b20e572 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 22 Nov 2024 12:55:24 -0600 Subject: [PATCH 1/2] fix: allow download of NB donation records --- tailbone_nationbuilder/views/nationbuilder/donations.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tailbone_nationbuilder/views/nationbuilder/donations.py b/tailbone_nationbuilder/views/nationbuilder/donations.py index 3187b85..d179ca3 100644 --- a/tailbone_nationbuilder/views/nationbuilder/donations.py +++ b/tailbone_nationbuilder/views/nationbuilder/donations.py @@ -2,7 +2,7 @@ ################################################################################ # # Rattail -- Retail Software Framework -# Copyright © 2010-2023 Lance Edgar +# Copyright © 2010-2024 Lance Edgar # # This file is part of Rattail. # @@ -38,6 +38,7 @@ class NationBuilderCacheDonationView(NationBuilderMasterView): route_prefix = 'nationbuilder.cache.donations' supports_grid_totals = True has_versions = True + results_downloadable = True labels = { 'id': "ID", From 0347a6e60c53d600b2dedaa4dcff946ff68337a1 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 22 Nov 2024 12:56:04 -0600 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.2.0=20=E2=86=92=200.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df59b18..dc3b3b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to tailbone-nationbuilder will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## v0.2.1 (2024-11-22) + +### Fix + +- allow download of NB donation records + ## v0.2.0 (2024-06-11) ### Feat diff --git a/pyproject.toml b/pyproject.toml index ae2fa02..f2a377a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "tailbone-nationbuilder" -version = "0.2.0" +version = "0.2.1" description = "Tailbone integration package for NationBuilder" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]