Skip to content

Commit

Permalink
Merge pull request #267 from kujaku11/patches
Browse files Browse the repository at this point in the history
Bump version 0.4.9 --> 0.4.10
  • Loading branch information
kujaku11 authored Dec 13, 2024
2 parents ceee7f3 + 54a8904 commit 7dfa099
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.9
current_version = 0.4.10
files = setup.py mth5/__init__.py README.md docs/README.rst code.json
commit = True
tag = True
12 changes: 11 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,14 @@ History
* Update documentation by @kujaku11 in https://github.com/kujaku11/mth5/pull/251
* Fix issue 252 by @kkappler in https://github.com/kujaku11/mth5/pull/253

**Full Changelog**: https://github.com/kujaku11/mth5/compare/v0.4.8...v0.4.9
**Full Changelog**: https://github.com/kujaku11/mth5/compare/v0.4.8...v0.4.9

0.4.10
------------------------------

* HOT FIX: importing scipy, to use scipy.stats by @dequiroga in https://github.com/kujaku11/mth5/pull/258
* FC dataset end time consistency by @dequiroga in https://github.com/kujaku11/mth5/pull/264
* Add Metronix reader by @kujaku11 in https://github.com/kujaku11/mth5/pull/261
* Resolve SyntaxWarnings in Python 3.12 and above for invalid escape sequences by @jameswilburlewis in https://github.com/kujaku11/mth5/pull/256
* Patches by @kujaku11 in https://github.com/kujaku11/mth5/pull/265
* Update README.md by @kujaku11 in https://github.com/kujaku11/mth5/pull/266
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ MTH5 uses [h5py](https://www.h5py.org/) to interact with the HDF5 file, [xarray]
This project is in cooperation with the Incorporated Research Institutes of Seismology, the U.S. Geological Survey, and other collaborators. Facilities of the IRIS Consortium are supported by the National Science Foundation’s Seismological Facilities for the Advancement of Geoscience (SAGE) Award under Cooperative Support Agreement EAR-1851048. USGS is partially funded through the Community for Data Integration and IMAGe through the Minerals Resources Program.


* **Version**: 0.4.9
* **Version**: 0.4.10
* **Free software**: MIT license
* **Documentation**: https://mth5.readthedocs.io.
* **Examples**: Click the `Binder` badge above and Jupyter Notebook examples are in **docs/examples/notebooks**
Expand Down
8 changes: 4 additions & 4 deletions code.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
"name": "mth5",
"organization": "U.S. Geological Survey",
"description": "MTH5 is a Python module built to read/write/interact with MTH5 files, a data container for magnetotelluric data.",
"version": "v0.4.9",
"version": "v0.4.10",
"status": "Production",
"permissions": {
"usageType": "openSource",
"licenses": [
{
"name": "MIT",
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.9/LICENSE.md"
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.10/LICENSE.md"
}
]
},
"homepageURL": "https://code.usgs.gov/gmeg/mth5",
"downloadURL": "https://code.usgs.gov/gmeg/mth5/-/archive/v0.4.9/mth5-v0.4.9.zip",
"disclaimerURL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.9/DISCLAIMER.md",
"downloadURL": "https://code.usgs.gov/gmeg/mth5/-/archive/v0.4.10/mth5-v0.4.10.zip",
"disclaimerURL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.10/DISCLAIMER.md",
"repositoryURL": "https://code.usgs.gov/gmeg/mth5.git",
"tags": [
"magnetotellurics",
Expand Down
2 changes: 1 addition & 1 deletion docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ MTH5 uses `h5py <https://www.h5py.org/>`_ to interact with the HDF5 file, `xarra

This project is in cooperation with the Incorporated Research Institutes of Seismology, the U.S. Geological Survey, and other collaborators. Facilities of the IRIS Consortium are supported by the National Science Foundation’s Seismological Facilities for the Advancement of Geoscience (SAGE) Award under Cooperative Support Agreement EAR-1851048. USGS is partially funded through the Community for Data Integration and IMAGe through the Minerals Resources Program.

* **Version**: 0.4.9
* **Version**: 0.4.10
* **Free software**: MIT license
* **Documentation**: `<https://mth5.readthedocs.io>`_.
* **Examples**: Click the `Binder` badge above and Jupyter Notebook examples are in **docs/examples/notebooks**
Expand Down
2 changes: 1 addition & 1 deletion mth5/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

__author__ = """Jared Peacock"""
__email__ = "[email protected]"
__version__ = "0.4.9"
__version__ = "0.4.10"


# =============================================================================
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/kujaku11/mth5",
version="0.4.9",
version="0.4.10",
zip_safe=False,
)

0 comments on commit 7dfa099

Please sign in to comment.