[bknr-cvs] edi changed trunk/thirdparty/drakma/

BKNR Commits bknr at bknr.net
Wed Aug 31 13:46:19 UTC 2011


Revision: 4682
Author: edi
URL: http://bknr.net/trac/changeset/4682

Prepare for 1.2.4 release

U   trunk/thirdparty/drakma/CHANGELOG.txt
U   trunk/thirdparty/drakma/conditions.lisp
U   trunk/thirdparty/drakma/cookies.lisp
U   trunk/thirdparty/drakma/doc/index.html
U   trunk/thirdparty/drakma/drakma.asd
U   trunk/thirdparty/drakma/packages.lisp
U   trunk/thirdparty/drakma/read.lisp
U   trunk/thirdparty/drakma/request.lisp
U   trunk/thirdparty/drakma/specials.lisp
U   trunk/thirdparty/drakma/util.lisp

Modified: trunk/thirdparty/drakma/CHANGELOG.txt
===================================================================
--- trunk/thirdparty/drakma/CHANGELOG.txt	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/CHANGELOG.txt	2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,3 +1,5 @@
+Version 1.2.4
+2011-08-31
 Make sure GET parameters are always URL-encoded
 Add :RANGE keyword argument (Hans Hübner)
 Better handling of optional filenames when uploading (Stas Boukarev)

Modified: trunk/thirdparty/drakma/conditions.lisp
===================================================================
--- trunk/thirdparty/drakma/conditions.lisp	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/conditions.lisp	2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: ODD-STREAMS; Base: 10 -*-
 ;;; $Header: /usr/local/cvsrep/odd-streams/conditions.lisp,v 1.5 2007/12/31 01:08:45 edi Exp $
 
-;;; Copyright (c) 2008-2010, Dr. Edmund Weitz.  All rights reserved.
+;;; Copyright (c) 2008-2011, Dr. Edmund Weitz.  All rights reserved.
 
 ;;; Redistribution and use in source and binary forms, with or without
 ;;; modification, are permitted provided that the following conditions

Modified: trunk/thirdparty/drakma/cookies.lisp
===================================================================
--- trunk/thirdparty/drakma/cookies.lisp	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/cookies.lisp	2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
 ;;; $Header: /usr/local/cvsrep/drakma/cookies.lisp,v 1.15 2008/01/14 01:57:01 edi Exp $
 
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz.  All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz.  All rights reserved.
 
 ;;; Redistribution and use in source and binary forms, with or without
 ;;; modification, are permitted provided that the following conditions

Modified: trunk/thirdparty/drakma/doc/index.html
===================================================================
--- trunk/thirdparty/drakma/doc/index.html	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/doc/index.html	2011-08-31 13:46:19 UTC (rev 4682)
@@ -656,7 +656,7 @@
 
 Drakma together with this documentation can be downloaded
 from <a href="http://weitz.de/files/drakma.tar.gz">http://weitz.de/files/drakma.tar.gz</a>.
-The current version is 1.2.3.  Drakma can be installed
+The current version is 1.2.4.  Drakma can be installed
 via <a href="http://www.cliki.net/asdf">ASDF</a> and depends on the
 open source
 libraries <a href="http://www.cliki.net/cl-base64">CL-BASE64</a> (use

Modified: trunk/thirdparty/drakma/drakma.asd
===================================================================
--- trunk/thirdparty/drakma/drakma.asd	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/drakma.asd	2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
 ;;; $Header: /usr/local/cvsrep/drakma/drakma.asd,v 1.49 2008/05/24 03:21:22 edi Exp $
 
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz.  All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz.  All rights reserved.
 
 ;;; Redistribution and use in source and binary forms, with or without
 ;;; modification, are permitted provided that the following conditions
@@ -38,7 +38,7 @@
 
 (in-package :drakma-asd)
 
-(defvar *drakma-version-string* "1.2.3"
+(defvar *drakma-version-string* "1.2.4"
   "Drakma's version number as a string.")
 
 ;; we export its name so we can import it later

Modified: trunk/thirdparty/drakma/packages.lisp
===================================================================
--- trunk/thirdparty/drakma/packages.lisp	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/packages.lisp	2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-USER; Base: 10 -*-
 ;;; $Header: /usr/local/cvsrep/drakma/packages.lisp,v 1.22 2008/01/14 01:57:01 edi Exp $
 
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz.  All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz.  All rights reserved.
 
 ;;; Redistribution and use in source and binary forms, with or without
 ;;; modification, are permitted provided that the following conditions

Modified: trunk/thirdparty/drakma/read.lisp
===================================================================
--- trunk/thirdparty/drakma/read.lisp	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/read.lisp	2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
 ;;; $Header: /usr/local/cvsrep/drakma/read.lisp,v 1.17 2008/05/25 11:35:20 edi Exp $
 
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz.  All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz.  All rights reserved.
 
 ;;; Redistribution and use in source and binary forms, with or without
 ;;; modification, are permitted provided that the following conditions

Modified: trunk/thirdparty/drakma/request.lisp
===================================================================
--- trunk/thirdparty/drakma/request.lisp	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/request.lisp	2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
 ;;; $Header: /usr/local/cvsrep/drakma/request.lisp,v 1.58 2008/05/30 11:30:45 edi Exp $
 
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz.  All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz.  All rights reserved.
 
 ;;; Redistribution and use in source and binary forms, with or without
 ;;; modification, are permitted provided that the following conditions

Modified: trunk/thirdparty/drakma/specials.lisp
===================================================================
--- trunk/thirdparty/drakma/specials.lisp	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/specials.lisp	2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
 ;;; $Header: /usr/local/cvsrep/drakma/specials.lisp,v 1.19 2008/01/14 01:57:02 edi Exp $
 
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz.  All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz.  All rights reserved.
 
 ;;; Redistribution and use in source and binary forms, with or without
 ;;; modification, are permitted provided that the following conditions

Modified: trunk/thirdparty/drakma/util.lisp
===================================================================
--- trunk/thirdparty/drakma/util.lisp	2011-08-31 13:44:01 UTC (rev 4681)
+++ trunk/thirdparty/drakma/util.lisp	2011-08-31 13:46:19 UTC (rev 4682)
@@ -1,7 +1,7 @@
 ;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: DRAKMA; Base: 10 -*-
 ;;; $Header: /usr/local/cvsrep/drakma/util.lisp,v 1.36 2008/05/30 11:30:45 edi Exp $
 
-;;; Copyright (c) 2006-2010, Dr. Edmund Weitz.  All rights reserved.
+;;; Copyright (c) 2006-2011, Dr. Edmund Weitz.  All rights reserved.
 
 ;;; Redistribution and use in source and binary forms, with or without
 ;;; modification, are permitted provided that the following conditions





More information about the Bknr-cvs mailing list