forked from LASzip/LASzip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HOWTORELEASE.txt
85 lines (50 loc) · 1.86 KB
/
HOWTORELEASE.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Steps for Making a LASzip Release
==============================================================================
:Author: Howard Butler
:Contact: [email protected]
:Revision: $Revision$
:Date: $Date$
This document describes the process for releasing a new version of LASzip.
General Notes
------------------------------------------------------------------------------
Release Process
1) Increment Version Numbers
- CMakeLists.txt
* SET(LASZIP_VERSION_MAJOR "2")
* SET(LASZIP_VERSION_MINOR "0")
* SET(LASZIP_VERSION_PATCH "0")
* SET(LASZIP_LIB_SOVERSION "4.0.2")
- include/laszip/laszip.hpp
* #define LASZIP_VERSION_MAJOR 2
* #define LASZIP_VERSION_MINOR 0
* #define LASZIP_VERSION_REV 0
- configure.ac
* m4_define([laszip_version_major], [2])
* m4_define([laszip_version_minor], [0])
* m4_define([laszip_version_micro], [0])
- Makefile.am -- see http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
* liblaszip_la_LDFLAGS = -version-info 6:0:0
2) Update README to include any relevant info about the release that
might have changed.
3) Build Windows version
- Issue nmake and nmake install commands
::
nmake /f Makefile osgeo4w
nmake /f Makefile osgeo4w
4) Make the source distribution
::
make dist
5) Generate MD5 sums
::
md5 laszip-1.0.0.tar.bz2 > laszip-1.0.0.tar.bz2.md5
6) Edit release page on http://liblas.org/zip/
7) Upload to OSGeo download site
8) Tag the release. Use the ``-f`` switch if you are retagging because you
missed something.
::
git tag 1.0.0b1
git push --tags
9) Write the release notes. Place a copy of the release notes on the release
page you created as well as send an email to liblas-devel announcing the
new release.
$Id$