From 0144f9a3287a3b17bb17961dd1b283da8790eb22 Mon Sep 17 00:00:00 2001 From: Dieter Weber Date: Tue, 18 Apr 2023 14:48:00 +0200 Subject: [PATCH] Bump version and changelog for minor release --- README.md | 4 ++++ src/sparseconverter/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c717973..bae7110 100644 --- a/README.md +++ b/README.md @@ -76,6 +76,10 @@ and to perform efficient conversion to supported formats as needed. ## Changelog +### 0.3.1 + +* Include version constraint for `sparse`. + ### 0.3.0 * Introduce `conversion_cost()` to obtain a value roughly proportional to the conversion cost diff --git a/src/sparseconverter/__init__.py b/src/sparseconverter/__init__.py index 39630ce..db000e7 100644 --- a/src/sparseconverter/__init__.py +++ b/src/sparseconverter/__init__.py @@ -9,7 +9,7 @@ import sparse -__version__ = '0.4.0.dev0' +__version__ = '0.3.1' NUMPY = 'numpy' NUMPY_MATRIX = 'numpy.matrix'