Here are the instructions for updating the JavaFX release version number for a feature release or security (dot-dot) release. See JDK-8226365 for a recent example.
Here are the steps to increment the JavaFX release version number to a new feature version (for example, from 13 to 14).
- In
build.properties
, modify the following properties to increment the feature version number fromN
toN+1
:
jfx.release.major.version
javadoc.title
javadoc.header
- In
modules/javafx.base/src/test/java/test/com/sun/javafx/runtime/VersionInfoTest.java
, modify the testMajorVersion method to increment the feature version number fromN
toN+1
.
Here are the steps to increment the JavaFX release version number to a new security version (for example, from 13 to 13.0.1).
- In
build.properties
, modify thejfx.release.security.version
property to increment the security version number fromM
toM+1
.