Skip to content

Commit

Permalink
release 5.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
anshooarora committed Jun 26, 2024
1 parent 182c433 commit bfc926a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## [5.1.2](https://github.com/extent-framework/extentreports-java/compare/v5.1.1...v5.1.2)

#### Issues Resolved
- [#411](/issues/411) Fixes issue navigating from tag -> test view
- [#413](/issues/413) Fixes ID conversion (when ID > 999) in freemarker template

#### New Features
- [#400](/issues/400) Adds Video display to tests (credits: https://github.com/grasshopper7)


## [5.1.1](https://github.com/extent-framework/extentreports-java/compare/v5.1.0...v5.1.1)

#### Issues Resolved
Expand All @@ -6,6 +16,7 @@
#### New Features
- [#393](/issues/393) Adds circular auto-scroll to failing nodes or events


## [5.1.0](https://github.com/extent-framework/extentreports-java/compare/v5.0.9...v5.1.0) - JDK11

#### Issues Resolved
Expand Down
22 changes: 21 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.aventstack</groupId>
<artifactId>extentreports</artifactId>
<version>5.1.2-SNAPSHOT</version>
<version>5.1.2</version>

<name>ExtentReports</name>
<url>www.extentreports.com</url>
Expand Down Expand Up @@ -123,6 +123,26 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit bfc926a

Please sign in to comment.