Skip to content

Commit

Permalink
Release 1.0.0.RC24
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Mar 22, 2012
1 parent 2ea3787 commit c5288fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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.0.RC23...master)
## [1.0.0.RC24](https://github.com/cucumber/cucumber-jvm/compare/v1.0.0.RC23...v1.0.0.RC24)

* [Core] Understandable error message if a formatter needs output location. ([#148](https://github.com/cucumber/cucumber-jvm/issues/148), [#232](https://github.com/cucumber/cucumber-jvm/issues/232), [#269](https://github.com/cucumber/cucumber-jvm/issues/269) Aslak Hellesøy)
* [JUnit] Running with JUnit uses a null formatter by default (instead of a progress formatter). (Aslak Hellesøy)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ in your [POM](http://maven.apache.org/pom.html):
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-java</artifactId>
<version>1.0.0.RC23</version>
<version>1.0.0.RC24</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.0.0.RC23</version>
<version>1.0.0.RC24</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -71,7 +71,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.0.RC23"/>
<dependency org="info.cukes" name="cucumber-core" rev="1.0.0.RC24"/>
```

Since the artifacts are released to Maven Central, the default Ivy configuration should pull them down automatically.
Expand All @@ -92,7 +92,7 @@ If you are adventurous, check out the examples, read the code and ask specific q

### API Docs

* http://cukes.info/cucumber/jvm/api/1.0.0.RC23
* http://cukes.info/cucumber/jvm/api/1.0.0.RC24

## Examples

Expand Down Expand Up @@ -225,6 +225,6 @@ Then release everything:

```
mvn release:clean
mvn --batch-mode -P release-sign-artifacts release:prepare -DautoVersionSubmodules=true -DdevelopmentVersion=1.0.0.RC24-SNAPSHOT
mvn --batch-mode -P release-sign-artifacts release:prepare -DautoVersionSubmodules=true -DdevelopmentVersion=1.0.0.RC25-SNAPSHOT
mvn -P release-sign-artifacts release:perform
```

0 comments on commit c5288fb

Please sign in to comment.