Skip to content
Snippets Groups Projects
Commit db462282 authored by Henrik Hjelte's avatar Henrik Hjelte
Browse files

version 0.5.0

Ignore-this: aa3a3b933a4c89e2ee1f911a7d817509

darcs-hash:f4113722f0acc0f3ab7f60d9e880a8d19ca0292c
parent 1448a619
Branches
No related tags found
No related merge requests found
(This is the MIT / X Consortium license as taken from
http://www.opensource.org/licenses/mit-license.html)
Copyright (c) 2006-2008 Henrik Hjelte
Copyright (c) 2006-20012 Henrik Hjelte
Copyright (c) 2008 Hans Hübner (code from the program YASON)
Permission is hereby granted, free of charge, to any person obtaining
......
;;; -*- lisp -*-
;;; Copyright (c) 2006-2010 Henrik Hjelte
;;; Copyright (c) 2006-2012 Henrik Hjelte
;;; Copyright (c) 2008 Hans Hübner (code from the program YASON)
;;; All rights reserved.
;;; See the file LICENSE for terms of use and distribution.
......@@ -20,8 +21,8 @@
(defsystem :cl-json
:name "cl-json"
:description "JSON in Lisp. JSON (JavaScript Object Notation) is a lightweight data-interchange format."
:version "0.4.2"
:maintainer "Henrik Hjelte <henrik@evahjelte.com>"
:version "0.5.0"
:maintainer "Henrik Hjelte <henrik@henrikhjelte.com>"
:licence "MIT"
:in-order-to ((test-op (test-op "cl-json.test")))
:components ((:static-file "cl-json.asd")
......@@ -42,7 +43,6 @@
:in-order-to ((test-op (load-op "cl-json.test")))
:components ((:module :t
:components ((:file "package")
;; (:file "testjson" :depends-on ("package" "testdecoder" "testencoder" "testmisc"))
(:file "testmisc" :depends-on ("package" "testdecoder" "testencoder"))
(:file "testdecoder" :depends-on ("package"))
(:file "testencoder" :depends-on ("package"))))))
......@@ -54,7 +54,3 @@
(defparameter *cl-json-directory*
(make-pathname :directory (pathname-directory *load-truename*)))
......@@ -147,14 +147,13 @@
</ul>
<h3>How do I download CL-JSON?</h3>
<p>The repo is now on git and hosted on <a href="https://github.com/hankhero/cl-json">github</a>
<p>An older <a href="http://www.darcs.net/">Darcs</a> repository is also available with changes up to October 2012, but will be deprecated. <a href="http://common-lisp.net/cgi-bin/darcsweb.cgi?r=cl-json-cl-json;a=summary">Browse patches</a>
<p>A <a href="http://www.darcs.net/">Darcs</a> repository is available. <a href="http://common-lisp.net/cgi-bin/darcsweb.cgi?r=cl-json-cl-json;a=summary">Browse patches</a>
<div class="example"><pre class="in-code">
darcs get http://common-lisp.net/project/cl-json/darcs/cl-json
</pre></div>
<p>The prefered way to install is with quicklisp or the git-repo.</p>
<p>Older releases can be downloaded <a href="http://www.cliki.net/cl-json">here</a>.</p>
<p>The latest release can be downloaded <a href="http://www.cliki.net/cl-json">here</a>.</p>
<p>You can also install it by asdf-install.</p>
<p>History has shown that the darcs version is probably better than the latest release.</p>
<h3>History</h3>
<ul>
<li>2006 First version by Henrik Hjelte.</li>
......@@ -163,7 +162,6 @@ darcs get http://common-lisp.net/project/cl-json/darcs/cl-json
<li>aug 2009 safe-json-intern and simplified-camel-case-to-lisp. </li>
<li>dec 2009 New alternative encoder, the explicit sexp-encoder. Not documented below, but with testcases.</li>
<li>june 2011 Json-rpc version 2 format by Robert Goldman. Version 0.4.1</li>
<li>2012 Move to git and github</li>
</ul>
......
......@@ -3,6 +3,7 @@
;;;; See the file LICENSE for terms of use and distribution.
(defpackage :json
(:nicknames :cl-json)
(:use :common-lisp)
(:export
;; common.lisp
......@@ -116,6 +117,7 @@
#:finalize-inheritance
))
(defpackage :json-rpc
(:use :common-lisp :json)
(:shadow #:defconstant)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment