Skip to content

Commit

Permalink
versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
robertmartin8 committed Sep 26, 2020
1 parent f6600f8 commit 08e80dd
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cookbook/1-RiskReturnModels.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
{
"data": {
"text/plain": [
"'1.2.5'"
"'1.2.6'"
]
},
"execution_count": 1,
Expand Down
2 changes: 1 addition & 1 deletion cookbook/2-Mean-Variance-Optimisation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
{
"data": {
"text/plain": [
"'1.2.5'"
"'1.2.6'"
]
},
"execution_count": 6,
Expand Down
2 changes: 1 addition & 1 deletion cookbook/3-Advanced-Mean-Variance-Optimisation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@
{
"data": {
"text/plain": [
"'1.2.5'"
"'1.2.6'"
]
},
"execution_count": 5,
Expand Down
2 changes: 1 addition & 1 deletion cookbook/4-Black-Litterman-Allocation.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@
{
"data": {
"text/plain": [
"'1.2.5'"
"'1.2.6'"
]
},
"execution_count": 6,
Expand Down
7 changes: 7 additions & 0 deletions docs/Roadmap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,13 @@ Matplotlib now required dependency; support for pandas 1.0.
- Added an error check for ``efficient_risk``.
- Small improvements to docs.

1.2.6
-----

- Fixed order-dependence bug in Black-Litterman ``market_implied_prior_returns``
- Fixed inaccuracy in BL cookbook.
- Fixed bug in exponential covariance.

1.1.0
=====

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = "1.2"
# The full version, including alpha/beta/rc tags.
release = "1.2.5"
release = "1.2.6"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<img src="https://img.shields.io/badge/python-v3-brightgreen.svg?style=flat-square"
alt="python"></a> &nbsp;
<a href="https://pypi.org/project/PyPortfolioOpt/">
<img src="https://img.shields.io/badge/pypi-v1.2.5-brightgreen.svg?style=flat-square"
<img src="https://img.shields.io/badge/pypi-v1.2.6-brightgreen.svg?style=flat-square"
alt="python"></a> &nbsp;
<a href="https://opensource.org/licenses/MIT">
<img src="https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square"
Expand Down
2 changes: 1 addition & 1 deletion pypfopt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .risk_models import CovarianceShrinkage


__version__ = "1.2.5"
__version__ = "1.2.6"

__all__ = [
"market_implied_prior_returns",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "PyPortfolioOpt"
version = "1.2.5"
version = "1.2.6"
description = "Financial portfolio optimisation in python"
license = "MIT"
authors = ["Robert Andrew Martin <martin.robertandrew@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

setup(
name="PyPortfolioOpt",
version="1.2.5",
version="1.2.6",
description="Financial portfolio optimisation in python",
long_description=desc,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 08e80dd

Please sign in to comment.