Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
smnorris committed Jun 28, 2024
1 parent 40f73e5 commit 19d793f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion bcdata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"https://raw.githubusercontent.com/smnorris/bcdata/main/data/primary_keys.json"
)

__version__ = "0.10.4dev0"
__version__ = "0.10.5dev0"
3 changes: 2 additions & 1 deletion bcdata/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 19d793f

Please sign in to comment.