Skip to content

Commit e36eb8b

Browse files
committed
Bump to version 0.3
1 parent 146ea14 commit e36eb8b

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

README.markdown

+8-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ To install the cucumber plugin, add entries to the build plugins file (project/p
7575

7676
resolvers += "Templemore Repository" at "http://templemore.co.uk/repo"
7777

78-
libraryDependencies += "templemore" %% "xsbt-cucumber-plugin" % "0.2"
78+
libraryDependencies += "templemore" %% "xsbt-cucumber-plugin" % "0.3"
7979

8080
### Basic Configuration ###
8181
To add the cucumber plugin settings to a basic project, just add the following to the build.sbt file:
@@ -148,10 +148,16 @@ The four supported modes are:
148148

149149
## Roadmap ##
150150

151-
This plugin will continue to track releases of both SBT (0.10 and onwards) and Cucumber. Requests for features can be posted to the issues list or emailed to the author.
151+
This plugin will continue to track releases of both SBT (0.10 and onwards) and Cucumber.
152+
Requests for features can be posted to the issues list or emailed to the author.
153+
154+
Current plan is to upgrade to the next major version of SBT and then to switch to cucumber-jvm as soon as there is a stable release.
152155

153156
## Release History ##
154157

158+
### 0.3 ###
159+
Bug fix to correct --names parameter which should in fact be --name. Thanks to https://github.com/zvozin for the patch.
160+
155161
### 0.2 ###
156162
Updated to be compatible with SBT 0.10.1 release. This release contains no code changes, it is just a recompilation with the build properties updated.
157163

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "xsbt-cucumber-plugin"
22

3-
version := "0.2"
3+
version := "0.3"
44

55
organization := "templemore"
66

testProjects/multiModuleTestProject/project/Build.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import templemore.xsbt.cucumber.CucumberPlugin
55
object BuildSettings {
66
val buildOrganization = "templemore"
77
val buildScalaVersion = "2.9.0-1"
8-
val buildVersion = "0.2"
8+
val buildVersion = "0.3"
99

1010
val buildSettings = Defaults.defaultSettings ++
1111
Seq (organization := buildOrganization,
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
resolvers += Resolver.file("Local Repo", file((Path.userHome / ".m2" / "repository").toString))
22

3-
libraryDependencies += "templemore" %% "xsbt-cucumber-plugin" % "0.2"
3+
libraryDependencies += "templemore" %% "xsbt-cucumber-plugin" % "0.3"

testProjects/testProject/build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name := "test-project"
22

3-
version := "0.2"
3+
version := "0.3"
44

55
organization := "templemore"
66

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
resolvers += Resolver.file("Local Repo", file((Path.userHome / ".m2" / "repository").toString))
22

3-
libraryDependencies += "templemore" %% "xsbt-cucumber-plugin" % "0.2"
3+
libraryDependencies += "templemore" %% "xsbt-cucumber-plugin" % "0.3"

0 commit comments

Comments
 (0)