1.1 --- a/RELEASE_NOTES Mon Jun 02 10:51:55 2008 -0700
1.2 +++ b/RELEASE_NOTES Mon Jun 02 21:21:16 2008 -0700
1.3 @@ -3,6 +3,16 @@
1.4
1.5 This file contains ns-3 release notes (most recent releases first).
1.6
1.7 +Release 3.0.13 (2008/06/02)
1.8 +========================
1.9 +- point to point links generate ppp pcap traces
1.10 +- point to point links support asymmetrical data rates.
1.11 +- generate doxygen documentation for all attributes and trace sources
1.12 +- add ConfigStore and GtkConfigStore to contrib module
1.13 +- socket API now support tx and rx buffers: implemented for UDP and TCP
1.14 +- ARP cache now supports per-entry pending queues
1.15 +- lots of bugfixes and implementation and API cleanups
1.16 +
1.17 Release 3.0.12 (2008/04/07)
1.18 ========================
1.19 - Add Attribute support to the TypeId metadata system and add
2.1 --- a/VERSION Mon Jun 02 10:51:55 2008 -0700
2.2 +++ b/VERSION Mon Jun 02 21:21:16 2008 -0700
2.3 @@ -1,1 +1,1 @@
2.4 -3.0.12
2.5 +3.0.13
3.1 --- a/doc/modules Mon Jun 02 10:51:55 2008 -0700
3.2 +++ b/doc/modules Mon Jun 02 21:21:16 2008 -0700
3.3 @@ -13,7 +13,7 @@
3.4 * - a Functor class: ns3::Callback
3.5 * - an os-independent interface to get access to the elapsed wall clock time: ns3::SystemWallClockMs
3.6 * - a class to register regression tests with the test manager: ns3::Test and ns3::TestManager
3.7 - * - debugging facilities: \ref logging, \ref assert, \ref error
3.8 + * - debugging facilities: \ref logging, \ref assert
3.9 * - \ref randomvariable
3.10 * - a base class for objects which need to support per-instance "attributes" and
3.11 * trace sources: ns3::ObjectBase
4.1 --- a/doc/release_steps.txt Mon Jun 02 10:51:55 2008 -0700
4.2 +++ b/doc/release_steps.txt Mon Jun 02 21:21:16 2008 -0700
4.3 @@ -6,7 +6,7 @@
4.4 - revise and check in RELEASE_NOTES
4.5 - update and check in VERSION to the latest release number
4.6 - confirm that Doxygen builds cleanly and without warnings
4.7 - (./waf --doxygen), and check in any necessary changes
4.8 + (./waf check; ./waf --doxygen), and check in any necessary changes
4.9 2. ./waf configure; ./waf dist
4.10 - this will create a ns-3.0.x.tar.bz2 tarball
4.11 - this will also create a ns-3.0.x-ref-traces.tar.bz2 tarball
4.12 @@ -23,7 +23,7 @@
4.13 6. Run the regression tests on the new release and update the reference traces
4.14 - ./waf --regression
4.15 - ./waf --valgrind --regression (for valgrind version)
4.16 - - There should be no regressions at this time
4.17 + - There should be no regression errors at this time
4.18 - tag ns-3-dev-ref-traces with "release ns-3.0.X"
4.19 hg tag "release ns-3.0.x"
4.20 hg push
5.1 --- a/src/node/application.h Mon Jun 02 10:51:55 2008 -0700
5.2 +++ b/src/node/application.h Mon Jun 02 21:21:16 2008 -0700
5.3 @@ -34,7 +34,7 @@
5.4
5.5 /**
5.6 * \ingroup node
5.7 - * \defgroup application
5.8 + * \defgroup application Application
5.9 *
5.10 * \brief The base class for all ns3 applicationes
5.11 *