Skip to content

Commit 380bcbf

Browse files
authored
Merge pull request #322 from kujaku11/patches
Patches
2 parents 3d6d5b0 + acebb0c commit 380bcbf

File tree

8 files changed

+58
-11
lines changed

8 files changed

+58
-11
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ jobs:
145145
with:
146146
repository-url: https://test.pypi.org/legacy/
147147
skip-existing: true
148+
attestations: false
148149

149150
- name: Publish to PyPI
150151
if: steps.test-pypi.outcome == 'success'

HISTORY.rst

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,23 @@ History
185185
* 2026-01-20 — PR #306 — Pydantic updates and transition to pytest
186186

187187

188-
**Full Changelog**: https://github.com/kujaku11/mth5/compare/v0.6.0...v0.6.1
188+
**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
189+
file.All notable changes to this project will be documented in this
190+
file.All notable changes to this project will be documented in this
191+
file.All notable changes to this project will be documented in this
192+
file.All notable changes to this project will be documented in this
193+
file.All notable changes to this project will be documented in this
194+
file.All notable changes to this project will be documented in this
195+
file.All notable changes to this project will be documented in this
196+
file.All notable changes to this project will be documented in this
197+
file.All notable changes to this project will be documented in this
198+
file.All notable changes to this project will be documented in this
199+
file.All notable changes to this project will be documented in this
200+
file.All notable changes to this project will be documented in this
201+
file.All notable changes to this project will be documented in this
202+
file.All notable changes to this project will be documented in this
203+
file.All notable changes to this project will be documented in this
204+
file.All notable changes to this project will be documented in this
205+
file.All notable changes to this project will be documented in this
206+
file.All notable changes to this project will be documented in this
207+
file.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ MTH5 uses [h5py](https://www.h5py.org/) to interact with the HDF5 file, [xarray]
1515
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.
1616

1717

18-
* **Version**: 0.6.3
18+
* **Version**: 0.6.4
1919
* **Free software**: MIT license
2020
* **Documentation**: https://mth5.readthedocs.io.
2121
* **Examples**: Click the `Binder` badge above and Jupyter Notebook examples are in **docs/examples/notebooks**

cliff.toml

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,36 @@
11
[changelog]
2-
header = "Changelog"
3-
body = """
2+
header = """# Changelog
3+
44
All notable changes to this project will be documented in this file.
55
"""
66

7+
body = """
8+
{% for group, commits in commits | group_by(attribute="group") %}
9+
## {{ group | upper_first }}
10+
{% for commit in commits %}
11+
- {% if commit.breaking %}[**BREAKING**] {% endif %}{{ commit.message | upper_first }} ([{{ commit.id | truncate(length=7, end="") }}]({{ commit.id }}))
12+
{% endfor %}
13+
{% endfor %}
14+
"""
15+
16+
trim = true
17+
718
[git]
819
conventional_commits = true
920
filter_unconventional = false
21+
commit_parsers = [
22+
{ message = "^feat", group = "Features" },
23+
{ message = "^fix", group = "Bug Fixes" },
24+
{ message = "^doc", group = "Documentation" },
25+
{ message = "^perf", group = "Performance" },
26+
{ message = "^refactor", group = "Refactor" },
27+
{ message = "^style", group = "Styling" },
28+
{ message = "^test", group = "Testing" },
29+
{ message = "^chore\\(release\\): prepare for", skip = true },
30+
{ message = "^chore\\(deps\\)", skip = true },
31+
{ message = "^chore\\(pr\\)", skip = true },
32+
{ message = "^chore\\(pull\\)", skip = true },
33+
{ message = "^chore", group = "Miscellaneous Tasks" },
34+
{ body = ".*security", group = "Security" },
35+
{ message = "^revert", group = "Revert" },
36+
]

code.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010
"licenses": [
1111
{
1212
"name": "MIT",
13-
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.6.3/LICENSE.md"
13+
"URL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.6.4/LICENSE.md"
1414
}
1515
]
1616
},
1717
"homepageURL": "https://code.usgs.gov/gmeg/mth5",
18-
"downloadURL": "https://code.usgs.gov/gmeg/mth5/-/archive/v0.6.3/mth5-v0.6.3.zip",
19-
"disclaimerURL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.6.3/DISCLAIMER.md",
18+
"downloadURL": "https://code.usgs.gov/gmeg/mth5/-/archive/v0.6.4/mth5-v0.6.4.zip",
19+
"disclaimerURL": "https://code.usgs.gov/gmeg/mth5/-/raw/v0.6.4/DISCLAIMER.md",
2020
"repositoryURL": "https://code.usgs.gov/gmeg/mth5.git",
2121
"tags": [
2222
"magnetotellurics",

docs/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ MTH5 uses `h5py <https://www.h5py.org/>`_ to interact with the HDF5 file, `xarra
2828

2929
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.
3030

31-
* **Version**: 0.6.3
31+
* **Version**: 0.6.4
3232
* **Free software**: MIT license
3333
* **Documentation**: `<https://mth5.readthedocs.io>`_.
3434
* **Examples**: Click the `Binder` badge above and Jupyter Notebook examples are in **docs/examples/notebooks**

mth5/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
__author__ = """Jared Peacock"""
2323
__email__ = "jpeacock@usgs.gov"
24-
__version__ = "0.6.3"
24+
__version__ = "0.6.4"
2525

2626

2727
# =============================================================================

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "mth5"
7-
version = "0.6.3"
7+
version = "0.6.4"
88
description = "Archivable and exchangeable format for magnetotelluric data"
99
authors = [
1010
{name = "Jared Peacock", email = "jpeacock@usgs.gov"},
@@ -125,7 +125,7 @@ use_parentheses = true
125125
ensure_newline_before_comments = true
126126

127127
[tool.bumpversion]
128-
current_version = "0.6.3"
128+
current_version = "0.6.4"
129129
commit = true
130130
tag = true
131131

0 commit comments

Comments
 (0)