Skip to content

Commit 068e523

Browse files
committed
Prepared 0.5.0 release
1 parent e8805b3 commit 068e523

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

README.adoc

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
= Lambda Test
22
:toc:
33
:toc-placement: preamble
4-
:lambdatestversion: 0.4.0
5-
:documentationversion: 0.5.0-SNAPSHOT
4+
:lambdatestversion: 0.5.0
5+
:documentationversion: 0.5.0
66
:testngversion: 6.11
77
:junitversion: 4.12
88
:lambdatest: LambdaTest
@@ -19,12 +19,12 @@ Documentation for LambdaTest {documentationversion}.
1919
== Motivation
2020

2121
When constrained to work in a Java-only toolchain, I really miss my http://scalatest.org[ScalaTest].
22-
I tried some lambda enabled test frameworks, but until now, did not find a suitable solution without compromizing the integration benefits.
22+
I tried some lambda enabled test frameworks, but until now (2014), did not find a suitable solution without compromizing the integration benefits.
2323

2424
Thus I decided to write a small and generic test library that allows writing of functional test without reinventing the wheel.
2525
LambdaTest works on top of JUnit and TestNG, all you need is to add it to the test classpath.
2626
No further adaptions to your existing test setup are needed.
27-
You will immediately gain the joy of Lambda-enabled functional testing, better assertion messages and nicely colored output.
27+
You will immediately gain the joy of Lambda-enabled functional testing, better assertion messages and nicely colored output.
2828

2929
== Features
3030

@@ -39,7 +39,7 @@ Most important features are:
3939
* Opt-in to not fail fast when using `expectXXX`-methods (see more than the first assertion error)
4040
* Easy to mark pending tests
4141
* Contains useful tools to work with temporary files and directories
42-
42+
* Easy way to create proxies as mock dependencies
4343

4444
== Download from Maven Central
4545

@@ -431,7 +431,7 @@ If you like {lambdatest}, please star it on https://github.com/lefou/LambdaTest[
431431

432432
== Changelog
433433

434-
=== LambdaTest 0.5.0 - not yet released
434+
=== LambdaTest 0.5.0 - 2018-06-11
435435

436436
* Added `TestProxy` in package `de.tobiasroeser.lambdatest.proxy` to easily create mock dependencies / proxies.
437437

pom.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import org.sonatype.maven.polyglot.scala.model._
22
import scala.collection.immutable.Seq
33

44
val namespace = "de.tobiasroeser.lambdatest"
5-
val lambdatest = "de.tototec" % namespace % "0.5.0-SNAPSHOT"
5+
val lambdatest = "de.tototec" % namespace % "0.5.0"
66

77
object Deps {
88
val testng = "org.testng" % "testng" % "6.11"

0 commit comments

Comments
 (0)