File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
4- 4.0.0
4+ 4.0.0 (2025-11-20)
55------------------
66
77* BREAKING: Removed deprecated ` TransactionReport.Builder(InetAddress, Tag) `
Original file line number Diff line number Diff line change 22
33set -eu -o pipefail
44
5+ # Check that we're not on the main branch
6+ current_branch=$( git branch --show-current)
7+ if [ " $current_branch " = " main" ]; then
8+ echo " Error: Releases should not be done directly on the main branch."
9+ echo " Please create a release branch and run this script from there."
10+ exit 1
11+ fi
12+
513changelog=$( cat CHANGELOG.md)
614
715regex='
Original file line number Diff line number Diff line change 7373 <dependency >
7474 <groupId >com.maxmind.geoip2</groupId >
7575 <artifactId >geoip2</artifactId >
76- <version >5.0.0-SNAPSHOT </version >
76+ <version >5.0.0</version >
7777 </dependency >
7878 <dependency >
7979 <groupId >org.junit.jupiter</groupId >
You can’t perform that action at this time.
0 commit comments