Skip to content

Commit

Permalink
Update ChangeLog and version to 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
darold committed Aug 22, 2022
1 parent 0c272db commit af9dd0c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Tue Aug 22 2022 - Version 1.4.0

This release is maintenance release to fix two major issues.

- Fix function dbms_job.interval() that was not using dybnamic SQL
for the UPDATE statement. Thanks to Eric-zch for the report.
- Fix installation of extension's update files that was not copied
in the right place.

Tue Aug 16 2022 - Version 1.3.0

This release is maintenance release since last release to fix issues
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ Each database that needs to use `pg_dbms_job` must creates the extension:

To upgrade to a new version execute:

psql -d mydb -c 'ALTER EXTENSION pg_dbms_job UPDATE TO "1.3.0"'
psql -d mydb -c 'ALTER EXTENSION pg_dbms_job UPDATE TO "1.4.0"'

If you doesn't have the privileges to create an extension you can just import the extension file into the database, for example:

psql -d mydb -f sql/pg_dbms_job--1.3.0.sql
psql -d mydb -f sql/pg_dbms_job--1.4.0.sql

This is especially useful for database in DBaas cloud services. To upgrade just import the extension upgrade files using psql.

Expand Down

0 comments on commit af9dd0c

Please sign in to comment.