From 9b1f61065e3f0ac3931fa7e54c00a3f421753a8a Mon Sep 17 00:00:00 2001 From: Bryan Sieber Date: Fri, 21 May 2021 15:18:56 -0700 Subject: [PATCH 1/2] Pushing HF for column names --- ctms/acoustic_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ctms/acoustic_service.py b/ctms/acoustic_service.py index 529bf175..0bc72a23 100644 --- a/ctms/acoustic_service.py +++ b/ctms/acoustic_service.py @@ -236,10 +236,10 @@ def _newsletter_converter(self, acoustic_main_table, contact): if newsletter.name in AcousticResources.MAIN_TABLE_SUBSCR_FLAGS.keys(): newsletter_dict = newsletter.dict() _today = datetime.date.today().isoformat() - newsletter_template["create_date"] = self.dictionary_helper( + newsletter_template["create_timestamp"] = self.dictionary_helper( newsletter_dict, "create_timestamp", _today ) - newsletter_template["update_date"] = self.dictionary_helper( + newsletter_template["update_timestamp"] = self.dictionary_helper( newsletter_dict, "update_timestamp", _today ) newsletter_template["newsletter_name"] = newsletter.name From e9391f6c969cb5a96a0dc33e21fad7a9fa935ed4 Mon Sep 17 00:00:00 2001 From: Bryan Sieber Date: Fri, 21 May 2021 15:26:41 -0700 Subject: [PATCH 2/2] vb .2-.3 --- ctms/app.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ctms/app.py b/ctms/app.py index 5142a1a3..6e304770 100644 --- a/ctms/app.py +++ b/ctms/app.py @@ -74,7 +74,7 @@ app = FastAPI( title="ConTact Management System (CTMS)", description="CTMS API (work in progress)", - version="0.8.2", + version="0.8.3", ) SessionLocal = None METRICS_REGISTRY = CollectorRegistry() diff --git a/pyproject.toml b/pyproject.toml index 1933e158..05956653 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.masonry.api" [tool.poetry] name = "ctms" -version = "0.8.2" +version = "0.8.3" description = "Contact Management System API" authors = [ "Brian Stack ",