Skip to content

Commit

Permalink
Merge pull request #117 from bambinos/new-release
Browse files Browse the repository at this point in the history
version bump --> 0.1.1
  • Loading branch information
tyarkoni committed Dec 11, 2017
2 parents 3651f7a + 3f475c1 commit 484b786
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 5 deletions.
8 changes: 8 additions & 0 deletions Changelog.md
@@ -1,5 +1,13 @@
# Changelog

## 0.1.1 (December 11, 2017)
Minor release for bugfixes and minor improvements. Changes include:
* Bug that was causing an incorrect link function to be used in the PyMC3 backend when fitting logistic models.
* Fixed handling of missing values in categorical variables.
* Fixed bug in set_priors() when passing numerical values for scale.
* Improved internal handling of custom priors.
* Preliminary Sphinx docs (WIP; thanks to @ejolly).

## 0.1.0 (March 31, 2017)
This is a major release that introduces several new features, significant API changes, and a large number of bug fixes and minor improvements. Notable changes include:
* Support for Stan as the sampling back-end (in addition to PyMC3), via the PyStan package.
Expand Down
2 changes: 1 addition & 1 deletion bambi/version.py
@@ -1 +1 @@
__version__ = '0.1.0'
__version__ = '0.1.1'
13 changes: 9 additions & 4 deletions conf.py
Expand Up @@ -15,6 +15,11 @@
import sys
import os

# Read version
mod_dir = os.path.dirname(__file__)
with open(os.path.join(mod_dir, 'bambi', 'version.py')) as f:
exec(f.read())

# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
Expand Down Expand Up @@ -50,17 +55,17 @@

# General information about the project.
project = u'bambi'
copyright = u'2017, Tal Yarkoni'
author = u'Tal Yarkoni'
copyright = u'2017, developers of bambi'
author = u'developers of bambi'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = u'0.1.0'
version = __version__
# The full version, including alpha/beta/rc tags.
release = u'0.1.0'
release = __version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 484b786

Please sign in to comment.