From 02d7dd6c60f538ce7701c5ba31d65cb8f1dbdea1 Mon Sep 17 00:00:00 2001 From: Bart Schilperoort Date: Mon, 2 Sep 2024 10:22:34 +0200 Subject: [PATCH] Bump version to 0.2.0, add changelog --- CHANGELOG.md | 20 ++++++++++++++++++++ src/zampy/__init__.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..5b0e787 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/). + +## Unreleased + + +## 0.2.0 (2024-09-02) +First release of `zampy`. + +`zampy` is designed to retrieve data for LSM model input. It can help you prepare the data within the following steps: + +1. **Download** the data for the specified location(s) / geographical area. +2. **Ingest** data into unified (zampy) format. +3. **Load** the variables in a standardized way (standardized names & standardized units). +4. **Convert** the data to standard formats: + - ALMA / PLUMBER2's ALMA formatted netCDF. + - *CMOR formatted netCDF*. diff --git a/src/zampy/__init__.py b/src/zampy/__init__.py index f13f2a7..1e257c2 100644 --- a/src/zampy/__init__.py +++ b/src/zampy/__init__.py @@ -5,7 +5,7 @@ __author__ = "Bart Schilperoort" __email__ = "b.schilperoort@esciencecenter.nl" -__version__ = "0.1.0" +__version__ = "0.2.0" __all__ = ["datasets"]