Compare commits

..

2 Commits

Author SHA1 Message Date
Shawn Davis b8e0c11ceb Added pgsql command for executing raw SQL. 5 months ago
Shawn Davis 9c24c8b5d1 Bumped version. 5 months ago
  1. 2
      RELEASE.txt
  2. 2
      VERSION.txt
  3. 3
      scripttease/lib/commands/pgsql.py
  4. 4
      scripttease/version.py

@ -1 +1 @@
7.1.5-a 7.1.6-a

@ -1 +1 @@
7.1.5 7.1.6

@ -57,7 +57,8 @@ def pgsql(command, *args, excluded_kwargs=None, host="localhost", password=None,
a = list() a = list()
if password is not None: # Password may be None or an empty string.
if password:
a.append('export PGPASSWORD="%s" &&' % password) a.append('export PGPASSWORD="%s" &&' % password)
a.append(command) a.append(command)

@ -1,7 +1,7 @@
DATE = "2024-04-11" DATE = "2024-04-11"
VERSION = "7.1.5" VERSION = "7.1.6"
MAJOR = 7 MAJOR = 7
MINOR = 1 MINOR = 1
PATCH = 5 PATCH = 6
STATUS = "a" STATUS = "a"

Loading…
Cancel
Save