diff --git a/CHANGES.html b/CHANGES.html
index 2fa7de792..50598c579 100644
--- a/CHANGES.html
+++ b/CHANGES.html
@@ -58,10 +58,14 @@ us a note on ns-developers mailing list.
Added FqPIE queue disc with L4S mode
Added the ability to configure the primary 20 MHz channel for 802.11 devices operating on channels of width greater than 20 MHz.
Added new ThompsonSamplingWifiManager rate control algorithm.
+Added new PhasedArrayModel, providing a flexible interface for modeling a number of Phase Antenna Array (PAA) models.
Changes to existing API:
- The WifiAckPolicySelector class has been replaced by the WifiAckManager class. Correspondingly, the ConstantWifiAckPolicySelector has been replaced by the WifiDefaultAckManager class. A new WifiProtectionManager abstract base class and WifiDefaultProtectionManager concrete class have been added to implement different protection policies.
+- The class ThreeGppAntennaArrayModel has been replaced by UniformPlanarArray, extending the PhasedArrayModel interface.
+- The Angles struct is now a class, with robust setters and getters (public struct variables phi and theta are now private class variables m_azimuth and m_inclination), overloaded operator<< and operator>> and a number of utilities.
+- AntennaModel child classes have been extended to produce 3D radiation patterns. Attributes such as Beamwidth have thus been separated into Vertical/HorizontalBeamwidth.
Changes to build system:
@@ -77,6 +81,7 @@ us a note on ns-developers mailing list.
- Support for Greenfield mode (aka HT_GF) has been dropped from wifi.
- Some wifi/src/model files were moved to non-ht, ht, vht, he, and rate-control subfolders.
- The wifi BCC AWGN tables have been aligned with the ones provided by MATLAB and users may note a few dB difference when using BCC at high SNR and high MCS.
+- ThreeGppChannelModel has been fixed: cluster and sub-cluster angles could have been generated with inclination angles outside the inclination range [0, pi], and have now been constrained to the correct range.
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index b36278f1a..7dc9ddd04 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -39,9 +39,12 @@ New user-visible features
- (wifi) Add ThompsonSamplingWifiManager rate control algorithm.
- (traffic-control) Added FqCobalt queue disc with L4S features and set associative hash.
- (traffic-control) Added FqPIE queue disc with L4S mode.
+- (antenna) Added PhasedArrayModel, providing a flexible interface for modeling a number of Phase Antenna Array (PAA) models
+- (antenna) Improved the Angles class to be more robust and user-friendly.
Bugs fixed
----------
+- (antenna) Fix random angle generation for the 3gpp channel model.
Release 3.33
============