Skip to content

Commit

Permalink
Updated CHANGES and system versions for 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
binghe committed Oct 25, 2016
1 parent 56bb4f3 commit 186034c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
11 changes: 8 additions & 3 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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:

Expand Down Expand Up @@ -109,4 +115,3 @@
[TODO]

* New feature: CLISP support some advanced TCP features which CLISP's SOCKET interface not provide

6 changes: 5 additions & 1 deletion usocket-server.asd
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion usocket.asd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 186034c

Please sign in to comment.