diff --git a/pom.xml b/pom.xml
index dcdd96e13..0f177a180 100644
--- a/pom.xml
+++ b/pom.xml
@@ -14,7 +14,7 @@
org.springframework.data.build
spring-data-parent
- 1.2.1.RELEASE
+ 1.2.2.RELEASE
../spring-data-build/parent/pom.xml
@@ -27,7 +27,7 @@
1.8.0.10
2.0.0
2.2.1
- 1.6.4.RELEASE
+ 1.6.5.RELEASE
diff --git a/readme.md b/readme.md
index 7141afaff..46434d1e5 100644
--- a/readme.md
+++ b/readme.md
@@ -29,7 +29,7 @@ Download the jar though Maven:
org.springframework.data
spring-data-jpa
- 1.4.4.RELEASE
+ 1.4.5.RELEASE
```
diff --git a/src/docbkx/faq.xml b/src/docbkx/faq.xml
index cdeddc434..32f5722e1 100644
--- a/src/docbkx/faq.xml
+++ b/src/docbkx/faq.xml
@@ -51,7 +51,7 @@
You have to replace
AnnotationSessionFactoryBean with the
HibernateJpaSessionFactoryBean as follows:
-
+
Looking up a SessionFactory from a
HibernateEntityManagerFactory
diff --git a/src/docbkx/glossary.xml b/src/docbkx/glossary.xml
index b4df26fd9..cfb4cf5c5 100644
--- a/src/docbkx/glossary.xml
+++ b/src/docbkx/glossary.xml
@@ -107,7 +107,7 @@
Java application framework - http://www.springframework.org
+ url="http://projects.spring.io/spring-framework">http://projects.spring.io/spring-framework
diff --git a/src/docbkx/index.xml b/src/docbkx/index.xml
index 80823c63d..b6f676c20 100644
--- a/src/docbkx/index.xml
+++ b/src/docbkx/index.xml
@@ -47,7 +47,7 @@
- 2008-2013
+ 2008-2014
The original authors
@@ -61,7 +61,7 @@
Reference Documentation
-
+
@@ -71,10 +71,10 @@
Appendix
-
+
-
+
diff --git a/src/docbkx/jpa.xml b/src/docbkx/jpa.xml
index 429beb626..71631ceda 100644
--- a/src/docbkx/jpa.xml
+++ b/src/docbkx/jpa.xml
@@ -208,7 +208,7 @@ class ApplicationConfig {
Data JPA will delegate the new-detection to the
isNew - Method of the Entity. See the
JavaDoc
+ url="http://docs.spring.io/spring-data/data-commons/docs/current/api/index.html?org/springframework/data/domain/Persistable.html">JavaDoc
for details.
@@ -226,7 +226,7 @@ class ApplicationConfig {
implementation of JpaRepositoryFactory
as a Spring bean. Note that this should be rarely necessary.
See the JavaDoc
+ url="http://docs.spring.io/spring-data/data-jpa/docs/current/api/index.html?org/springframework/data/jpa/repository/support/JpaRepositoryFactory.html">JavaDoc
for details.
@@ -1122,7 +1122,7 @@ public interface UserRepository extends JpaRepository<User, Long> {
Auditing
-
@@ -1240,7 +1240,7 @@ public interface UserRepository extends JpaRepository<User, Long> {
As of Spring 3.1 a package to scan can be configured on the
LocalContainerEntityManagerFactoryBean directly
to enable classpath scanning for entity classes. See the JavaDoc
+ url="http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/orm/jpa/LocalContainerEntityManagerFactoryBean.html#setPackagesToScan-java.lang.String...-">JavaDoc
for details.
diff --git a/src/docbkx/preface.xml b/src/docbkx/preface.xml
index c626e09df..38c545337 100644
--- a/src/docbkx/preface.xml
+++ b/src/docbkx/preface.xml
@@ -10,27 +10,27 @@
Version control - git://github.com/SpringSource/spring-data-jpa.git
+ url="https://github.com/spring-projects/spring-data-jpa.git">git://github.com/spring-projects/spring-data-jpa.git
Bugtracker - https://jira.springsource.org/browse/DATAJPA
+ url="https://jira.spring.io/browse/DATAJPA">https://jira.spring.io/browse/DATAJPA
Release repository - http://repo.springsource.org/libs-release
+ url="http://repo.spring.io/libs-release">http://repo.spring.io/libs-release
Milestone repository - http://repo.springsource.org/libs-milestone
+ url="http://repo.spring.io/libs-milestone">http://repo.spring.io/libs-milestone
Snapshot repository - http://repo.springsource.org/libs-snapshot
+ url="http://repo.spring.io/libs-snapshot">http://repo.spring.io/libs-snapshot/
diff --git a/src/main/resources/changelog.txt b/src/main/resources/changelog.txt
index c1ee4b3ec..ae5b7731c 100644
--- a/src/main/resources/changelog.txt
+++ b/src/main/resources/changelog.txt
@@ -1,6 +1,30 @@
Spring Data JPA Changelog
=========================
+Changes in version 1.4.5.RELEASE (2014-03-10)
+---------------------------------------------
+* When used "LIKE expression" and "other expression" at the same time, occurred the QuerySyntaxException of Hibernate. (DATAJPA-473)
+* IllegalStateException caused by QueryUtils.toExpressionRecursively(…) (DATAJPA-476)
+* findAll(Iterable) : Invalid comparation Exception thrown (DATAJPA-492)
+* Improve FAQ, C2.1 on the SessionFactory replacement (DATAJPA-462)
+* Documentation on CDI setup is incomplete (DATAJPA-474)
+* Upgrade Hibernate build profiles to latest version (DATAJPA-485)
+* Release 1.4.5 (DATAJPA-488)
+
+Changes in version 1.5.0.RELEASE (2014-02-24)
+---------------------------------------------
+* Query on byte array fails (DATAJPA-454)
+* Regression in parameter binding (DATAJPA-461)
+* Nullpointer when using @Query (DATAJPA-465)
+* Build fails against Spring 4 (DATAJPA-471)
+* When used "LIKE expression" and "other expression" at the same time, occurred the QuerySyntaxException of Hibernate. (DATAJPA-473)
+* Improve FAQ, C2.1 on the SessionFactory replacement (DATAJPA-462)
+* Documentation on CDI setup is incomplete (DATAJPA-474)
+* Add aop.xml to prevent Eclipse from weaving unnecessary aspects (DATAJPA-458)
+* Reduce log output for Querydsl APT processor (DATAJPA-459)
+* Release 1.5 GA (DATAJPA-469)
+* Documentation overhaul (DATAJPA-470)
+
Changes in version 1.4.4.RELEASE (2014-02-17)
---------------------------------------------
* PersistenceProvider enum should also match org.hibernate.jpa.HibernateEntityManager (DATAJPA-444)
diff --git a/src/main/resources/notice.txt b/src/main/resources/notice.txt
index e8ad65f51..423a0079d 100644
--- a/src/main/resources/notice.txt
+++ b/src/main/resources/notice.txt
@@ -1,4 +1,4 @@
-Spring Data JPA 1.4.4 RELEASE
+Spring Data JPA 1.4.5 RELEASE
Copyright (c) [2011-2014] Pivotal Software, Inc.
This product is licensed to you under the Apache License, Version 2.0 (the "License").
diff --git a/src/main/resources/readme.txt b/src/main/resources/readme.txt
index 32b6e0933..a9626ba81 100644
--- a/src/main/resources/readme.txt
+++ b/src/main/resources/readme.txt
@@ -1,4 +1,4 @@
-Spring Data JPA 1.4.4 RELEASE (Feb 17th, 2014)
+Spring Data JPA 1.4.5 RELEASE (Mar 10th, 2014)
----------------------------------------------
Spring Data JPA is released under the terms of the Apache Software License Version 2.0 (see license.txt).