Updated various files with new release number. Also removed LDAP-151 from 1.3.0.RC1 in changelog, since it wasn't resolved until 1.3.0.RELEASE.

This commit is contained in:
Ulrik Sandberg
2009-01-31 20:46:33 +00:00
parent 1fcc8ed1e1
commit 53a5262552
4 changed files with 51 additions and 14 deletions

View File

@@ -63,8 +63,9 @@ Changes in version 1.3.0 (Jan 2009)
to search for a single object, analogous to JdbcTemplate#queryForObject().
(LDAP-150)
* DistinguishedName now correctly adheres to the equals/hashCode contract.
LDAP-151
* DistinguishedName (LdapRdnComponent really) now correctly calculates the
hashCode for names where case differs, and now correctly adheres to the
equals/hashCode contract. (LDAP-151)
* Various improvements to immutability of DistinguishedNames throughout the
framework. DistinguishedName#immutableDistinguishedName now produces a truly
@@ -197,9 +198,6 @@ Changes in version 1.3.0.RC1 (Oct 2008)
* Removed AcegiAuthenticationSource - use SpringSecurityAuthenticationSource
(included with Spring Security) instead.
* DistinguishedName (LdapRdnComponent really) now correctly calculates the
hashCode for names where case differs. (LDAP-151)
* Upgraded commons-lang to 2.3.
* Upgraded Spring to 2.5.6. (LDAP-125)

View File

@@ -1,5 +1,5 @@
<?php
$url = "http://s3.amazonaws.com/maven.springframework.org?prefix=snapshot/org/springframework/ldap/spring-ldap/1.3.0.CI-SNAPSHOT/";
$url = "http://s3.amazonaws.com/maven.springframework.org?prefix=snapshot/org/springframework/ldap/spring-ldap/1.3.1.CI-SNAPSHOT/";
$xml = file_get_contents($url);
header('Content-Type: text/xml; charset=UTF-8');

View File

@@ -1,4 +1,4 @@
Spring LDAP 1.3.0.RC1 (Oct 2008)
Spring LDAP 1.3.0 (Jan 2009)
--------------------------------
http://www.springframework.org/ldap
http://forum.springframework.org/forumdisplay.php?f=40
@@ -50,17 +50,17 @@ Spring LDAP is released under the terms of the Apache Software License (see lice
The following distinct jar files are included in the distribution. This list
specifies the respective contents and third-party dependencies.
* spring-ldap-core-1.3.0.RC1.jar
* spring-ldap-core-1.3.0.RELEASE.jar
- Contents: The Spring LDAP library
- Dependencies: Commons Logging, Commons Lang, Commons Pool, spring-beans,
spring-core, spring-context, spring-jdbc, spring-tx, ldapbp
* spring-ldap-core-tiger-1.3.0.RC1.jar
* spring-ldap-core-tiger-1.3.0.RELEASE.jar
- Contents: The Spring LDAP Java 5 support library
- Dependencies: Commons Logging, Commons Lang, Commons Pool, spring-beans,
spring-core, spring-context, spring-jdbc, spring-tx, ldapbp
* spring-ldap-test-1.3.0.RC1.jar
* spring-ldap-test-1.3.0.RELEASE.jar
- Contents: Support classes that helps LDAP with integration testing.
- Dependencies: Commons Logging, Commons Lang, Commons Pool, spring-beans,
spring-core, spring-context, spring-jdbc, spring-tx, ldapbp
@@ -72,6 +72,31 @@ Note that the artifacts have changed names between the 1.2.x and 1.3 releases:
spring-ldap is now spring-ldap-core
spring-ldap-tiger is now spring-ldap-core-tiger
Production releases are available from the Spring framework milestone repo:
<repository>
<id>spring-milestone</id>
<name>Spring Portfolio Milestone Repository</name>
<url>http://s3.amazonaws.com/maven.springframework.org/release</url>
</repository>
This means that in order to use the latest release (1.3.0.RELEASE), you need to
specify the repository above and include the following dependencies:
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core</artifactId>
<version>1.3.0.RELEASE</version>
</dependency>
For Java 1.5 support:
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core-tiger</artifactId>
<version>1.3.0.RELEASE</version>
</dependency>
Milestone releases (such as release candidates) are available from the Spring
framework milestone repo:
@@ -81,7 +106,7 @@ framework milestone repo:
<url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
</repository>
This means that in order to use the latest release (1.3.0.RC1), you need to
This means that in order to use a milestone or release candidate, you need to
specify the repository above and include the following dependencies:
<dependency>
@@ -109,14 +134,14 @@ Nighly builds are published to the snapshot repository:
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core</artifactId>
<version>1.3.0.CI-SNAPSHOT</version>
<version>1.3.1.CI-SNAPSHOT</version>
</dependency>
For Java 1.5 support:
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core-tiger</artifactId>
<version>1.3.0.CI-SNAPSHOT</version>
<version>1.3.1.CI-SNAPSHOT</version>
</dependency>
5. WHERE TO START

View File

@@ -23,7 +23,21 @@ Snapshot Builds
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-core</artifactId>
<version>1.3.0.CI-SNAPSHOT</version>
<version>1.3.1.CI-SNAPSHOT</version>
</dependency>
+---------------
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-tiger</artifactId>
<version>1.3.1.CI-SNAPSHOT</version>
</dependency>
+---------------
<dependency>
<groupId>org.springframework.ldap</groupId>
<artifactId>spring-ldap-test</artifactId>
<version>1.3.1.CI-SNAPSHOT</version>
</dependency>
+---------------