Skip to content

Commit 29270ed

Browse files
authored
Merge pull request #72 from paulromano/release-0.4.0
Update version number to 0.4.0
2 parents bdea2b3 + fb8579d commit 29270ed

4 files changed

Lines changed: 21 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.4.0]
9+
10+
### Added
11+
12+
* DAKOTA plugin via the `PluginDakota` class
13+
* ABCE plugin via the `PluginABCE` class
14+
* Ability to define a generic plugin via the `PluginGeneric` class
15+
* The `Database` class now has a `remove` method that allows a single result to
16+
be removed
17+
18+
### Changes
19+
20+
* The OpenMC plugin unit test no longer requires the `OPENMC_CROSS_SECTIONS`
21+
environment variable to be set
922

1023
## [0.3.0]
1124

doc/source/_static/switcher.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@
44
"version": "latest",
55
"url": "https://watts.readthedocs.io/en/latest/"
66
},
7+
{
8+
"name": "0.4.0",
9+
"version": "v0.4.0",
10+
"url": "https://watts.readthedocs.io/en/v0.4.0/"
11+
},
712
{
813
"name": "0.3.0",
914
"version": "v0.3.0",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "watts"
7-
version = "0.3.1-dev"
7+
version = "0.4.0"
88
authors = [
99
{ name = "UChicago Argonne, LLC", email = "watts@anl.gov" },
1010
]

src/watts/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
# This allows a user to write watts.Quantity
2020
from astropy.units import Quantity
2121

22-
__version__ = '0.3.1-dev'
22+
__version__ = '0.4.0'

0 commit comments

Comments
 (0)