From 90ffba84523751dd205e17c50c84be9904c13330 Mon Sep 17 00:00:00 2001 From: Flynn Date: Mon, 11 Jul 2022 23:22:30 -0400 Subject: [PATCH] release 0.7.0 (#70) * release 0.7.0 * short --- CHANGELOG.rst | 6 ++-- Makefile | 2 +- pyproject.toml | 62 +++++++++++++++++++++--------------------- stochastic/_version.py | 2 +- 4 files changed, 36 insertions(+), 36 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index d01a7fb..ac0e31e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,10 +1,10 @@ Release Changelog ----------------- -0.7.0 (tbd) -~~~~~~~~~~~ +0.7.0 (2022-07-11) +~~~~~~~~~~~~~~~~~~ -* Don't install package assets to ``site-packages`` folder +* Don't install meta assets to ``site-packages`` folder * Pass GBM ``rng`` to underlying BrownianMotion * Update dependencies, and support Python 3.8+ diff --git a/Makefile b/Makefile index e300b2a..2770c57 100644 --- a/Makefile +++ b/Makefile @@ -29,4 +29,4 @@ publish: clean build poetry publish release: clean build - ghr -u crflynn -r stochastic -c $(shell git rev-parse HEAD) -delete -b "release" -n $(shell poetry version | tail -c +12) $(shell poetry version | tail -c +12) dist/ + ghr -u crflynn -r stochastic -c $(shell git rev-parse HEAD) -delete -b "release" -n $(shell poetry version --short) $(shell poetry version --short) dist/ diff --git a/pyproject.toml b/pyproject.toml index b09a706..e1c47e8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,36 +1,6 @@ -[tool.black] -line-length = 88 -target-version = ['py38'] -include = '\.pyi?$' -exclude = ''' - -( - /( - \.eggs - | \.git - | \.hg - | \.mypy_cache - | \.tox - | \.venv - | _build - | buck-out - | build - | dist - )/ -) -''' - -[tool.isort] -force_single_line = true -multi_line_output = 3 -include_trailing_comma = true -force_grid_wrap = 0 -use_parentheses = true -line_length = 88 - [tool.poetry] name = "stochastic" -version = "0.6.0" +version = "0.7.0" description = "Generate realizations of stochastic processes" authors = ["Flynn "] license = "MIT" @@ -78,3 +48,33 @@ isort = "^5.10.1" [build-system] requires = ["poetry>=0.12"] build-backend = "poetry.masonry.api" + +[tool.black] +line-length = 88 +target-version = ['py38'] +include = '\.pyi?$' +exclude = ''' + +( + /( + \.eggs + | \.git + | \.hg + | \.mypy_cache + | \.tox + | \.venv + | _build + | buck-out + | build + | dist + )/ +) +''' + +[tool.isort] +force_single_line = true +multi_line_output = 3 +include_trailing_comma = true +force_grid_wrap = 0 +use_parentheses = true +line_length = 88 diff --git a/stochastic/_version.py b/stochastic/_version.py index 40771df..faff649 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.6.0" +__version__ = "0.7.0" __author__ = "Christopher Flynn" __author_email__ = "crf204@gmail.com" __license__ = "MIT"