Skip to content

Commit

Permalink
Version bump to 3.3.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Mar 11, 2023
1 parent b9a23a7 commit c9ba227
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 3.2.1 (unreleased)
## 3.3.0 (2023-03-11)

- Improved handling of lock timeouts
- Improved syntax highlighting
Expand Down
1 change: 1 addition & 0 deletions guides/Permissions.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ CREATE VIEW pghero.pg_stats AS SELECT * FROM pghero.pg_stats();
CREATE ROLE pghero WITH LOGIN ENCRYPTED PASSWORD 'secret';
GRANT CONNECT ON DATABASE <dbname> TO pghero;
ALTER ROLE pghero SET search_path = pghero, pg_catalog, public;
ALTER ROLE pghero SET lock_timeout = '1s';
GRANT USAGE ON SCHEMA pghero TO pghero;
GRANT SELECT ON ALL TABLES IN SCHEMA pghero TO pghero;

Expand Down
2 changes: 1 addition & 1 deletion lib/pghero/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PgHero
VERSION = "3.2.0"
VERSION = "3.3.0"
end

0 comments on commit c9ba227

Please sign in to comment.