Skip to content

Commit

Permalink
prepares new release
Browse files Browse the repository at this point in the history
  • Loading branch information
samgdotson committed Oct 31, 2022
1 parent 805acd0 commit 427d78e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 427d78e

Please sign in to comment.