File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff line change 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
88A PostgreSQL extension for storing point cloud (LIDAR) data. See
Original file line number Diff line number Diff line change 1- 1.2.3
1+ 1.2.4
Original file line number Diff line number Diff line change @@ -183,12 +183,12 @@ Steps for releasing a new version of Pointcloud:
1831831. 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
1931934. Create a PR with these changes.
194194
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ EXTENSION = pointcloud
1515EXTVERSION =$(shell cat ../Version.config)
1616EXTVERSION_MAJOR =$(shell cut -d. -f1,2 ../Version.config)
1717MODULE_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
2020UPGRADES = \
2121 $(shell echo $(UPGRADABLE ) | \
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ CREATE EXTENSION pointcloud;
44SELECT PC_Version();
55 pc_version
66------------
7- 1.2.3
7+ 1.2.4
88(1 row)
99
1010INSERT INTO pointcloud_formats (pcid, srid, schema)
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ SED = sed
88EXTENSION = pointcloud_postgis
99EXTVERSION =$(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
1212UPGRADES = \
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 $< $@
You can’t perform that action at this time.
0 commit comments