Skip to content

Commit 4e56073

Browse files
committed
Bump next minor version
1 parent bd881c2 commit 4e56073

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/release-scheduler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
# List of active maintenance branches.
17-
branch: [ main, 1.1.x ]
17+
branch: [ main, 1.2.x, 1.1.x ]
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout

git/hooks/prepare-forward-merge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require 'net/http'
44
require 'yaml'
55
require 'logger'
66

7-
$main_branch = "1.2.x"
7+
$main_branch = "1.3.x"
88

99
$log = Logger.new(STDOUT)
1010
$log.level = Logger::WARN

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=1.2.2-SNAPSHOT
1+
version=1.3.0-SNAPSHOT
22
org.gradle.jvmargs=-Xmx3g -XX:+HeapDumpOnOutOfMemoryError
33
org.gradle.parallel=true
44
org.gradle.caching=true

oauth2-authorization-server/src/main/java/org/springframework/security/oauth2/server/authorization/util/SpringAuthorizationServerVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*/
2424
public final class SpringAuthorizationServerVersion {
2525
private static final int MAJOR = 1;
26-
private static final int MINOR = 2;
26+
private static final int MINOR = 3;
2727
private static final int PATCH = 0;
2828

2929
/**

0 commit comments

Comments
 (0)