diff --git a/CHANGELOG.md b/CHANGELOG.md index 80246ce..dd08d0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # ChoiceModels change log +### 0.2.2 (2020-04-17) + +- production release + ### 0.2.2.dev1 (2020-04-14) - adds a `MergedChoiceTable.from_df()` as an alternative constructor diff --git a/choicemodels/__init__.py b/choicemodels/__init__.py index f504701..c2dc734 100644 --- a/choicemodels/__init__.py +++ b/choicemodels/__init__.py @@ -3,4 +3,4 @@ from .mnl import MultinomialLogit, MultinomialLogitResults -version = __version__ = '0.2.2.dev1' +version = __version__ = '0.2.2' diff --git a/docs/source/index.rst b/docs/source/index.rst index c1aab60..e5c6983 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -8,7 +8,7 @@ ChoiceModels ChoiceModels is a Python library for discrete choice modeling, with utilities for sampling, simulation, and other ancillary tasks. It's part of the `Urban Data Science Toolkit `__ (UDST). -v0.2.2.dev1, released April 14, 2020 +v0.2.2, released April 17, 2020 Contents diff --git a/setup.py b/setup.py index 4f1491a..f7a4b28 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='choicemodels', - version='0.2.2.dev1', + version='0.2.2', description='Tools for discrete choice estimation', long_description=long_description, author='UDST',