Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Version to 0.1.0 #21

Merged
merged 1 commit into from
Jun 18, 2024
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
8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
[project]
name = "ufs2arco"
version = "0.0.2"
version = "0.1.0"
description = "Tools for converting Unified Forecast System (UFS) output to Analysis Ready, Cloud Optimized (ARCO) format"
authors = [
{name="Timothy Smith", email="[email protected]"},
{name="Lauryn Eldridge", email="[email protected]"},
{name="Ken Witt", email="[email protected]"},
{name="Daniel Abdi"},
{name="Mariah Pope"},
{name="Lauryn Eldridge"},
{name="Ken Witt"},
]
license = {file = "LICENSE.txt"}
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions ufs2arco/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__version__ = "0.0.2"
__version__ = "0.1.0"

from .cice6dataset import CICE6Dataset
from .fv3dataset import FV3Dataset
from .mom6dataset import MOM6Dataset
from .regrid import MOM6Regridder, CICE6Regridder
from .timer import Timer
from .timer import Timer
Loading