From 4c84c03d803a845e1c559c9140fee853bb00ac2c Mon Sep 17 00:00:00 2001 From: Albert Julius Liu Date: Mon, 24 Jun 2024 00:42:53 -0700 Subject: [PATCH] v1.5.0a1 --- CHANGELOG.md | 1 + src/icepool/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc4dc681..847da897 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ * Add new `again_count` mode for handling `Again`, which limits the total number of dice. * Improved ability to `keep` from both ends for certain types of multiset expressions. * Rename `func` parameters to `function`. +* Improved sorting for `Symbols`; now compares counts in alphabetical order. * Experimental `Die.reroll_to_pool()` method. * Experimental `all_straights_reduce_counts` and `argsort` multiset evaluations. diff --git a/src/icepool/__init__.py b/src/icepool/__init__.py index d00f36af..90aab14d 100644 --- a/src/icepool/__init__.py +++ b/src/icepool/__init__.py @@ -19,7 +19,7 @@ __docformat__ = 'google' -__version__ = '1.5.0a0' +__version__ = '1.5.0a1' from typing import Final