8000 fixes #34 update to 20210211 release by thijslemmens · Pull Request #35 · xenit-eu/docker-postgres · GitHub
[go: up one dir, main page]

Skip to content

fixes #34 update to 20210211 release #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
# Xenit PostgreSQL docker image changelog

## 2021-03

* [2021-03-04] [#34](https://github.com/xenit-eu/docker-postgres/issues/34) Update to [PostgreSQL 2021-02-11 release](https://www.postgresql.org/about/news/postgresql-132-126-1111-1016-9621-and-9525-released-2165/)

## 2020-11

* [2020-11-14] [PR #32](https://github.com/xenit-eu/docker-postgres/issues/32) Add PostgreSQL 13
* [2020-11-14] [PR #31](https://github.com/xenit-eu/docker-postgres/issues/31) Update to [PostgreSQL 2020-11-12 release](https://www.postgresql.org/about/news/2111)
* [2020-11-14] [#32](https://github.com/xenit-eu/docker-postgres/issues/32) Add PostgreSQL 13
* [2020-11-14] [#31](https://github.com/xenit-eu/docker-postgres/issues/31) Update to [PostgreSQL 2020-11-12 release](https://www.postgresql.org/about/news/2111)

## 2020-09

* [2020-09-22] [PR #29](https://github.com/xenit-eu/docker-postgres/issues/29) Update to [PostgreSQL 2020-08-13 release](https://www.postgresql.org/about/news/2060)
* [2020-09-22] [#29](https://github.com/xenit-eu/docker-postgres/issues/29) Update to [PostgreSQL 2020-08-13 release](https://www.postgresql.org/about/news/2060)

## 2020-07

* [2020-07-01] [PR #26](https://github.com/xenit-eu/docker-postgres/issues/26) Update to [PostgreSQL 2020-05-14 release](https://www.postgresql.org/about/news/2038)
* [2020-07-01] [#26](https://github.com/xenit-eu/docker-postgres/issues/26) Update to [PostgreSQL 2020-05-14 release](https://www.postgresql.org/about/news/2038)

## 2020-03

* [2020-03-05] [PR #24](https://github.com/xenit-eu/docker-postgres/issues/24) Update to [PostgreSQL 2020-02-13 release](https://www.postgresql.org/about/news/2011)
* [2020-03-05] [#24](https://github.com/xenit-eu/docker-postgres/issues/24) Update to [PostgreSQL 2020-02-13 release](https://www.postgresql.org/about/news/2011)



Expand Down
26 changes: 13 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
plugins {
id "eu.xenit.docker" version "5.1.0" apply false // Have a look at the releases to find the latest one
id "eu.xenit.docker" version "5.2.0" apply false // Have a look at the releases to find the latest one
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

}

project(':9.5') {
project.ext {
baseImage = 'postgres:9.5.24'
tags = ['9.5', '9.5.24']
baseImage = 'postgres:9.5.25'
tags = ['9.5', '9.5.25']
}
}

project(':9.6') {
project.ext {
baseImage = 'postgres:9.6.20'
tags = ['9', '9.6', '9.6.20']
baseImage = 'postgres:9.6.21'
tags = ['9', '9.6', '9.6.21']
}
}

project(':10') {
project.ext {
baseImage = 'postgres:10.15'
tags = ['10', '10.15']
baseImage = 'postgres:10.16'
tags = ['10', '10.16']
}
}

project(':11') {
project.ext {
baseImage = 'postgres:11.10'
tags = ['11', '11.10']
baseImage = 'postgres:11.11'
tags = ['11', '11.11']
}
}

project(':12') {
project.ext {
baseImage = 'postgres:12.5'
tags = ['12', '12.5']
baseImage = 'postgres:12.6'
tags = ['12', '12.6']
}
}

project(':13') {
project.ext {
baseImage = 'postgres:13.1'
tags = ['13', '13.1', 'latest']
baseImage = 'postgres:13.2'
tags = ['13', '13.2', 'latest']
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
0