Skip to content

Commit 96b5d8d

Browse files
committed
upgraded to PostreSQL 12.2
1 parent 798cf73 commit 96b5d8d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ matrix:
44
- env: PG_VERSION=9
55
- env: PG_VERSION=10
66
- env: PG_VERSION=11
7-
# - env: PG_VERSION=12
7+
- env: PG_VERSION=12
88

99
services:
1010
- docker
@@ -13,7 +13,7 @@ before_install:
1313
- docker build --build-arg PG_VERSION=${PG_VERSION} -t image .
1414

1515
install:
16-
- docker run --name TEST -d image
16+
- docker run --name TEST -e POSTGRES_PASSWORD=p455w0rd -d image
1717
# wait for the database to come up
1818
- until docker exec TEST psql -U postgres -l; do echo "Waiting for postgres to start..."; sleep 0.5; done
1919

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
This implementation is a branch from http://pgfoundry.org/projects/uint/ by [Ryan Bradetich]( http://pgfoundry.org/users/rbrad/).
44
It provides unsigned 2 byte and unsigned 4 byte data types to postgres 8.1 and greater.
55

6-
This implementation of **uint** duplicates https://github.com/maciekgajewski/postgres-uints in a way. But atop of that this implementation provides also **uint1**.
6+
This implementation of **uint** is in a way similar to https://github.com/maciekgajewski/postgres-uints. But atop of that this implementation provides also **uint1**.
77

88
## Major changes made so far
99

10-
- *2019-08-03*: made compatible with 9.x, 10.x, and 11.x;
10+
- *2020-03-08*: made compatible with 9.x, 10.x, 11.x, 12.x;
1111
- added automated testing and CI (*TravisCI*): https://travis-ci.org/nad2000/postgresql-contrib-uint.
1212
- dockerized and published at https://cloud.docker.com/u/nad2000/repository/docker/nad2000/postgres-uint;
1313
- retested with PostgreSQL 9.5 and 9.6

0 commit comments

Comments
 (0)