From 7f4e5526ae0dcb9e45f5e0ea29e96c1276a5a568 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rog=C3=A9rio=20Sampaio?= Date: Wed, 8 Nov 2023 20:21:24 -0300 Subject: [PATCH] bump version --- CHANGELOG.md | 4 ++++ alive_progress/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b2f9993..c4214c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog +## 3.1.5 - Nov 08, 2023 +- ignore more errors when trying to set hooks (it seems `pyam` uses `setuptools_scm` which does `assert value is sys.stderr` in `setStream()` for whatever reason) + + ## 3.1.4 - May 31, 2023 - support spaces at the start and end of titles and units (removed trim) diff --git a/alive_progress/__init__.py b/alive_progress/__init__.py index 92c6606..2d28b98 100644 --- a/alive_progress/__init__.py +++ b/alive_progress/__init__.py @@ -1,7 +1,7 @@ from .core.configuration import config_handler from .core.progress import alive_bar, alive_it -VERSION = (3, 1, 4) +VERSION = (3, 1, 5) __author__ = 'Rogério Sampaio de Almeida' __email__ = 'rsalmei@gmail.com'