Skip to content

Commit

Permalink
Merge pull request #229 from kujaku11/patches
Browse files Browse the repository at this point in the history
Bump version: 0.3.7 → 0.3.8
  • Loading branch information
kujaku11 authored Sep 30, 2024
2 parents 72f4b55 + 1183309 commit 99e3e08
Show file tree
Hide file tree
Showing 7 changed files with 18 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.3.7
current_version = 0.3.8
files = setup.py mt_metadata/__init__.py README.md tests/tf/io/edi/test_no_error_edi.py code.json
commit = True
tag = True
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -191,3 +191,11 @@ History
* Patches by @kkappler in https://github.com/kujaku11/mt_metadata/pull/221
* Patches by @kkappler in https://github.com/kujaku11/mt_metadata/pull/223
* Bump version: 0.3.6 → 0.3.7 by @kujaku11 in https://github.com/kujaku11/mt_metadata/pull/225

0.3.8 (2024-09-30)
----------------------

* Add pop to ListDict by @kujaku11 in https://github.com/kujaku11/mt_metadata/pull/226
* Fix EDI Tipper flip by @kujaku11 in https://github.com/kujaku11/mt_metadata/pull/228
* Patches by @kujaku11 in https://github.com/kujaku11/mt_metadata/pull/227
* Bump version: 0.3.7 → 0.3.8 by @kujaku11 in https://github.com/kujaku11/mt_metadata/pull/229
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# mt_metadata version 0.3.7
# mt_metadata version 0.3.8
Standard MT metadata

[![PyPi version](https://img.shields.io/pypi/v/mt_metadata.svg)](https://pypi.python.org/pypi/mt-metadata)
Expand Down Expand Up @@ -28,7 +28,7 @@ MT Metadata is a project led by [IRIS-PASSCAL MT Software working group](https:/

Most people will be using the transfer functions, but a lot of that metadata comes from the time series metadata. This module supports both and has tried to make them more or less seamless to reduce complication.

* **Version**: 0.3.7
* **Version**: 0.3.8
* **Free software**: MIT license
* **Documentation**: https://mt-metadata.readthedocs.io.
* **Examples**: Click the `Binder` badge above and Jupyter Notebook examples are in **mt_metadata/examples/notebooks** and **docs/source/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": "mt-metadata",
"organization": "U.S. Geological Survey",
"description": "A Python module to handle/validate/read/write metadata in general but mainly for magnetotelluric data including time series, transfer functions, and Fourier coefficients. Formats include JSON, XML, text files.",
"version": "v0.3.7",
"version": "v0.3.8",
"status": "Production",
"permissions": {
"usageType": "openSource",
"licenses": [
{
"name": "MIT",
"URL": "https://code.usgs.gov/gmeg/mt-metadata/-/raw/v0.3.7/LICENSE.md"
"URL": "https://code.usgs.gov/gmeg/mt-metadata/-/raw/v0.3.8/LICENSE.md"
}
]
},
"homepageURL": "https://code.usgs.gov/gmeg/mt_metadata",
"downloadURL": "https://code.usgs.gov/gmeg/mt-metadata/-/archive/v0.3.7/mt-metadata-v0.3.7.zip",
"disclaimerURL": "https://code.usgs.gov/gmeg/mt-metadata/-/raw/v0.3.7/DISCLAIMER.md",
"downloadURL": "https://code.usgs.gov/gmeg/mt-metadata/-/archive/v0.3.8/mt-metadata-v0.3.8.zip",
"disclaimerURL": "https://code.usgs.gov/gmeg/mt-metadata/-/raw/v0.3.8/DISCLAIMER.md",
"repositoryURL": "https://code.usgs.gov/gmeg/mt_metadata.git",
"tags": [
"magnetotellurics",
Expand Down
2 changes: 1 addition & 1 deletion mt_metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

__author__ = """Jared Peacock"""
__email__ = "[email protected]"
__version__ = "0.3.7"
__version__ = "0.3.8"

# =============================================================================
# Imports
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/kujaku11/mt_metadata",
version="0.3.7",
version="0.3.8",
zip_safe=False,
package_data={
"": [
Expand Down
2 changes: 1 addition & 1 deletion tests/tf/io/edi/test_no_error_edi.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_header(self):
("longitude", 0.0),
("progdate", "2013-07-03"),
("progname", "mt_metadata"),
("progvers", "0.3.7"),
("progvers", "0.3.8"),
("stdvers", "SEG 1.0"),
("units", "millivolts_per_kilometer_per_nanotesla"),
]
Expand Down

0 comments on commit 99e3e08

Please sign in to comment.