Skip to content

Commit

Permalink
Merge pull request #255 from pblottiere/v121
Browse files Browse the repository at this point in the history
Get prepared for v1.2.1
  • Loading branch information
pblottiere committed Jan 7, 2020
2 parents 49fc69e + 6724767 commit 7104db6
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
12 changes: 12 additions & 0 deletions NEWS
@@ -1,3 +1,15 @@
1.2.1, 2020-01-01
-----------------

- Bug fixes
- Fix compilation with PostgreSQL 11 #237
- Fix compilation with PostgreSQL 12 #243

- Enhancements
- Improve documentation for PC_MemSize #232
- Fix unit tests with PostgreSQL >= 10 #253
- Fix typo in README #238

1.2.0, 2018-08-22
-----------------

Expand Down
2 changes: 1 addition & 1 deletion Version.config
@@ -1 +1 @@
1.2.0
1.2.1
2 changes: 1 addition & 1 deletion pgsql/Makefile.in
Expand Up @@ -15,7 +15,7 @@ EXTENSION = pointcloud
EXTVERSION=$(shell cat ../Version.config)
EXTVERSION_MAJOR=$(shell cut -d. -f1,2 ../Version.config)
MODULE_big = $(EXTENSION)-$(EXTVERSION_MAJOR)
UPGRADABLE = 1.1.0 1.1.1
UPGRADABLE = 1.1.0 1.1.1 1.2.0

UPGRADES = \
$(shell echo $(UPGRADABLE) | \
Expand Down
2 changes: 1 addition & 1 deletion pgsql/expected/pointcloud.out
Expand Up @@ -4,7 +4,7 @@ CREATE EXTENSION pointcloud;
SELECT PC_Version();
pc_version
------------
1.2.0
1.2.1
(1 row)

INSERT INTO pointcloud_formats (pcid, srid, schema)
Expand Down
2 changes: 1 addition & 1 deletion pgsql/expected/pointcloud_pg9.out
Expand Up @@ -3,7 +3,7 @@ CREATE EXTENSION pointcloud;
SELECT PC_Version();
pc_version
------------
1.2.0
1.2.1
(1 row)

INSERT INTO pointcloud_formats (pcid, srid, schema)
Expand Down

0 comments on commit 7104db6

Please sign in to comment.