From 2e52de159a5ce4fc4ddd1631515672d01e73578f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Filipe=20Brand=C3=A3o?= Date: Thu, 23 Jun 2022 17:24:09 +0100 Subject: [PATCH] Prepare release 0.8.3 --- CHANGELOG.md | 4 ++-- amplpy/__init__.py | 2 +- docs/requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d2e828..92963c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## 0.8.3 - 2022-06-## -- Improve handling of numpy types. +## 0.8.3 - 2022-06-23 +- Improved handling of numpy types. ## 0.8.2 - 2022-05-27 - [BREAKING] Raise RuntimeError in Entity.get_values if there are any issues with the data. diff --git a/amplpy/__init__.py b/amplpy/__init__.py index 34eaf5c..759a446 100644 --- a/amplpy/__init__.py +++ b/amplpy/__init__.py @@ -26,7 +26,7 @@ from .environment import Environment from .ampl import AMPL -__version__ = "0.8.3b0" +__version__ = "0.8.3" def _list_aliases(): diff --git a/docs/requirements.txt b/docs/requirements.txt index ab15d8b..3e0bcb4 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,4 +1,4 @@ -amplpy==0.8.3b0 +amplpy==0.8.3 #pydata-sphinx-theme==0.7.1 ampl-sphinx-theme sphinx==4.2.0 diff --git a/setup.py b/setup.py index e571a5d..b13bd06 100644 --- a/setup.py +++ b/setup.py @@ -123,7 +123,7 @@ def link_args(): setup( name="amplpy", - version="0.8.3b0", + version="0.8.3", description="Python API for AMPL", long_description=__doc__, license="BSD-3",