# HG changeset patch # User Tom Henderson # Date 1212466876 25200 # Node ID 79dba133b5f8a2d6f6f678a22e8519bc155e6a4e # Parent 72be532011a34916eb1c23eed1d310e88caf9c62 update RELEASE_NOTES and a few other files diff -r 72be532011a3 -r 79dba133b5f8 RELEASE_NOTES --- a/RELEASE_NOTES Mon Jun 02 10:51:55 2008 -0700 +++ b/RELEASE_NOTES Mon Jun 02 21:21:16 2008 -0700 @@ -3,6 +3,16 @@ This file contains ns-3 release notes (most recent releases first). +Release 3.0.13 (2008/06/02) +======================== +- point to point links generate ppp pcap traces +- point to point links support asymmetrical data rates. +- generate doxygen documentation for all attributes and trace sources +- add ConfigStore and GtkConfigStore to contrib module +- socket API now support tx and rx buffers: implemented for UDP and TCP +- ARP cache now supports per-entry pending queues +- lots of bugfixes and implementation and API cleanups + Release 3.0.12 (2008/04/07) ======================== - Add Attribute support to the TypeId metadata system and add diff -r 72be532011a3 -r 79dba133b5f8 VERSION --- a/VERSION Mon Jun 02 10:51:55 2008 -0700 +++ b/VERSION Mon Jun 02 21:21:16 2008 -0700 @@ -1,1 +1,1 @@ -3.0.12 +3.0.13 diff -r 72be532011a3 -r 79dba133b5f8 doc/modules --- a/doc/modules Mon Jun 02 10:51:55 2008 -0700 +++ b/doc/modules Mon Jun 02 21:21:16 2008 -0700 @@ -13,7 +13,7 @@ * - a Functor class: ns3::Callback * - an os-independent interface to get access to the elapsed wall clock time: ns3::SystemWallClockMs * - a class to register regression tests with the test manager: ns3::Test and ns3::TestManager - * - debugging facilities: \ref logging, \ref assert, \ref error + * - debugging facilities: \ref logging, \ref assert * - \ref randomvariable * - a base class for objects which need to support per-instance "attributes" and * trace sources: ns3::ObjectBase diff -r 72be532011a3 -r 79dba133b5f8 doc/release_steps.txt --- a/doc/release_steps.txt Mon Jun 02 10:51:55 2008 -0700 +++ b/doc/release_steps.txt Mon Jun 02 21:21:16 2008 -0700 @@ -6,7 +6,7 @@ - revise and check in RELEASE_NOTES - update and check in VERSION to the latest release number - confirm that Doxygen builds cleanly and without warnings - (./waf --doxygen), and check in any necessary changes + (./waf check; ./waf --doxygen), and check in any necessary changes 2. ./waf configure; ./waf dist - this will create a ns-3.0.x.tar.bz2 tarball - this will also create a ns-3.0.x-ref-traces.tar.bz2 tarball @@ -23,7 +23,7 @@ 6. Run the regression tests on the new release and update the reference traces - ./waf --regression - ./waf --valgrind --regression (for valgrind version) - - There should be no regressions at this time + - There should be no regression errors at this time - tag ns-3-dev-ref-traces with "release ns-3.0.X" hg tag "release ns-3.0.x" hg push diff -r 72be532011a3 -r 79dba133b5f8 src/node/application.h --- a/src/node/application.h Mon Jun 02 10:51:55 2008 -0700 +++ b/src/node/application.h Mon Jun 02 21:21:16 2008 -0700 @@ -34,7 +34,7 @@ /** * \ingroup node - * \defgroup application + * \defgroup application Application * * \brief The base class for all ns3 applicationes *