Skip to content

Commit 722d410

Browse files
authored
Merge pull request #243 from MiraGeoscience/GEOPY-616b
Geopy 616b
2 parents ebe2dd5 + 7e1eae0 commit 722d410

File tree

6 files changed

+18
-6
lines changed

6 files changed

+18
-6
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@
8080
project = "geoh5py"
8181

8282
# The short X.Y version.
83-
version = "0.2.0"
83+
version = "0.3.1"
8484
# The full version, including alpha/beta/rc tags.
85-
release = "0.2.0"
85+
release = "0.3.1"
8686

8787
# List of patterns, relative to source directory, that match files and
8888
# directories to ignore when looking for source files.

docs/content/release_notes.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Release Notes
22
=============
33

4+
Release 0.3.1 - 2022/08/26
5+
--------------------------
6+
7+
This release addresses issues encountered after the 0.3.0 release.
8+
9+
- GEOPY-608: Check for 'allow_delete' status before removing.
10+
- GEOPY-600: Fix crash on missing 'Group types' group from project written by ANALYST.
11+
- GEOPY-587: Increase PEP8 compliance after pylint update.
12+
- GEOPY-575: Improve ui.json documentation.
13+
14+
415
Release 0.3.0 - 2022/06/30
516
--------------------------
617

geoh5py/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# You should have received a copy of the GNU Lesser General Public License
1616
# along with geoh5py. If not, see <https://www.gnu.org/licenses/>.
1717

18-
__version__ = "0.3.0"
18+
__version__ = "0.3.1"

geoh5py/ui_json/input_file.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,8 @@ def workspace(self, workspace: Workspace | None):
312312
if workspace is not None:
313313
if self._workspace is not None:
314314
raise UserWarning(
315-
"Attribute 'workspace' already set. Consider creating a new InputFile from arguments."
315+
"Attribute 'workspace' already set. "
316+
"Consider creating a new InputFile from arguments."
316317
)
317318

318319
if not isinstance(workspace, Workspace):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "geoh5py"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
license = "LGPL-3.0-or-later"
55
description = "Python API for geoh5, an open file format for geoscientific data"
66
authors = ["Mira Geoscience <support@mirageoscience.com>"]

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
setup(
2020
long_description=README,
2121
name="geoh5py",
22-
version="0.3.0",
22+
version="0.3.1",
2323
description="Python API for geoh5, an open file format for geoscientific data",
2424
python_requires="==3.*,>=3.7.0",
2525
project_urls={

0 commit comments

Comments
 (0)