Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ jobs:
with:
repository-url: https://test.pypi.org/legacy/
skip-existing: true
attestations: false

- name: Publish to PyPI
if: steps.test-pypi.outcome == 'success'
Expand Down
21 changes: 20 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -185,4 +185,23 @@ History
* 2026-01-20 — PR #306 — Pydantic updates and transition to pytest


**Full Changelog**: https://github.com/kujaku11/mth5/compare/v0.6.0...v0.6.1
**Full Changelog**: https://github.com/kujaku11/mth5/compare/v0.6.0...v0.6.1Changelog All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.All notable changes to this project will be documented in this
file.
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.6.3
* **Version**: 0.6.4
* **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
31 changes: 29 additions & 2 deletions cliff.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,36 @@
[changelog]
header = "Changelog"
body = """
header = """# Changelog

All notable changes to this project will be documented in this file.
"""

body = """
{% for group, commits in commits | group_by(attribute="group") %}
## {{ group | upper_first }}
{% for commit in commits %}
- {% if commit.breaking %}[**BREAKING**] {% endif %}{{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}]({{ commit.id }}))
{% endfor %}
{% endfor %}
"""

trim = true

[git]
conventional_commits = true
filter_unconventional = false
commit_parsers = [
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^doc", group = "Documentation" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Refactor" },
{ message = "^style", group = "Styling" },
{ message = "^test", group = "Testing" },
{ message = "^chore\\(release\\): prepare for", skip = true },
{ message = "^chore\\(deps\\)", skip = true },
{ message = "^chore\\(pr\\)", skip = true },
{ message = "^chore\\(pull\\)", skip = true },
{ message = "^chore", group = "Miscellaneous Tasks" },
{ body = ".*security", group = "Security" },
{ message = "^revert", group = "Revert" },
]
6 changes: 3 additions & 3 deletions code.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"licenses": [
{
"name": "MIT",
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.6.3/LICENSE.md"
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.6.4/LICENSE.md"
}
]
},
"homepageURL": "https://code.usgs.gov/gmeg/mth5",
"downloadURL": "https://code.usgs.gov/gmeg/mth5/-/archive/v0.6.3/mth5-v0.6.3.zip",
"disclaimerURL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.6.3/DISCLAIMER.md",
"downloadURL": "https://code.usgs.gov/gmeg/mth5/-/archive/v0.6.4/mth5-v0.6.4.zip",
"disclaimerURL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.6.4/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.6.3
* **Version**: 0.6.4
* **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 @@ -21,7 +21,7 @@

__author__ = """Jared Peacock"""
__email__ = "jpeacock@usgs.gov"
__version__ = "0.6.3"
__version__ = "0.6.4"


# =============================================================================
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mth5"
version = "0.6.3"
version = "0.6.4"
description = "Archivable and exchangeable format for magnetotelluric data"
authors = [
{name = "Jared Peacock", email = "jpeacock@usgs.gov"},
Expand Down Expand Up @@ -125,7 +125,7 @@ use_parentheses = true
ensure_newline_before_comments = true

[tool.bumpversion]
current_version = "0.6.3"
current_version = "0.6.4"
commit = true
tag = true

Expand Down
Loading