Skip to content

Commit 3df7ab5

Browse files
committed
Release version 0.3.2
1 parent dc1cc75 commit 3df7ab5

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

HISTORY.rst

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
History
33
***********
44

5+
0.3.2 (2021-01-29)
6+
====================
7+
8+
* Make LIS Indexer more forgiving with unknown Logical Record types.
9+
510
0.3.1 (2020-06-15)
611
====================
712

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = '0.3.2rc0'
61+
version = '0.3.2'
6262
# The full version, including alpha/beta/rc tags.
6363
release = '0.3.2'
6464

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.2rc0
2+
current_version = 0.3.2
33
commit = True
44
tag = True
55

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120

121121
setup(
122122
name='TotalDepth',
123-
version='0.3.2rc0',
123+
version='0.3.2',
124124
description="TotalDepth is a software collection that can process petrophysical data such as wireline logs and seismic data.",
125125
long_description=readme + '\n\n' + history,
126126
author="Paul Ross",

src/TotalDepth/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121

2222
__all__ = ['LAS', 'LIS', 'RP66V1', 'util',]
2323

24-
__version__ = '0.3.2rc0'
24+
__version__ = '0.3.2'
2525

26-
VERSION = (0, 3, 2, 'rc0')
26+
VERSION = (0, 3, 2)
2727

2828
RELEASE_NOTES = [
2929
"""

0 commit comments

Comments
 (0)