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 )