Skip to content

Commit 9cd3376

Browse files
committed
DATAMONGO-357 - Prepare 1.0.0 release.
Updated changelog, changed reference documentation inclusion links to point to SD Commons 1.0.0.RELEASE documentation. Updated dependency information in reference documentation.
1 parent de8d2a1 commit 9cd3376

File tree

8 files changed

+47
-37
lines changed

8 files changed

+47
-37
lines changed

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>org.springframework.data</groupId>
6-
<artifactId>spring-data-mongo-dist</artifactId>
6+
<artifactId>spring-data-mongodb-dist</artifactId>
77
<name>Spring Data MongoDB Distribution</name>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RELEASE</version>
99
<packaging>pom</packaging>
1010
<modules>
1111
<module>spring-data-mongodb</module>
@@ -272,7 +272,7 @@
272272
<pluginRepository>
273273
<id>repository.springframework.maven.release</id>
274274
<name>Spring Framework Maven Release Repository</name>
275-
<url>http://maven.springframework.org/release</url>
275+
<url>http://repo.springsource.org/release</url>
276276
</pluginRepository>
277277
</pluginRepositories>
278278

@@ -282,13 +282,13 @@
282282
<site>
283283
<id>static.springframework.org</id>
284284
<url>
285-
scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-data/data-document/snapshot-site/
285+
scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-data/data-mongodb/docs/${project.version}
286286
</url>
287287
</site>
288288
<repository>
289-
<id>spring-milestone</id>
290-
<name>Spring Milestone Repository</name>
291-
<url>s3://maven.springframework.org/milestone</url>
289+
<id>spring-release</id>
290+
<name>Spring Release Repository</name>
291+
<url>s3://maven.springframework.org/release</url>
292292
</repository>
293293
<snapshotRepository>
294294
<id>spring-snapshot</id>

spring-data-mongodb-cross-store/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.springframework.data</groupId>
66
<artifactId>spring-data-mongodb-parent</artifactId>
7-
<version>1.0.0.BUILD-SNAPSHOT</version>
7+
<version>1.0.0.RELEASE</version>
88
<relativePath>../spring-data-mongodb-parent/pom.xml</relativePath>
99
</parent>
1010
<artifactId>spring-data-mongodb-cross-store</artifactId>

spring-data-mongodb-log4j/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-mongodb-parent</artifactId>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RELEASE</version>
99
<relativePath>../spring-data-mongodb-parent/pom.xml</relativePath>
1010
</parent>
1111
<artifactId>spring-data-mongodb-log4j</artifactId>

spring-data-mongodb-parent/pom.xml

Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>spring-data-mongodb-parent</artifactId>
77
<name>Spring Data MongoDB Parent</name>
88
<url>http://www.springsource.org/spring-data/mongodb</url>
9-
<version>1.0.0.BUILD-SNAPSHOT</version>
9+
<version>1.0.0.RELEASE</version>
1010
<packaging>pom</packaging>
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
@@ -19,7 +19,7 @@
1919
<org.springframework.version.30>3.0.7.RELEASE</org.springframework.version.30>
2020
<org.springframework.version.40>4.0.0.RELEASE</org.springframework.version.40>
2121
<org.springframework.version.range>[${org.springframework.version.30}, ${org.springframework.version.40})</org.springframework.version.range>
22-
<data.commons.version>1.2.0.BUILD-SNAPSHOT</data.commons.version>
22+
<data.commons.version>1.2.0.RELEASE</data.commons.version>
2323
<aspectj.version>1.6.11.RELEASE</aspectj.version>
2424
</properties>
2525
<profiles>
@@ -65,13 +65,13 @@
6565
<site>
6666
<id>static.springframework.org</id>
6767
<url>
68-
scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-data/mongodb/docs/${project.version}
68+
scp://static.springframework.org/var/www/domains/springframework.org/static/htdocs/spring-data/data-mongodb/docs/${project.version}
6969
</url>
7070
</site>
7171
<repository>
72-
<id>spring-milestone</id>
73-
<name>Spring Milestone Repository</name>
74-
<url>s3://maven.springframework.org/milestone</url>
72+
<id>spring-release</id>
73+
<name>Spring Release Repository</name>
74+
<url>s3://maven.springframework.org/release</url>
7575
</repository>
7676
<snapshotRepository>
7777
<id>spring-snapshot</id>
@@ -386,16 +386,6 @@
386386
<name>Spring Framework Maven Release Repository</name>
387387
<url>http://repo.springsource.org/release</url>
388388
</repository>
389-
<repository>
390-
<id>repository.springframework.maven.milestone</id>
391-
<name>Spring Framework Maven Milestone Repository</name>
392-
<url>http://repo.springsource.org/milestone</url>
393-
</repository>
394-
<repository>
395-
<id>repository.springframework.maven.snapshot</id>
396-
<name>Spring Framework Maven Snapshot Repository</name>
397-
<url>http://repo.springsource.org/snapshot</url>
398-
</repository>
399389
</repositories>
400390
<reporting>
401391
<plugins>

spring-data-mongodb/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.data</groupId>
77
<artifactId>spring-data-mongodb-parent</artifactId>
8-
<version>1.0.0.BUILD-SNAPSHOT</version>
8+
<version>1.0.0.RELEASE</version>
99
<relativePath>../spring-data-mongodb-parent/pom.xml</relativePath>
1010
</parent>
1111
<artifactId>spring-data-mongodb</artifactId>

src/docbkx/index.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
<xi:include href="introduction/why-sd-doc.xml"/>
5353
<xi:include href="introduction/requirements.xml"/>
5454
<xi:include href="introduction/getting-started.xml"/>
55-
<xi:include href="https://github.com/SpringSource/spring-data-commons/raw/1.2.0.RC1/src/docbkx/repositories.xml">
55+
<xi:include href="https://github.com/SpringSource/spring-data-commons/raw/1.2.0.RELEASE/src/docbkx/repositories.xml">
5656
<xi:fallback href="../../../spring-data-commons/src/docbkx/repositories.xml" />
5757
</xi:include>
5858
</part>
@@ -72,7 +72,7 @@
7272
<part id="appendix">
7373
<title>Appendix</title>
7474

75-
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.2.0.RC1/src/docbkx/repository-namespace-reference.xml">
75+
<xi:include href="https://raw.github.com/SpringSource/spring-data-commons/1.2.0.RELEASE/src/docbkx/repository-namespace-reference.xml">
7676
<xi:fallback href="../../../spring-data-commons/src/docbkx/repository-namespace-reference.xml" />
7777
</xi:include>
7878
</part>

src/docbkx/reference/mongodb.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,11 +251,11 @@ public class MongoApp {
251251

252252
<itemizedlist>
253253
<listitem>
254-
<para>spring-data-mongodb-1.0.0.RC1.jar</para>
254+
<para>spring-data-mongodb-1.0.0.RELEASE.jar</para>
255255
</listitem>
256256

257257
<listitem>
258-
<para>spring-data-commons-1.2.0.RC1.jar</para>
258+
<para>spring-data-commons-1.2.0.RELEASE.jar</para>
259259
</listitem>
260260
</itemizedlist>
261261

src/main/resources/changelog.txt

Lines changed: 27 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,36 @@
11
Spring Data Document Changelog
22
=============================================
33

4+
Changes in version 1.0.0.RELEASE MongoDB (2011-12-22)
5+
-----------------------------------------------------
6+
7+
** Bug
8+
* [DATAMONGO-260] - MapReduce fails when using with Long as key-type.
9+
* [DATAMONGO-319] - WriteConcern not parsed correctly in namespace handlers
10+
* [DATAMONGO-336] - MongoDB GeoNear returning null pointer exception when giving data more precision than test data
11+
* [DATAMONGO-343] - ServerAddressPropertyEditor disables default Spring conversion
12+
* [DATAMONGO-346] - MongoTemplate.remove(Object arg) not working
13+
* [DATAMONGO-349] - remove doesn't work in RC1 for mongo db
14+
15+
** Improvement
16+
* [DATAMONGO-139] - Startup behavior should be that MongoTemplate does not eagerly try to connect to MongoDB
17+
* [DATAMONGO-296] - Add hook to use MongoConverter for Querydsl argument handling
18+
* [DATAMONGO-326] - Enums can't be used in Criteria
19+
* [DATAMONGO-341] - Tighten implementation of MongoTemplate's geoNear(...) methods
20+
21+
** Task
22+
* [DATAMONGO-81] - Create unit tests for exception translation in MongoTemplate
23+
* [DATAMONGO-93] - Create integration tests for authentication
24+
* [DATAMONGO-257] - Document TypeMapper abstraction to control how type information is stored and retrieved from documents
25+
* [DATAMONGO-330] - Document classpath scanning for Converters
26+
* [DATAMONGO-350] - Upgrade to latest Querydsl
27+
* [DATAMONGO-355] - Upgrade to Spring 3.0.7
28+
* [DATAMONGO-357] - Release 1.0 GA
29+
30+
431
Changes in version 1.0.0.RC1 MongoDB (2011-12-6)
532
------------------------------------------------
633

7-
834
** Bug
935
* [DATAMONGO-199] - Synchronisation during performance tests
1036
* [DATAMONGO-298] - Spring custom converters do not work for subclasses of java.lang.Number
@@ -21,8 +47,6 @@ Changes in version 1.0.0.RC1 MongoDB (2011-12-6)
2147
* [DATAMONGO-329] - Map value not converted correctly
2248
* [DATAMONGO-333] - AbstractMongoEventListener throws NullPointerException if used without generic parameter
2349

24-
25-
2650
** Improvement
2751
* [DATAMONGO-26] - Investigate performance of POJO serialization.
2852
* [DATAMONGO-174] - Add additional constructor to MongoTemplate that take com.mongodb.Mongo, database name, user credentials and MongoConverter.
@@ -44,13 +68,10 @@ Changes in version 1.0.0.RC1 MongoDB (2011-12-6)
4468
* [DATAMONGO-251] - Support geting index information on a collection or mapped class.
4569
* [DATAMONGO-308] - Add support for upsert methods
4670

47-
4871
** Refactoring
4972
* [DATAMONGO-304] - Change package name for Class MongoLog4jAppender
5073
* [DATAMONGO-313] - Use MongoOperations interface instead of MongoTemplate class
5174

52-
53-
5475
** Task
5576
* [DATAMONGO-195] - Add description of @Field mapping annotation to reference docs
5677
* [DATAMONGO-262] - Ensure Cloud Foundry Runtime works with RC1
@@ -61,7 +82,6 @@ Changes in version 1.0.0.RC1 MongoDB (2011-12-6)
6182
* [DATAMONGO-335] - Create hybrid Spring 3.0.6 / 3.1 build
6283

6384

64-
6585
Changes in version 1.0.0.M5 MongoDB (2011-10-24)
6686
------------------------------------------------
6787

0 commit comments

Comments
 (0)