From 19d793f8dcee50eb5f76de7a48957caa188b2d2d Mon Sep 17 00:00:00 2001 From: Simon Norris Date: Fri, 28 Jun 2024 16:01:36 -0700 Subject: [PATCH] bump version --- CHANGES.txt | 6 +++++- bcdata/__init__.py | 2 +- bcdata/cli.py | 3 ++- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 6662716..b377b63 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,9 +1,13 @@ Changes ======= -0.10.4 () +0.10.5 () ------------------ +0.10.4 (2024-06-28) +------------------ +- bc2pg - enable --no_timestamp on --refresh + 0.10.3 (2024-06-28) ------------------ - bc2pg - fix logging error on data refresh (#184) diff --git a/bcdata/__init__.py b/bcdata/__init__.py index c5872ba..859ca13 100644 --- a/bcdata/__init__.py +++ b/bcdata/__init__.py @@ -15,4 +15,4 @@ "https://raw.githubusercontent.com/smnorris/bcdata/main/data/primary_keys.json" ) -__version__ = "0.10.4dev0" +__version__ = "0.10.5dev0" diff --git a/bcdata/cli.py b/bcdata/cli.py index f57e4b3..d8cc7ac 100644 --- a/bcdata/cli.py +++ b/bcdata/cli.py @@ -438,7 +438,8 @@ def bc2pg( s, table = out_table.split(".") db.refresh(schema_target, table) out_table = schema_target + "." + table - db.log(schema_target, table) + if timestamp: + db.log(schema_target, table) # do not notify of data load completion when no data load has occured if not schema_only: