diff --git a/downloads/swan-lake-release-notes/swan-lake-2201.8.0/RELEASE_NOTE.md b/downloads/swan-lake-release-notes/swan-lake-2201.8.0/RELEASE_NOTE.md index fe5bd206298..13822aa70fe 100644 --- a/downloads/swan-lake-release-notes/swan-lake-2201.8.0/RELEASE_NOTE.md +++ b/downloads/swan-lake-release-notes/swan-lake-2201.8.0/RELEASE_NOTE.md @@ -39,6 +39,14 @@ If you have not installed Ballerina, download the [installers](/downloads/#swanl - Ballerina interoperability implementation may have an impact with the Java 17 support due to any incompatible changes. For example, Java 17 has some restrictions on using Java reflections with internal Java packages. For more information, see the Java 17 release notes. +- A bug related to deciding the types of numeric literals has been fixed. + + ```ballerina + 2f|1 a = 2; // Compilation error now, `2` is considered to be `int`. + 3d|6 b = 3; // Compilation error now, `3` is considered to be `int`. + 3d|4f|6 b = 4; // Compilation error now, `4` is considered to be `int`. + ``` + ## Platform updates ### New features