From 69e397ff8436c859b4afcae92b59d7aa3eae43a7 Mon Sep 17 00:00:00 2001 From: crazy-max Date: Tue, 30 May 2017 12:05:22 +0200 Subject: [PATCH] New bundles : 9.2.21, 9.3.17, 9.4.12, 9.5.7, 9.6.3 (Issue crazy-max/neard#268) --- CHANGELOG.md | 8 ++++-- bin/postgresql9.2.21/init.bat | 5 ++++ bin/postgresql9.2.21/neard.conf | 14 ++++++++++ bin/postgresql9.2.21/pg_hba.conf.nrd | 2 ++ bin/postgresql9.2.21/postgresql.conf.nrd | 35 ++++++++++++++++++++++++ bin/postgresql9.3.17/init.bat | 5 ++++ bin/postgresql9.3.17/neard.conf | 14 ++++++++++ bin/postgresql9.3.17/pg_hba.conf.nrd | 2 ++ bin/postgresql9.3.17/postgresql.conf.nrd | 35 ++++++++++++++++++++++++ bin/postgresql9.4.12/init.bat | 5 ++++ bin/postgresql9.4.12/neard.conf | 14 ++++++++++ bin/postgresql9.4.12/pg_hba.conf.nrd | 2 ++ bin/postgresql9.4.12/postgresql.conf.nrd | 35 ++++++++++++++++++++++++ bin/postgresql9.5.7/init.bat | 5 ++++ bin/postgresql9.5.7/neard.conf | 14 ++++++++++ bin/postgresql9.5.7/pg_hba.conf.nrd | 2 ++ bin/postgresql9.5.7/postgresql.conf.nrd | 35 ++++++++++++++++++++++++ bin/postgresql9.6.3/init.bat | 5 ++++ bin/postgresql9.6.3/neard.conf | 14 ++++++++++ bin/postgresql9.6.3/pg_hba.conf.nrd | 2 ++ bin/postgresql9.6.3/postgresql.conf.nrd | 35 ++++++++++++++++++++++++ build.properties | 2 +- releases.properties | 5 ++++ 23 files changed, 292 insertions(+), 3 deletions(-) create mode 100644 bin/postgresql9.2.21/init.bat create mode 100644 bin/postgresql9.2.21/neard.conf create mode 100644 bin/postgresql9.2.21/pg_hba.conf.nrd create mode 100644 bin/postgresql9.2.21/postgresql.conf.nrd create mode 100644 bin/postgresql9.3.17/init.bat create mode 100644 bin/postgresql9.3.17/neard.conf create mode 100644 bin/postgresql9.3.17/pg_hba.conf.nrd create mode 100644 bin/postgresql9.3.17/postgresql.conf.nrd create mode 100644 bin/postgresql9.4.12/init.bat create mode 100644 bin/postgresql9.4.12/neard.conf create mode 100644 bin/postgresql9.4.12/pg_hba.conf.nrd create mode 100644 bin/postgresql9.4.12/postgresql.conf.nrd create mode 100644 bin/postgresql9.5.7/init.bat create mode 100644 bin/postgresql9.5.7/neard.conf create mode 100644 bin/postgresql9.5.7/pg_hba.conf.nrd create mode 100644 bin/postgresql9.5.7/postgresql.conf.nrd create mode 100644 bin/postgresql9.6.3/init.bat create mode 100644 bin/postgresql9.6.3/neard.conf create mode 100644 bin/postgresql9.6.3/pg_hba.conf.nrd create mode 100644 bin/postgresql9.6.3/postgresql.conf.nrd diff --git a/CHANGELOG.md b/CHANGELOG.md index cce1916..9013fdc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,13 @@ # Changelog +## r3 (2017/05/30) + +* New bundles : 9.2.21, 9.3.17, 9.4.12, 9.5.7, 9.6.3 (Issue crazy-max/neard#268) + ## r2 (2016/12/01) -* New bundles : 9.1.24, 9.2.19, 9.3.15, 9.4.10, 9.5.5, 9.6.1 +* New bundles : 9.1.24, 9.2.19, 9.3.15, 9.4.10, 9.5.5, 9.6.1 (Issue crazy-max/neard#176) ## r1 (2016/10/12) -* Init repo with PostgreSQL 9.1.22, 9.2.17, 9.3.13, 9.4.8, 9.5.3, 9.6.0 +* Init repo with PostgreSQL 9.1.22, 9.2.17, 9.3.13, 9.4.8, 9.5.3, 9.6.0 (Issue crazy-max/neard#119) diff --git a/bin/postgresql9.2.21/init.bat b/bin/postgresql9.2.21/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql9.2.21/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql9.2.21/neard.conf b/bin/postgresql9.2.21/neard.conf new file mode 100644 index 0000000..789fb87 --- /dev/null +++ b/bin/postgresql9.2.21/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "9.2.21" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql9.2.21/pg_hba.conf.nrd b/bin/postgresql9.2.21/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql9.2.21/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql9.2.21/postgresql.conf.nrd b/bin/postgresql9.2.21/postgresql.conf.nrd new file mode 100644 index 0000000..5a305bb --- /dev/null +++ b/bin/postgresql9.2.21/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.2.21/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.2.21/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.2.21/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~NEARD_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql9.3.17/init.bat b/bin/postgresql9.3.17/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql9.3.17/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql9.3.17/neard.conf b/bin/postgresql9.3.17/neard.conf new file mode 100644 index 0000000..b70c2a8 --- /dev/null +++ b/bin/postgresql9.3.17/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "9.3.17" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql9.3.17/pg_hba.conf.nrd b/bin/postgresql9.3.17/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql9.3.17/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql9.3.17/postgresql.conf.nrd b/bin/postgresql9.3.17/postgresql.conf.nrd new file mode 100644 index 0000000..9d7513a --- /dev/null +++ b/bin/postgresql9.3.17/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.3.17/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.3.17/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.3.17/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~NEARD_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql9.4.12/init.bat b/bin/postgresql9.4.12/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql9.4.12/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql9.4.12/neard.conf b/bin/postgresql9.4.12/neard.conf new file mode 100644 index 0000000..62cb10b --- /dev/null +++ b/bin/postgresql9.4.12/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "9.4.12" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql9.4.12/pg_hba.conf.nrd b/bin/postgresql9.4.12/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql9.4.12/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql9.4.12/postgresql.conf.nrd b/bin/postgresql9.4.12/postgresql.conf.nrd new file mode 100644 index 0000000..3dc1c2f --- /dev/null +++ b/bin/postgresql9.4.12/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.12/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.12/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.4.12/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~NEARD_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql9.5.7/init.bat b/bin/postgresql9.5.7/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql9.5.7/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql9.5.7/neard.conf b/bin/postgresql9.5.7/neard.conf new file mode 100644 index 0000000..e36a7fb --- /dev/null +++ b/bin/postgresql9.5.7/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "9.5.7" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql9.5.7/pg_hba.conf.nrd b/bin/postgresql9.5.7/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql9.5.7/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql9.5.7/postgresql.conf.nrd b/bin/postgresql9.5.7/postgresql.conf.nrd new file mode 100644 index 0000000..093e5b1 --- /dev/null +++ b/bin/postgresql9.5.7/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.7/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.7/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.5.7/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5452 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 52MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~NEARD_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/bin/postgresql9.6.3/init.bat b/bin/postgresql9.6.3/init.bat new file mode 100644 index 0000000..aaf5e97 --- /dev/null +++ b/bin/postgresql9.6.3/init.bat @@ -0,0 +1,5 @@ +@ECHO OFF + +%~dp0bin\initdb.exe -U postgres -A trust -E utf8 -D "%~dp0data" > "~NEARD_WIN_PATH~\logs\postgresql-install.log" 2>&1 +copy /y "%~dp0postgresql.conf.nrd" "%~dp0data\postgresql.conf" +copy /y "%~dp0pg_hba.conf.nrd" "%~dp0data\pg_hba.conf" diff --git a/bin/postgresql9.6.3/neard.conf b/bin/postgresql9.6.3/neard.conf new file mode 100644 index 0000000..656079e --- /dev/null +++ b/bin/postgresql9.6.3/neard.conf @@ -0,0 +1,14 @@ +postgresqlVersion = "9.6.3" +postgresqlCtlExe = "bin/pg_ctl.exe" +postgresqlCliExe = "bin/psql.exe" +postgresqlDumpExe = "bin/pg_dump.exe" +postgresqlDumpAllExe = "bin/pg_dumpall.exe" +postgresqlConf = "data/postgresql.conf" +postgresqlUserConf = "data/pg_hba.conf" +postgresqlAltConf = "postgresql.conf.nrd" +postgresqlAltUserConf = "pg_hba.conf.nrd" +postgresqlPort = "5432" +postgresqlRootUser = "postgres" +postgresqlRootPwd = "" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/postgresql9.6.3/pg_hba.conf.nrd b/bin/postgresql9.6.3/pg_hba.conf.nrd new file mode 100644 index 0000000..0f5b3e0 --- /dev/null +++ b/bin/postgresql9.6.3/pg_hba.conf.nrd @@ -0,0 +1,2 @@ +# TYPE DATABASE USER ADDRESS METHOD +host all all 127.0.0.1/32 trust diff --git a/bin/postgresql9.6.3/postgresql.conf.nrd b/bin/postgresql9.6.3/postgresql.conf.nrd new file mode 100644 index 0000000..55e58b5 --- /dev/null +++ b/bin/postgresql9.6.3/postgresql.conf.nrd @@ -0,0 +1,35 @@ +#------------------------------------------------------------------------------ +# FILE LOCATIONS +#------------------------------------------------------------------------------ +data_directory = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.3/data' +hba_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.3/data/pg_hba.conf' +ident_file = '~NEARD_LIN_PATH~/bin/postgresql/postgresql9.6.3/data/pg_ident.conf' + +#------------------------------------------------------------------------------ +# CONNECTIONS AND AUTHENTICATION +#------------------------------------------------------------------------------ +listen_addresses = '*' +port = 5432 +max_connections = 100 + +#------------------------------------------------------------------------------ +# RESOURCE USAGE (except WAL) +#------------------------------------------------------------------------------ +shared_buffers = 32MB + +#------------------------------------------------------------------------------ +# ERROR REPORTING AND LOGGING +#------------------------------------------------------------------------------ +log_destination = 'stderr' +logging_collector = on +log_directory = '~NEARD_LIN_PATH~/logs' +log_filename = 'postgresql.log' +log_file_mode = 0777 +log_truncate_on_rotation = off +log_rotation_age = 0 +log_rotation_size = 0 + +client_min_messages = notice +log_min_messages = warning +log_min_error_statement = error +log_min_duration_statement = -1 diff --git a/build.properties b/build.properties index c577ea0..f1e57d9 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,5 @@ bundle.name = postgresql -bundle.release = r2 +bundle.release = r3 bundle.type = bins bundle.format = 7z diff --git a/releases.properties b/releases.properties index 0f74214..ba9e874 100644 --- a/releases.properties +++ b/releases.properties @@ -2,11 +2,16 @@ 9.1.24 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.1.24-r2.7z 9.2.17 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.2.17-r1.7z 9.2.19 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.2.19-r2.7z +9.2.21 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.2.21-r3.7z 9.3.13 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.3.13-r1.7z 9.3.15 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.3.15-r2.7z +9.3.17 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.3.17-r3.7z 9.4.8 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.4.8-r1.7z 9.4.10 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.4.10-r2.7z +9.4.12 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.4.12-r3.7z 9.5.3 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.5.3-r1.7z 9.5.5 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.5.5-r2.7z +9.5.7 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.5.7-r3.7z 9.6.0 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r1/neard-postgresql-9.6.0-r1.7z 9.6.1 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r2/neard-postgresql-9.6.1-r2.7z +9.6.3 = https://github.com/crazy-max/neard-bin-postgresql/releases/download/r3/neard-postgresql-9.6.3-r3.7z