Skip to content

Commit

Permalink
Release 1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Jun 8, 2012
1 parent 89767be commit 5b11eff
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [Git master](https://github.com/cucumber/cucumber-jvm/compare/v1.0.7...master)
## [1.0.8](https://github.com/cucumber/cucumber-jvm/compare/v1.0.7...v1.0.8)

* [Core] Exceptions thrown from a step definition are no longer wrapped in CucumberException. (Aslak Hellesøy)
* [Core] Fixed regression: PendingException was causing steps to fail instead of pending. ([#328](https://github.com/cucumber/cucumber-jvm/issues/328) Aslak Hellesøy)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ in your [POM](http://maven.apache.org/pom.html):
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -70,7 +70,7 @@ There are more jars available - add the ones you need. (TODO: A guide on how to
Add a [dependency](http://ant.apache.org/ivy/history/latest-milestone/ivyfile/dependency.html) in your [ivy.xml](http://ant.apache.org/ivy/history/latest-milestone/ivyfile.html):

```xml
<dependency org="info.cukes" name="cucumber-core" rev="1.0.8"/>
<dependency org="info.cukes" name="cucumber-core" rev="1.0.9"/>
```

Since the artifacts are released to Maven Central, the default Ivy configuration should pull them down automatically.
Expand All @@ -90,7 +90,7 @@ There isn't any online documentation yet. Check out the examples, read the code

### API Docs

* http://cukes.info/cucumber/jvm/api/1.0.8
* http://cukes.info/cucumber/jvm/api/1.0.9

## Examples

Expand Down Expand Up @@ -227,13 +227,13 @@ Replace version numbers in:
* README.md
* History.md

Run `git commit -m "Release X.Y.Z"`
Run `git commit -am "Release X.Y.Z"`

Now release everything:

```
mvn release:clean
mvn --batch-mode -P release-sign-artifacts release:prepare -DautoVersionSubmodules=true -DdevelopmentVersion=1.0.9-SNAPSHOT
mvn --batch-mode -P release-sign-artifacts release:prepare -DautoVersionSubmodules=true -DdevelopmentVersion=1.0.10-SNAPSHOT
mvn -P release-sign-artifacts release:perform
```

Expand Down
4 changes: 2 additions & 2 deletions examples/java-helloworld/build.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<project name="java-helloworld" basedir="." default="runcukes">
<property name="repo" value="https://oss.sonatype.org/content/repositories/releases"/>
<property name="cucumber-jvm.version" value="1.0.8"/>
<property name="cucumber-jvm.version" value="1.0.9"/>
<property name="cucumber-html.version" value="0.2.1"/>
<property name="gherkin.version" value="2.10.0"/>
<property name="gherkin.version" value="2.11.0"/>
<property name="junit.version" value="4.10"/>
<property name="jars" value="lib"/>

Expand Down
6 changes: 3 additions & 3 deletions examples/java-helloworld/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>info.cukes</groupId>
<artifactId>java-helloworld</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<packaging>jar</packaging>
<name>Examples: Java Hello World</name>

Expand All @@ -27,13 +27,13 @@
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.0.8</version>
<version>1.0.9</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 5b11eff

Please sign in to comment.