From cebb0f8199ba2e693960780fb5419e32e6b5cd53 Mon Sep 17 00:00:00 2001 From: Julia Collins Date: Thu, 5 Dec 2024 12:46:13 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.5.0=20=E2=86=92=200.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 +- pyproject.toml | 4 ++-- src/nsidc/metgen/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dcad120..2cfab11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ MetGenC Changelog -## UNRELEASED +## v0.6.0 This is the Minimum Viable Product (MVP) release of MetGenC. The features include: diff --git a/pyproject.toml b/pyproject.toml index 462a592..4d3654d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nsidc-metgenc" -version = "0.5.0" +version = "0.6.0" description = "The nsidc-metgenc package enables data producers as well as Operations staff managing the data ingest workflow to create metadata files conforming to NASA's Common Metadata Repository UMM-G specification." authors = ["National Snow and Ice Data Center (NSIDC) "] readme = "README.md" @@ -33,7 +33,7 @@ mypy = "^1.11.1" bump-my-version = "^0.28.1" [tool.bumpversion] -current_version = "0.5.0" +current_version = "0.6.0" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/src/nsidc/metgen/__init__.py b/src/nsidc/metgen/__init__.py index ca2b0fc..7027c38 100644 --- a/src/nsidc/metgen/__init__.py +++ b/src/nsidc/metgen/__init__.py @@ -1,4 +1,4 @@ -__version__ = "v0.5.0" +__version__ = "v0.6.0" __all__ = ["__version__"]