From 427d78e9356cfc901ec4b5e5dc27c60ae206cf20 Mon Sep 17 00:00:00 2001 From: Sam Dotson Date: Mon, 31 Oct 2022 10:45:20 -0500 Subject: [PATCH] prepares new release --- CHANGELOG.md | 7 +++++++ docs/source/conf.py | 2 +- setup.py | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d99753e..8d22ec5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ 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/spec/v2.0.0.html). ## [Unreleased] +## [0.2.0] - 2022-10-31 +### Added +- Adds the following Technology subclasses + * `StorageTechnology` which has storage attributes `initial_storage`, `storage_capacity`. + * `RampingTechnology` which has ramping attributes `ramp_up` and `ramp_down`. +- Adds ramping and storage constraints to the `osier.DispatchModel` which correspond to the +`StorageTechnology` and `RampingTechnology` subclasses. ## [0.1.3] - 2022-10-04 ### Added diff --git a/docs/source/conf.py b/docs/source/conf.py index ffd063f..e491c52 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -22,7 +22,7 @@ author = 'Samuel Dotson' # The full version, including alpha/beta/rc tags -release = '0.1.3' +release = '0.2.0' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 7073deb..8009851 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ # Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z" _version_major = 0 -_version_minor = 1 -_version_micro = 3 # use '' for first of series, number for 1 and above +_version_minor = 2 +_version_micro = 0 # use '' for first of series, number for 1 and above # _version_extra = 'dev' _version_extra = '' # Uncomment this for full releases