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
.jcheck/conf
, modify theversion
property in the[general]
section to increment the JBS version number fromjfx$N
tojfx$N+1
. -
In
build.properties
, modify the following properties to increment the feature version number fromN
toN+1
:
jfx.release.major.version
- In
modules/javafx.base/src/test/java/test/com/sun/javafx/runtime/VersionInfoTest.java
, modify theFEATURE
variable 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
.jcheck/conf
, modify theversion
property in the[general]
section to increment the JBS version number fromjfx$N
tojfx$N.0.1
or fromjfx$N.0.M
tojfx$N.0.$M+1
. -
In
build.properties
, modify thejfx.release.security.version
property to increment the security version number fromM
toM+1
.