Skip to content

Commit

Permalink
updating history
Browse files Browse the repository at this point in the history
  • Loading branch information
kujaku11 committed Oct 24, 2024
1 parent 4cf4f95 commit 9847bc2
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 12 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.8
current_version = 0.4.9
files = setup.py mth5/__init__.py README.md docs/README.rst code.json
commit = True
tag = True
10 changes: 9 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,4 +144,12 @@ History
* Updating Clients by @kujaku11 in https://github.com/kujaku11/mth5/pull/250
* @dequiroga made their first contribution in https://github.com/kujaku11/mth5/pull/246

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

0.4.9
-----------------------------

* 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
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.8
* **Version**: 0.4.9
* **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.8",
"version": "v0.4.9",
"status": "Production",
"permissions": {
"usageType": "openSource",
"licenses": [
{
"name": "MIT",
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.8/LICENSE.md"
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.9/LICENSE.md"
}
]
},
"homepageURL": "https://code.usgs.gov/gmeg/mth5",
"downloadURL": "https://code.usgs.gov/gmeg/mth5/-/archive/v0.4.8/mth5-v0.4.8.zip",
"disclaimerURL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.4.8/DISCLAIMER.md",
"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",
"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.8
* **Version**: 0.4.9
* **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.8"
__version__ = "0.4.9"


# =============================================================================
Expand Down
3 changes: 1 addition & 2 deletions mth5/timeseries/run_ts.py
Original file line number Diff line number Diff line change
Expand Up @@ -1041,8 +1041,7 @@ def calibrate(self, **kwargs):
"""

new_run = RunTS()
new_run.run_metadata = self.run_metadata
new_run = RunTS(run_metadata=self.run_metadata)
new_run.station_metadata = self.station_metadata

for channel in self.channels:
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.8",
version="0.4.9",
zip_safe=False,
)

0 comments on commit 9847bc2

Please sign in to comment.