Skip to content

Commit

Permalink
Merge branch 'release/0.7.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmp85 committed Oct 5, 2017
2 parents 62231e4 + 24b14e0 commit f840204
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions HomebrewFormula/citustools.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packaging/citus_package
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
}
Expand Down

0 comments on commit f840204

Please sign in to comment.