From 3734e72c2b2527736e8616def0c833f7425d4515 Mon Sep 17 00:00:00 2001 From: Dominik Date: Tue, 3 Oct 2023 13:39:17 -0700 Subject: [PATCH] bump v1.4.1 --- CHANGELOG.md | 6 ++++++ mellon/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e2cc1a..12d23d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v1.4.1 + +Drop constraint on NumPy version `numpy<1.25.0` which was introdcuded due to +an incompatibility of `numpy==1.25.0` and `jax<0.4.16`. +See [Jax Change Log](https://jax.readthedocs.io/en/latest/changelog.html#jax-0-4-16-sept-18-2023). + # v1.4.0 ## New Features ### `with_uncertainty` Parameter diff --git a/mellon/__init__.py b/mellon/__init__.py index dd29d4b..11756a0 100644 --- a/mellon/__init__.py +++ b/mellon/__init__.py @@ -17,7 +17,7 @@ from . import _conditional as conditional from . import _derivatives as derivatives -__version__ = "1.4.0" +__version__ = "1.4.1" __all__ = [ "DensityEstimator",