From 130730ffd795013923e7b1afa17313d8a11eb909 Mon Sep 17 00:00:00 2001 From: Baptiste Lepilleur Date: Sat, 13 Mar 2010 11:14:49 +0000 Subject: [PATCH] Added NEWS.txt that provides a synopsis of the change since the last version. Integrated NEWS.txt in documentation. --- NEWS.txt | 15 +++++++++++++++ doc/jsoncpp.dox | 7 +++++++ doxybuild.py | 1 + 3 files changed, 23 insertions(+) create mode 100644 NEWS.txt diff --git a/NEWS.txt b/NEWS.txt new file mode 100644 index 0000000..184ad93 --- /dev/null +++ b/NEWS.txt @@ -0,0 +1,15 @@ + New in JsonCpp 0.6.0: + --------------------- + +* Compilation + + - LD_LIBRARY_PATH and LIBRARY_PATH environment variables are now propagated to the build + environment as this is required for some compiler installation. + + - Added support for Microsoft Visual Studio 2008 (bug #2930462): + The platform "msvc90" has been added. + + Notes: you need to setup the environment by running vcvars32.bat + (e.g. MSVC 2008 command prompt in start menu) before running scons. + + diff --git a/doc/jsoncpp.dox b/doc/jsoncpp.dox index 02b18fb..1cde6ff 100644 --- a/doc/jsoncpp.dox +++ b/doc/jsoncpp.dox @@ -100,6 +100,13 @@ http://jsoncpp.svn.sourceforge.net/svnroot/jsoncpp/trunk/ To checkout the source, see the following instructions. +\section _news What's New? +The description of latest changes can be found in +NEWS.txt in the top-directory of the project. + +Permanent link to the latest revision of the file in subversion: +latest NEWS.txt + \section _plinks Project links - json-cpp home - json-cpp sourceforge project diff --git a/doxybuild.py b/doxybuild.py index 0a2a6c7..0a31aae 100644 --- a/doxybuild.py +++ b/doxybuild.py @@ -127,6 +127,7 @@ def build_doc( options, make_release=False ): tarball_sources = [ output_dir, 'README.txt', + 'NEWS.txt', 'version' ] tarball_basedir = os.path.join( output_dir, html_output_dirname )