Skip to content
This repository was archived by the owner on Jul 14, 2022. It is now read-only.

Commit 967e89b

Browse files
committed
Update to 0.4.2 and update instructions
1 parent 25c4e7f commit 967e89b

2 files changed

Lines changed: 15 additions & 6 deletions

File tree

CreateDistribution.txt

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,22 @@ How to create a distribution of PyLidar.
44
2. Change the version number in the pylidar/__init__.py. Version number
55
is of the form a.b.c, as discussed below.
66
DON'T FORGET TO COMMIT THIS, BEFORE THE NEXT STEP!!!!
7-
3. Use "hg tag" to add a version number tag, e.g.
8-
hg tag pylidar-0.4.0
9-
4. Create the distribution tarball, using
7+
3. Push the changes to github with "git push".
8+
4. Check out a clean copy of the repository into /tmp or
9+
somewhere similar and 'cd' into it.
10+
5. Create the distribution tarball, using
1011
python setup.py sdist --formats=gztar,zip
1112
This creates both a tar.gz and a zip, under a subdirectory called dist
12-
5. Upload these to bitbucket, under the downloads tab.
13-
13+
6. Create checksums of each of these, e.g.
14+
sha256sum pylidar-1.2.3.tar.gz > pylidar-1.2.3.tar.gz.sha256
15+
sha256sum pylidar-1.2.3.zip > pylidar-1.2.3.zip.sha256
16+
7. Go to the https://github.com/ubarsc/pylidar/releases page, and create a
17+
new release by pressing "Draft a new release".
18+
You should fill in the following:
19+
Tag version: pylidar-A.B.C
20+
Release Title: Version A.B.C
21+
Upload files: Add the tar.gz and zip files, and their sha256 checksum files.
22+
Click "Publish release"
1423

1524
Version Numbers.
1625
The TuiView number is structured as A.B.C.

pylidar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@
1919
# You should have received a copy of the GNU General Public License
2020
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2121

22-
PYLIDAR_VERSION = '0.4.1'
22+
PYLIDAR_VERSION = '0.4.2'
2323
__version__ = PYLIDAR_VERSION

0 commit comments

Comments
 (0)