diff --git a/CHANGES.html b/CHANGES.html
index d452ecfa2..cdb77537c 100644
--- a/CHANGES.html
+++ b/CHANGES.html
@@ -56,10 +56,12 @@ us a note on ns-developers mailing list.
- In class Ipv6Header, new functions SetSource (), SetDestination (), GetSource () and GetDestination () are added, consistent with Ipv4Header. The existing functions had "Address" suffix in each of the function names, and are are deprecated now.
- In class Ipv4InterfaceAddress, new functions SetAddress () and GetAddress () are added, corresponding to SetLocal () and GetLocal () respectively. This is done to keep consistency with Ipv4InterfaceAddress.
+- With the new support for IPv6 Nix-Vector routing, we have all the new APIs corresponding to IPv4 Nix-Vector routing. Specific to the user, there is an Ipv6NixVectorHelper class which can be set in the InternetStackHelper, and works similar to Ipv4NixVectorHelper.
Changes to existing API:
- In class Ipv6Header, the functions SetSourceAddress (), SetDestinationAddress (), GetSourceAddress () and GetDestinationAddress () are deprecated. New corresponding functions are added by removing the "Address" suffix. This change is made for having consistency with Ipv4Header.
+- ipv4-nix-vector-helper.h and ipv4-nix-vector-routing.h have been deprecated in favour of nix-vector-helper.h and nix-vector-routing.h respectively.
Changes to build system:
diff --git a/RELEASE_NOTES b/RELEASE_NOTES
index 070dd3e0d..f726b4a5c 100644
--- a/RELEASE_NOTES
+++ b/RELEASE_NOTES
@@ -28,6 +28,9 @@ New user-visible features
-------------------------
- (internet) Added getters and setters for source and destination in Ipv6Header consistent with Ipv4Header naming.
- (internet) Add new functions SetAddress () and GetAddress () are added, corresponding to SetLocal () and GetLocal () respectively in Ipv4InterfaceAddress to keep consistency with Ipv6InterfaceAddress.
+- (nix-vector-routing) Support for IPv6 Nix-Vector routing. Existing nix-simple and nms-p2p-nix examples are available in IPv6 as well.
+- (nix-vector-routing) ipv4-nix-vector-helper.h has been deprecated in favour of nix-vector-helper.h.
+- (nix-vector-routing) ipv4-nix-vector-routing.h has been deprecated in favour of nix-vector-routing.h.
Bugs fixed
----------