From cdfd18d1e462e2f9fdd12db42f8fee3bbdc93857 Mon Sep 17 00:00:00 2001 From: Jason Petersen Date: Thu, 5 Oct 2017 14:57:53 -0600 Subject: [PATCH 1/3] Bump citus tools version --- HomebrewFormula/citustools.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HomebrewFormula/citustools.rb b/HomebrewFormula/citustools.rb index 22f562c2..844e3349 100644 --- a/HomebrewFormula/citustools.rb +++ b/HomebrewFormula/citustools.rb @@ -12,8 +12,8 @@ def message class Citustools < Formula desc "Tools and config used in Citus Data projects." homepage "https://github.com/citusdata/tools" - url "https://github.com/citusdata/tools/archive/v0.7.0.tar.gz" - sha256 "719e82f051e123dcf3a087fc49ceaacd86f76dbaea24fe886beaee742cce533f" + url "https://github.com/citusdata/tools/archive/v0.7.2.tar.gz" + sha256 "bbb0545ce95ad4de66036daa55e60bf52ab8b64786d62df978a8ad585b0c7010" depends_on "uncrustify" depends_on Docker From 8fca65f2048eee75797a430e60a60a64946099c8 Mon Sep 17 00:00:00 2001 From: Jason Petersen Date: Thu, 5 Oct 2017 15:35:44 -0600 Subject: [PATCH 2/3] Fix regex problem --- packaging/citus_package | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/citus_package b/packaging/citus_package index 8d8a4e58..0b5a90e1 100755 --- a/packaging/citus_package +++ b/packaging/citus_package @@ -343,7 +343,7 @@ foreach my $platform (@platforms) { $nightlypg //= $releasepg; my $finalpg = ( $build_type eq 'release' ) ? $releasepg : $nightlypg; - $finalpg =~ s/(\d)\.(\d)/pg$1$2/gx; + $finalpg =~ s/(\d)\.?(\d)/pg$1$2/gx; @pg_versions = split( /,/x, $finalpg ); } From 24b14e01b024e2d0dc3e5e47bcd80c5d97649f52 Mon Sep 17 00:00:00 2001 From: Jason Petersen Date: Thu, 5 Oct 2017 15:36:36 -0600 Subject: [PATCH 3/3] Prepare for 0.7.3 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6764512e..a31b13d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +### citustools v0.7.3 (October 5, 2017) ### + +* Fixes regex problem with PG 10 RPM builds + ### citustools v0.7.2 (October 5, 2017) ### * Changes packaging default PostgreSQL versions from 9.5,9.6 to 9.6,10