diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 2afcd900d..20ee461bb 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -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 --git a/VERSION b/VERSION index f93fc9f42..eea30e595 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.12 +3.0.13 diff --git a/doc/modules b/doc/modules index afc272c94..d16f351fb 100644 --- a/doc/modules +++ b/doc/modules @@ -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 --git a/doc/release_steps.txt b/doc/release_steps.txt index aef31952a..a31da0fba 100644 --- a/doc/release_steps.txt +++ b/doc/release_steps.txt @@ -6,7 +6,7 @@ Steps in doing an ns-3 release - 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 @@ Steps in doing an ns-3 release 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 --git a/src/node/application.h b/src/node/application.h index 2834847da..f34a1e5e4 100644 --- a/src/node/application.h +++ b/src/node/application.h @@ -34,7 +34,7 @@ class RandomVariable; /** * \ingroup node - * \defgroup application + * \defgroup application Application * * \brief The base class for all ns3 applicationes *