Summary
Version 3.0 marks a switchover to the new type-safe builder syntax introduced in 2.0: the old Java-style syntax that was deprecated in 2.4.0 has now been removed.
In addition, the logging API is removed in this release.
Changes in detail:
RegexBuilder()
public constructor removed: replace withregex { ... }
buildRegex()
removed: replace withregex { ... }
buildPattern()
removed: replace withpattern { ... }
startGroup() ... endGroup()
removed: replace withgroup { ... }
startNamedGroup() ... endGroup()
removed: replace withnamedGroup { ... }
startNonCapturingGroup() ... endGroup()
removed: replace withnonCapturingGroup { ... }
addLogger()
removed: no replacement