Skip to content

Commit bf7f4f4

Browse files
committed
Bump next minor version
1 parent 41799cc commit bf7f4f4

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
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.3.x ]
17+
branch: [ main, 1.3.x, 1.4.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.4.x"
7+
$main_branch = "1.5.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.4.2-SNAPSHOT
1+
version=1.5.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2020-2024 the original author or authors.
2+
* Copyright 2020-2025 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,7 +25,7 @@ public final class SpringAuthorizationServerVersion {
2525

2626
private static final int MAJOR = 1;
2727

28-
private static final int MINOR = 4;
28+
private static final int MINOR = 5;
2929

3030
private static final int PATCH = 0;
3131

0 commit comments

Comments
 (0)