Skip to content

Commit

Permalink
release 0.7.0 (#70)
Browse files Browse the repository at this point in the history
* release 0.7.0

* short
  • Loading branch information
crflynn authored Jul 12, 2022
1 parent 89e230a commit 90ffba8
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 36 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -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+

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
62 changes: 31 additions & 31 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <crf204@gmail.com>"]
license = "MIT"
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion stochastic/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 90ffba8

Please sign in to comment.