X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=NEWS;h=875c36c42838c8c13b6aefe7388a8060debbb0c5;hb=119c1bcd2cfff74d2968209207ea34ba0e1739f7;hp=08610cbfe71531aada0ca15bd6bf7cf69089cc94;hpb=175f390470effba8f6c5c8bf58125a3792cf5ad0;p=sbcl.git diff --git a/NEWS b/NEWS index 08610cb..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,