Skip to content

Commit 6e7ecaa

Browse files
authored
Merge pull request #330 from pblottiere/prepare_v124
Prepare v1.2.4
2 parents 6b60f6f + c6351fe commit 6e7ecaa

7 files changed

Lines changed: 12 additions & 12 deletions

File tree

NEWS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
1.2.4.dev
2-
---------
1+
1.2.4, 2022-09-26
2+
-----------------
33

44
- Bug fixes
55
- Add upgrade paths for pointcloud_postgis (#327)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Release][release-image]][releases]
44

5-
[release-image]: https://img.shields.io/badge/release-1.2.3-green.svg?style=plastic
5+
[release-image]: https://img.shields.io/badge/release-1.2.4-green.svg?style=plastic
66
[releases]: https://github.com/pgpointcloud/pointcloud/releases
77

88
A PostgreSQL extension for storing point cloud (LIDAR) data. See

Version.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.3
1+
1.2.4

doc/development.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,12 +183,12 @@ Steps for releasing a new version of Pointcloud:
183183
1. Add a new section to the ``NEWS`` file, listing all the changes associated
184184
with the new release.
185185

186-
2. Change the version number in the ``Version.config`` and
186+
2. Change the version number in the ``README``, ``Version.config`` and
187187
``pgsql/expected/pointcloud.out`` files.
188188

189-
3. Update the value of ``UPGRADABLE`` in ``pgsql/Makefile.in``. This variable
190-
defines the versions from which a database can be upgraded to the new
191-
Pointcloud version.
189+
3. Update the value of ``UPGRADABLE`` in ``pgsql/Makefile.in`` and
190+
``pgsql_postgis/Makefile``. This variable defines the versions from which a
191+
database can be upgraded to the new Pointcloud version.
192192

193193
4. Create a PR with these changes.
194194

pgsql/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ EXTENSION = pointcloud
1515
EXTVERSION=$(shell cat ../Version.config)
1616
EXTVERSION_MAJOR=$(shell cut -d. -f1,2 ../Version.config)
1717
MODULE_big = $(EXTENSION)-$(EXTVERSION_MAJOR)
18-
UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2
18+
UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3
1919

2020
UPGRADES = \
2121
$(shell echo $(UPGRADABLE) | \

pgsql/expected/pointcloud.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE EXTENSION pointcloud;
44
SELECT PC_Version();
55
pc_version
66
------------
7-
1.2.3
7+
1.2.4
88
(1 row)
99

1010
INSERT INTO pointcloud_formats (pcid, srid, schema)

pgsql_postgis/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SED = sed
88
EXTENSION = pointcloud_postgis
99
EXTVERSION=$(shell cat ../Version.config)
1010

11-
UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2
11+
UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3
1212
UPGRADES = \
1313
$(shell echo $(UPGRADABLE) | \
1414
$(SED) 's/^/$(EXTENSION)--/' | \
@@ -41,4 +41,4 @@ $(EXTENSION)--%--$(EXTVERSION).sql: $(EXTENSION)--$(EXTVERSION).sql ../util/proc
4141
cat $< | ../util/proc_upgrade.pl > $@
4242

4343
$(EXTENSION)--%--$(EXTVERSION)next.sql: $(EXTENSION)--$(EXTVERSION)next--$(EXTVERSION).sql
44-
ln -f $< $@
44+
ln -f $< $@

0 commit comments

Comments
 (0)