From b30289aca2d7d7d72235c6a66feb8fa5173d557e Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 5 Mar 2016 15:07:59 +0000 Subject: [PATCH 1/4] pom.xml: Upgrade to test with simple-java-mail 3.0.0 In simple-java-mail the Email class has been moved into the 'email' package, thus the Issue1Test had to be updated. This doesn't affect how wiser-assertions is used. Signed-off-by: Paul Campbell --- pom.xml | 2 +- src/test/java/net/kemitix/wiser/assertions/Issue1Test.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index ad634cd..a369816 100644 --- a/pom.xml +++ b/pom.xml @@ -60,7 +60,7 @@ org.codemonkey.simplejavamail simple-java-mail - 2.5.1 + 3.0.0 test diff --git a/src/test/java/net/kemitix/wiser/assertions/Issue1Test.java b/src/test/java/net/kemitix/wiser/assertions/Issue1Test.java index 76cc6bb..80a5663 100644 --- a/src/test/java/net/kemitix/wiser/assertions/Issue1Test.java +++ b/src/test/java/net/kemitix/wiser/assertions/Issue1Test.java @@ -1,7 +1,7 @@ package net.kemitix.wiser.assertions; -import org.codemonkey.simplejavamail.Email; import org.codemonkey.simplejavamail.Mailer; +import org.codemonkey.simplejavamail.email.Email; import org.junit.Test; import javax.mail.Message; @@ -9,8 +9,8 @@ import javax.mail.Message; /** * Regression test for issue #1. * - * @see https://github.com/kemitix/wiser-assertions/issues/1 * @author pcampbell + * @see https://github.com/kemitix/wiser-assertions/issues/1 */ public class Issue1Test extends AbstractWiserTest { From 1a30f8a9d97b3db911bfe1b77f1c0f81b36fae6b Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 5 Mar 2016 15:09:20 +0000 Subject: [PATCH 2/4] pom.xml: Upgrade to test with spring-context-support 4.2.5 Signed-off-by: Paul Campbell --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ad634cd..5f41e53 100644 --- a/pom.xml +++ b/pom.xml @@ -66,7 +66,7 @@ org.springframework spring-context-support - 4.2.4.RELEASE + 4.2.5.RELEASE test From 6e0d639a89f8cfd3da3653254084df1cf810a74e Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 5 Mar 2016 15:18:04 +0000 Subject: [PATCH 3/4] pom.xml: version set to 0.3.2 Signed-off-by: Paul Campbell --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8d59ab2..11ff082 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 net.kemitix wiser-assertions - 0.4.0-SNAPSHOT + 0.3.2 jar wiser-assertions From d8509ebc12fa5af2639822086b33020a84ad5d15 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Sat, 5 Mar 2016 15:18:04 +0000 Subject: [PATCH 4/4] CHANGELOG Signed-off-by: Paul Campbell --- CHANGELOG | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG b/CHANGELOG index 4e6deca..20bc4f9 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,13 @@ CHANGELOG ========= +0.3.2 +------ + +* Upgrade to test with spring-context-support 4.2.5 +* Upgrade to test with simple-java-mail 3.0.0 +* Upgrade kemitix-parent to 0.9.0 + 0.3.1 ------