Checks if the currentVersion is greater than or equal to the minimumVersion. Both version strings must follow the "xx.xx.xx" format.
The minimum version required (e.g., "1.2.3")
The current version to check (e.g., "1.2.4")
true if currentVersion >= minimumVersion, otherwise false.
Error if either version string does not match the expected format.
Checks if the currentVersion is greater than or equal to the minimumVersion. Both version strings must follow the "xx.xx.xx" format.