diff --git a/CHANGES b/CHANGES new file mode 100644 index 0000000..aa6b39e --- /dev/null +++ b/CHANGES @@ -0,0 +1,6 @@ +0.9.0 +===== + +* updated rebar to latest (git commit: a43381fe0bd3d6929b31) +* integrated all tests into most relevant modules, there's now no useless .beam files to pollute production code +* finalized api. no public function exports or function options will be REMOVED, though some may still be added \ No newline at end of file diff --git a/doc/overview.edoc b/doc/overview.edoc index 81c78a3..110076d 100644 --- a/doc/overview.edoc +++ b/doc/overview.edoc @@ -1,6 +1,6 @@ @author Alisdair Sullivan @copyright 2010 Alisdair Sullivan -@version really, really beta +@version 0.9.0 @title jsx @doc jsx is a json parser with an easily transformable representation, the ability to parse streams incrementally, low memory overhead and a clean generator based interface. it also includes an implementation of eep0018, a json reformatter and a json verifier diff --git a/src/jsx.erl b/src/jsx.erl index 4febd49..563888b 100644 --- a/src/jsx.erl +++ b/src/jsx.erl @@ -23,7 +23,7 @@ %% @author Alisdair Sullivan %% @copyright 2010 Alisdair Sullivan -%% @version really, really beta +%% @version 0.9.0 %% @doc this module defines the interface to the jsx json parsing library -module(jsx).