diff --git a/CHANGES.html b/CHANGES.html index ab80d15b8..cec78f518 100644 --- a/CHANGES.html +++ b/CHANGES.html @@ -71,6 +71,14 @@ See the documentation for details.

New API:

Changes to existing API:

@@ -83,6 +91,19 @@ See the documentation for details. renamed to GenericPhy interface and moved to a new file generic-phy.h. The related variables and methods have been renamed accordingly.

+
  • Scalar +

    The Scalar type has been removed. Typical code such as: +

    +Time tmp = ...;
    +Time result = tmp * Scalar (5);
    +
    +Can now be rewritten as: +
    +Time tmp = ...;
    +Time result = Time (tmp * 5);
    +
    +

    +
  • Changed behavior:

    diff --git a/RELEASE_NOTES b/RELEASE_NOTES index aa809422e..66f4bc1f1 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -22,6 +22,9 @@ Supported platforms New user-visible features ------------------------- + - int64x64_t is a new type which allows portable and easy to write arithmetic + calculations that require a high degree of fractional precision. + Bugs fixed ---------- The following lists many of the bugs fixed or small feature additions