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 theversionproperty in the[general]section to increment the JBS version number fromjfx$Ntojfx$N+1. -
In
build.properties, modify the following properties to increment the feature version number fromNtoN+1:
jfx.release.major.version
- In
modules/javafx.base/src/test/java/test/com/sun/javafx/runtime/VersionInfoTest.java, modify theFEATUREvariable to increment the feature version number fromNtoN+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 theversionproperty in the[general]section to increment the JBS version number fromjfx$Ntojfx$N.0.1or fromjfx$N.0.Mtojfx$N.0.$M+1. -
In
build.properties, modify thejfx.release.security.versionproperty to increment the security version number fromMtoM+1.