mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-01 09:42:13 +00:00
Update version to 4.2.0.BUILD-SNAPSHOT
This commit is contained in:
parent
cc04392d9a
commit
b4ab0483b1
@ -27,8 +27,8 @@ import org.springframework.core.SpringVersion;
|
|||||||
* @author Rob Winch
|
* @author Rob Winch
|
||||||
*/
|
*/
|
||||||
public class SpringSecurityCoreVersion {
|
public class SpringSecurityCoreVersion {
|
||||||
private static final String DISABLE_CHECKS = SpringSecurityCoreVersion.class
|
private static final String DISABLE_CHECKS = SpringSecurityCoreVersion.class.getName()
|
||||||
.getName().concat(".DISABLE_CHECKS");
|
.concat(".DISABLE_CHECKS");
|
||||||
|
|
||||||
private static final Log logger = LogFactory.getLog(SpringSecurityCoreVersion.class);
|
private static final Log logger = LogFactory.getLog(SpringSecurityCoreVersion.class);
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ public class SpringSecurityCoreVersion {
|
|||||||
* N.B. Classes are not intended to be serializable between different versions. See
|
* N.B. Classes are not intended to be serializable between different versions. See
|
||||||
* SEC-1709 for why we still need a serial version.
|
* SEC-1709 for why we still need a serial version.
|
||||||
*/
|
*/
|
||||||
public static final long SERIAL_VERSION_UID = 410L;
|
public static final long SERIAL_VERSION_UID = 420L;
|
||||||
|
|
||||||
static final String MIN_SPRING_VERSION = "4.3.1.RELEASE";
|
static final String MIN_SPRING_VERSION = "4.3.1.RELEASE";
|
||||||
|
|
||||||
@ -73,8 +73,8 @@ public class SpringSecurityCoreVersion {
|
|||||||
}
|
}
|
||||||
|
|
||||||
logger.info("You are running with Spring Security Core " + version);
|
logger.info("You are running with Spring Security Core " + version);
|
||||||
if (new ComparableVersion(springVersion).compareTo(new ComparableVersion(
|
if (new ComparableVersion(springVersion)
|
||||||
minSpringVersion)) < 0) {
|
.compareTo(new ComparableVersion(minSpringVersion)) < 0) {
|
||||||
logger.warn("**** You are advised to use Spring " + minSpringVersion
|
logger.warn("**** You are advised to use Spring " + minSpringVersion
|
||||||
+ " or later with this version. You are running: " + springVersion);
|
+ " or later with this version. You are running: " + springVersion);
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
version=4.1.2.BUILD-SNAPSHOT
|
version=4.2.0.BUILD-SNAPSHOT
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
version="2.0">
|
version="2.0">
|
||||||
<description>Spring Security Authorization Tag Library</description>
|
<description>Spring Security Authorization Tag Library</description>
|
||||||
|
|
||||||
<tlib-version>4.1</tlib-version>
|
<tlib-version>4.2</tlib-version>
|
||||||
<short-name>security</short-name>
|
<short-name>security</short-name>
|
||||||
<uri>http://www.springframework.org/security/tags</uri>
|
<uri>http://www.springframework.org/security/tags</uri>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user