diff --git a/CHANGES.html b/CHANGES.html
index 322646dbf..b29c097bc 100644
--- a/CHANGES.html
+++ b/CHANGES.html
@@ -58,6 +58,11 @@ us a note on ns-developers mailing list.
Time::RoundTo (unit) allows time to be rounded to the nearest integer multiple of unit
Time::RoundTo (unit) allows time to be rounded to the nearest integer multiple of unit
UdpClient now can report both transmitted and received bytes.
+A new MPI Enable() variant was introduced that takes a user-supplied MPI_Communicator, allowing for partitioning of the MPI processes.
+A Length class has been introduced to allow users to replace the use of raw numbers (ints, doubles) that have implicit lengths with a class that represents lengths with an explicit unit.
+A flexible CsvReader class has been introduced to allow users to read in csv- or tab-delimited data.
+The ListPositionAllocator can now input positions from a csv file.
+k
Changes to existing API:
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 321e5bfe9..5fef65d7e 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -17,6 +17,10 @@ New user-visible features
- (wifi) A new table-based error model based on link simulations has been
added (TableBasedErrorRateModel) and made the default for 802.11n/ac/ax simulations.
- (wifi) It is now possible to select either BCC or LDPC FEC encoding.
+- (mpi) A new Enable call was added that takes a user supplied MPI_Communicator, which enables (optional) partitioning of the MPI processes. See !389.
+- (core) A new Length class has been added to represent lengths with an explicit unit, rather than the use of raw numbers (ints, doubles) with implicit length.
+- (core) A flexible CsvReader class has been introduced to allow users to read in csv- or tab-delimited data.
+- (mobility) The ListPositionAllocator can now input positions from a csv file.
Bugs fixed
----------