X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=NEWS;h=875c36c42838c8c13b6aefe7388a8060debbb0c5;hb=8f52542e9da8faa2c2650d37e8cba0f13c3b1c0a;hp=90a6eb7b08a57b6782423ad5c8b8d6f912bbff40;hpb=037f06f836c2ed1206bf29cfe3bc40e74b83723b;p=sbcl.git diff --git a/NEWS b/NEWS index 90a6eb7..875c36c 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,25 @@ ;;;; -*- coding: utf-8; -*- +changes in sbcl-1.0.10 relative to sbcl-1.0.9: + * minor incompatible change: the MSI installer on Windows no longer + associates .lisp and .fasl files with the installed SBCL. + * minor incompatible change: :UNIX is no longer present in *FEATURES* + on Windows. (thanks to Luis Oliviera) + * optimization: SLOT-VALUE &co are now ~50% faster for variable slot + names, when the class of the instance is a direct instance + STANDARD-CLASS or FUNCALLABLE-STANDARD-CLASS (making them only 3x + as slow as the constant slot-name case.) + * optimization: member type construction is now O(N) instead + of O(N^2). + * optimization: UNION and NUNION are now O(N+M) for large + inputs as long as the :TEST function is one of EQ, EQL, EQUAL, or + EQUALP. + * enhancement: DEFINE-MODIFY-MACRO lambda-list information is + now more readable in environments like Slime which display it. + (thanks to Tobias C. Rittweiler) + * bug fix: SB-EXT:COMPARE-AND-SWAP was non-atomic unless the compiler + was able to infer the correct argument type for the object on which + the CAS operation was being performed. + changes in sbcl-1.0.9 relative to sbcl-1.0.8: * minor incompatible change: SB-SYS:OUTPUT-RAW-BYTES is deprecated. * enhancement: SB-EXT:FINALIZE accepts a :DONT-SAVE keyword argument, @@ -31,6 +52,13 @@ changes in sbcl-1.0.9 relative to sbcl-1.0.8: command was used. * bug fix: Branch forms are again annotated as branches in the sb-cover annotations. + * bug fix: GCD on MOST-NEGATIVE-FIXNUM no longer causes an infinite loop + on x86-64. (reported by Gregory Vanuxem) + * bug fix: EQUALP could return wrong results for structures with raw + slots (slots with a :TYPE of SINGLE-FLOAT, DOUBLE-FLOAT, or a machine + word). (reported by Vjacheslav Fyodorov) + * bug fix: sb-sprof sampling didn't work on non-x86oid platforms. (patch + by Pierre Mai) changes in sbcl-1.0.8 relative to sbcl-1.0.7: * enhancement: experimental macro SB-EXT:COMPARE-AND-SWAP provides