docs/05-changelog.markdown @ 2e90748b1555
Stop passing NIL as :hash-function during hash table construction
At least in SBCL 2.0.6, passing :hash-function NIL to make-hash-table causes an
UNDEFINED-FUNCTION error. Since it's unlikely that any other CL implementation
will have useful behavior for an explicit NIL argument that's different from not
passing it at all, it's better to not pass :hash-function if it's set to NIL.
author |
Jacek TeMPOraL Złydach <temporal.pl@gmail.com> |
date |
Sat, 18 Jul 2020 01:03:54 +0200 |
parents |
0434eb58dde3 |
children |
e5f60ffb3dc4 |
Changelog
=========
Here's the list of changes in each released version.
[TOC]
v1.3.0
------
Added the `arbitrary-vertex` function to return an arbitrary vertex of
a digraph.
v1.2.1
------
Fixed a bug in `copy-digraph`.
v1.2.0
------
Added `rootp` and `leafp` predicates to check whether a vertex is a root/leaf in
a digraph.
v1.1.0
------
Minor internal cleanup.
If you pass an invalid `strategy` argument to `reachablep` there will now be
a restart available to supply a new value, instead of just crashing and burning.
v1.0.0
------
Initial version.