We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f601690 commit 25a56f9Copy full SHA for 25a56f9
1 file changed
RELEASE.md
@@ -0,0 +1,16 @@
1
+# Release
2
+
3
+Steps for releasing a new version of Pointcloud.
4
5
+Add a new section to the [NEWS](NEWS) file, listing all the changes associated with the new release.
6
7
+Change the version number in the [Version.config](Version.config) and
8
+[pgsql/expected/pointcloud.out](pgsql/expected/pointcloud.out) files.
9
10
+Create a PR with these changes. When the PR is merged create a tag for the new release and push
11
+it to GitHub:
12
13
+```bash
14
+$ git tag -a x.y.z -m 'version x.y.z'
15
+$ git push origin x.y.z
16
+```
0 commit comments