Skip to content

Commit f2cb79e

Browse files
author
Do Kester
committed
finishing...
1 parent ae515b3 commit f2cb79e

File tree

2 files changed

+18
-8
lines changed

2 files changed

+18
-8
lines changed

README.md

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@ Citation index:
1010
DOI: 10.5281/zenodo.2597200
1111

1212

13-
## What's new in versions 2.4.4
14-
* Moved BayesicFitting/BayesicFitting/documentation to BayesicFitting/docs
15-
* Added a references.md file which collects (external) references.
16-
* Updated the docs files.
17-
* Handling of weight in accordance with the definition in the Glossary.
18-
* Add keyword tail= to formatter to display last items of an array.
13+
## What's new in versions 2.5.0
14+
* Add new models: BasicSplinesModel and SplinesDynamicModel
15+
* Option for constraints on the likelihood
16+
* Option for slow engines (working every slow-th iteration in NestedSampler)
17+
* Restructure growPrior setting
18+
* Print formatting in NestedSampler
19+
* Adapt to SplinesDynamicModel
20+
* Homogenized and improved plotoptions in test harnesses
21+
* Three more exmaples added
1922

2023
## Content
2124

@@ -266,6 +269,13 @@ More work needs to be done in:
266269
* Add random seed to several examples to make them more stable.
267270

268271
+ 17 Mar 2020 version 2.4.4
272+
* Moved BayesicFitting/BayesicFitting/documentation to BayesicFitting/docs
273+
* Added a references.md file which collects (external) references.
274+
* Updated the docs files.
275+
* Handling of weight in accordance with the definition in the Glossary.
276+
* Add keyword tail= to formatter to display last items of an array.
277+
278+
+ 4 Jun 2020 version 2.5.0
269279
* See above in Whats new.
270280

271281

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from setuptools import setup, find_packages
22

3-
__version__ = '2.4.4'
3+
__version__ = '2.5.0'
44

55
with open("README.md", "r") as fh:
66
long_description = fh.read()
@@ -26,7 +26,7 @@
2626
long_description_content_type='text/markdown',
2727
url="https://github.com/dokester/BayesicFitting",
2828
keywords = ['Bayesian', 'modeling', 'evidence', 'statistics', 'analysis',
29-
'optimization','nested sampling', 'fitting'],
29+
'regression', 'inference', 'optimization','nested sampling', 'fitting'],
3030
packages=['BayesicFitting', 'BayesicFitting/source', 'BayesicFitting/source/kernels',
3131
# 'BayesicFitting/alpha',
3232
'BayesicFitting/test', 'BayesicFitting/examples'],

0 commit comments

Comments
 (0)