Skip to content

Commit

Permalink
bump to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
steve-chavez committed Sep 6, 2022
1 parent 824b163 commit f7f00c1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
EXTENSION = pg_net
EXTVERSION = 0.2
EXTVERSION = 0.5.1

DATA = $(wildcard sql/*--*.sql)

Expand Down
2 changes: 1 addition & 1 deletion pg_net.control
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
comment = 'Async HTTP'
default_version = '0.2'
default_version = '0.5.1'
relocatable = false
1 change: 1 addition & 0 deletions sql/pg_net--0.5.0--0.5.1.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- noop
2 changes: 1 addition & 1 deletion src/worker.c
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ void _PG_init(void) {
bgw.bgw_start_time = BgWorkerStart_RecoveryFinished;
snprintf(bgw.bgw_library_name, BGW_MAXLEN, "pg_net");
snprintf(bgw.bgw_function_name, BGW_MAXLEN, "worker_main");
snprintf(bgw.bgw_name, BGW_MAXLEN, "pg_net worker");
snprintf(bgw.bgw_name, BGW_MAXLEN, "pg_net 0.5.1 worker");
bgw.bgw_restart_time = 10;
RegisterBackgroundWorker(&bgw);
}

0 comments on commit f7f00c1

Please sign in to comment.