Skip to content

Commit

Permalink
Merge pull request #245 from kujaku11/patches
Browse files Browse the repository at this point in the history
Bump version: 0.4.6 → 0.4.7
  • Loading branch information
kujaku11 authored Oct 1, 2024
2 parents cba8529 + 5da37c6 commit 6a08819
Show file tree
Hide file tree
Showing 8 changed files with 24 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.6
current_version = 0.4.7
files = setup.py mth5/__init__.py README.md docs/README.rst code.json
commit = True
tag = True
5 changes: 5 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ on:
pull_request:
branches:
- '*'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
setup-build:
name: Ex1 (${{ matrix.python-version }}, ${{ matrix.os }})
Expand Down
11 changes: 10 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,19 @@ History
* Updating bugs and Adding functionality by @kujaku11 in https://github.com/kujaku11/mth5/pull/226
* bump v0.4.3 --> v0.4.4 by @kujaku11 in https://github.com/kujaku11/mth5/pull/216

0.4.6
0.4.6 (2024-08-16)
----------------------------

* add aurora tools to mth5 by @kujaku11 in https://github.com/kujaku11/mth5/pull/229
* Patches by @kkappler in https://github.com/kujaku11/mth5/pull/234
* Fix issue 233 by @kkappler in https://github.com/kujaku11/mth5/pull/235
* hotfix synthetic electric field polarity (#236) by @kkappler in https://github.com/kujaku11/mth5/pull/237

0.4.7 (2024-09-30)
---------------------------

* Fix issue 191 by @kkappler in https://github.com/kujaku11/mth5/pull/239
* Update synthetic data by @kkappler in https://github.com/kujaku11/mth5/pull/243
* Optimize adding TF by @kujaku11 in https://github.com/kujaku11/mth5/pull/242
* Patches by @kujaku11 in https://github.com/kujaku11/mth5/pull/244
* bump v0.4.6 --> v0.4.7 by @kujaku11 in https://github.com/kujaku11/mth5/pull/245
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.6
* **Version**: 0.4.7
* **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.6",
"version": "v0.4.7",
"status": "Production",
"permissions": {
"usageType": "openSource",
"licenses": [
{
"name": "MIT",
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.6/LICENSE.md"
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.7/LICENSE.md"
}
]
},
"homepageURL": "https://code.usgs.gov/gmeg/mth5",
"downloadURL": "https://code.usgs.gov/gmeg/mth5/-/archive/v0.4.6/mth5-v0.4.6.zip",
"disclaimerURL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.6/DISCLAIMER.md",
"downloadURL": "https://code.usgs.gov/gmeg/mth5/-/archive/v0.4.7/mth5-v0.4.7.zip",
"disclaimerURL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.7/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.6
* **Version**: 0.4.7
* **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.6"
__version__ = "0.4.7"


# =============================================================================
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.6",
version="0.4.7",
zip_safe=False,
)

0 comments on commit 6a08819

Please sign in to comment.