From 7a04eb428d12e8c950b72858e76bd62ac0310134 Mon Sep 17 00:00:00 2001 From: Duane Wilson Date: Wed, 17 Apr 2019 09:14:06 -0300 Subject: [PATCH] v0.6.0 release - Feature: Added `currencies` method to `ExchangeRateTable` class, allowing users to retrieve a list of currency codes. - Feature: Added `candidate_parameters` method to `OptimizationView` class, allowing users to retrieve only the parameters for a given optimization candidate. - Feature: Added `candidate_metrics` method to `OptimizationView` class, allowing users to retrieve only the metrics (objectives and constraints) for a given optimization candidate. - Feature: Added `sensitivity_analysis` method to `OptimizationView` class, allowing users to retrieve the senstivity analysis output for a selected set of candidates. --- analyzere/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/analyzere/__init__.py b/analyzere/__init__.py index 1ca0a88..a9a4498 100644 --- a/analyzere/__init__.py +++ b/analyzere/__init__.py @@ -5,7 +5,7 @@ one_megabyte = 2**20 upload_chunk_size = 16 * one_megabyte tls_verify = True -user_agent = 'analyzere-python 0.5.5-dev' +user_agent = 'analyzere-python 0.6.0-dev' from analyzere.resources import ( # noqa AnalysisProfile, diff --git a/setup.py b/setup.py index d7a06d3..ca4bcd8 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='analyzere', - version='0.5.5', + version='0.6.0', description='Python wrapper for the Analyze Re API.', long_description=readme, url='https://github.com/analyzere/analyzere-python',