diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 358571d..50325a5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,14 +1,16 @@ Release Changelog ----------------- -0.6.0 (TBD) -~~~~~~~~~~~ +0.6.0 (2020-11-02) +~~~~~~~~~~~~~~~~~~ * Removes zero args for dropping first sample vector value (breaking) * Changes to diffusion process classes to align with common definitions (breaking) * Refactor into processes and utils subpackages (breaking) * Move base class checks into utils.validation and create abstract base classes for processes -* Provide RNG control and seeding functionality per instance and globally. +* Provide RNG control and seeding functionality per instance and globally +* Add Dirichlet process +* Add generalized Diffusion process 0.5.0 (2020-09-22) ~~~~~~~~~~~~~~~~~~ diff --git a/pyproject.toml b/pyproject.toml index 393ea6d..3e94f3e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ line_length = 120 [tool.poetry] name = "stochastic" -version = "0.5.0" +version = "0.6.0" description = "Generate realizations of stochastic processes" authors = ["Flynn "] license = "MIT" diff --git a/stochastic/_version.py b/stochastic/_version.py index 590f5ee..40771df 100644 --- a/stochastic/_version.py +++ b/stochastic/_version.py @@ -2,7 +2,7 @@ __title__ = "stochastic" __description__ = "Stochastic process realizations." __url__ = "https://github.com/crflynn/stochastic" -__version__ = "0.5.0" +__version__ = "0.6.0" __author__ = "Christopher Flynn" __author_email__ = "crf204@gmail.com" __license__ = "MIT"