Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
CHANGES IN VERSION 6.21.0
=================================
* [MAINTENANCE] Upgrade to Cucumber version 7.31.0

CHANGES IN VERSION 6.20.0
=================================
* [ENHANCEMENT] Use html tables when displaying Cucumber data tables in the Courgette html report.
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ Courgette-JVM is an extension of Cucumber-JVM with added capabilities to **run c
<dependency>
<groupId>io.github.prashant-ramcharan</groupId>
<artifactId>courgette-jvm</artifactId>
<version>6.20.0</version>
<version>6.21.0</version>
</dependency>
````

#### Gradle
````gradle
implementation group: 'io.github.prashant-ramcharan', name: 'courgette-jvm', version: '6.20.0'
implementation group: 'io.github.prashant-ramcharan', name: 'courgette-jvm', version: '6.21.0'
````

#### Included Cucumber Dependencies
* cucumber-core 7.27.0
* cucumber-java 7.27.0
* cucumber-java8 7.27.0
* cucumber-junit 7.27.0
* cucumber-testng 7.27.0
* cucumber-core 7.31.0
* cucumber-java 7.31.0
* cucumber-java8 7.31.0
* cucumber-junit 7.31.0
* cucumber-testng 7.31.0


## Usage
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'io.github.prashant-ramcharan'
version '6.20.0'
version '6.21.0'

apply plugin: 'java'
apply plugin: 'maven-publish'
Expand All @@ -12,7 +12,7 @@ compileJava {
}

ext {
cucumberVersion = '7.27.0'
cucumberVersion = '7.31.0'
testNGVersion = '7.9.0'
jacksonVersion = '2.17.0'
httpcomponentsVersion = '4.5.13'
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/report/templates/index.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,13 @@
<div class="col-sm-7">
Cucumber Version:
</div>
<div>7.27.0</div>
<div>7.31.0</div>
</div>
<div class="row mt-4">
<div class="col-sm-7">
Courgette Version:
</div>
<div>6.20.0</div>
<div>6.21.0</div>
</div>
<div class="row mt-4">
<div><a href class="col-sm-9" data-toggle="modal" data-target="#environment_info">Additional
Expand Down
Loading