diff --git a/Installation/changes.html b/Installation/changes.html
index 549f9fe8a5e..8f1ad2f03f6 100644
--- a/Installation/changes.html
+++ b/Installation/changes.html
@@ -123,6 +123,30 @@ and src/ directories).
+
HalfedgeGraph concept. In particular the most notable changes are:
+ halfedge_descriptor in the specialization of the class boost::graph_traits.halfedge_graph_traits.HalfedgeGraph is considered as an undirected graph. Thus any call to edges
+ should be replaced by halfedges and num_edges now returns the number of (undirected) edges.
+ is_border_edge and is_border_halfedge properties.
+ The free functions is_border and is_border_edge should be used instead.HalfedgeGraph specific free functions.FaceGraph concepts.AABB_halfedge_graph_segment_primitive
+ from the package 3D Fast Intersection and Distance Computation to the API change.AABB_face_graph_triangle_primitive from
+ the package 3D Fast Intersection and Distance Computation to accept model of the newly introduced concepts.boost::graph_traits for OpenMesh::PolyMesh_ArrayKernelT as proof of concept.
+ A OpenMesh::PolyMesh_ArrayKernelT becomes a model of the aforementioned concepts when including
+ CGAL/boost/graph/graph_traits_PolyMesh_ArrayKernelT.h.