Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Mar 20, 2012
1 parent d9502fb commit b1c9b8c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions History.md
@@ -1,4 +1,4 @@
## [Git master](https://github.com/cucumber/cucumber-jvm/compare/v1.0.0.RC21...master)
## [1.0.0.RC22](https://github.com/cucumber/cucumber-jvm/compare/v1.0.0.RC21...v1.0.0.RC22)

* [Java] Snippets for DataTable include a hint about using List<YourType>, so people discover this neat technique (Aslak Hellesøy)
* [Core] Support DocString and DataTable in generated snippets ([#227](https://github.com/cucumber/cucumber-jvm/issues/227) Aslak Hellesøy)
Expand Down Expand Up @@ -95,4 +95,4 @@

## 1.0.0-RC3

* First proper release
* First proper release
10 changes: 5 additions & 5 deletions README.md
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.RC21</version>
<version>1.0.0.RC22</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>info.cukes</groupId>
<artifactId>cucumber-junit</artifactId>
<version>1.0.0.RC21</version>
<version>1.0.0.RC22</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.RC21"/>
<dependency org="info.cukes" name="cucumber-core" rev="1.0.0.RC22"/>
```

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.RC21
* http://cukes.info/cucumber/jvm/api/1.0.0.RC22

## 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.RC21-SNAPSHOT
mvn --batch-mode -P release-sign-artifacts release:prepare -DautoVersionSubmodules=true -DdevelopmentVersion=1.0.0.RC23-SNAPSHOT
mvn -P release-sign-artifacts release:perform
```

0 comments on commit b1c9b8c

Please sign in to comment.