From 186034cb77ed6995b50bc2c74b804cbe6c840f35 Mon Sep 17 00:00:00 2001 From: "Chun Tian (binghe)" Date: Tue, 25 Oct 2016 22:52:37 +0200 Subject: [PATCH] Updated CHANGES and system versions for 0.7.0 release --- CHANGES | 11 ++++++++--- usocket-server.asd | 6 +++++- usocket.asd | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 16e5d75..9d33143 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,13 @@ -0.6.6: +0.7.0: +* General: Separated USOCKET and USOCKET-SERVER systems (only the server part depends on Portable-threads) +* General: USOCKET now depends on SPLIT-SEQUENCE (the exactly same vendor code is removed from usocket code base) +* New feature: [LW] (SOCKET-OPTION :TCP-NODELAY) and its SETF version now works on LispWorks 4/5/6/7. +* New feature: [LW] SOCKET-CONNECT now supports setting "tcp_nodelay" in version 4.x and 5.0. * Bugfix: [CCL] fixed issues in SOCKET-SHUTDOWN -* Bugfix: [CLISP] fixed issues in WAIT-FOR-INPUT (patch from vibs29, #27) +* Bugfix: [CLISP] fixed issues in WAIT-FOR-INPUT (Thanks to a patch by @vibs29, #27) +* Bugfix: [LW] fixed loading in version <= 6.0 (actually 0.6.5 only fixed loading in LW 6.1) +* Bugfix: [ECL] all compilation warnings were checked and fixed. 0.6.5: @@ -109,4 +115,3 @@ [TODO] * New feature: CLISP support some advanced TCP features which CLISP's SOCKET interface not provide - diff --git a/usocket-server.asd b/usocket-server.asd index 62a4099..c9e130b 100644 --- a/usocket-server.asd +++ b/usocket-server.asd @@ -1,9 +1,13 @@ +;;;; -*- Mode: Lisp -*- +;;;; +;;;; See the LICENSE file for licensing information. + (in-package :asdf) (defsystem usocket-server :name "usocket (server)" :author "Chun Tian (binghe)" - :version "1.0" + :version "0.7.0" :licence "MIT" :description "Universal socket library for Common Lisp (server side)" :depends-on (:usocket :portable-threads) diff --git a/usocket.asd b/usocket.asd index f47f57f..7947a0f 100644 --- a/usocket.asd +++ b/usocket.asd @@ -8,7 +8,7 @@ :name "usocket (client)" :author "Erik Enge & Erik Huelsmann" :maintainer "Chun Tian (binghe) & Hans Huebner" - :version "0.6.6-dev" + :version "0.7.0" :licence "MIT" :description "Universal socket library for Common Lisp" :depends-on (#+(or sbcl ecl) :sb-bsd-sockets