Skip to content

Commit bfc926a

Browse files
committed
release 5.1.2
1 parent 182c433 commit bfc926a

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [5.1.2](https://github.com/extent-framework/extentreports-java/compare/v5.1.1...v5.1.2)
2+
3+
#### Issues Resolved
4+
- [#411](/issues/411) Fixes issue navigating from tag -> test view
5+
- [#413](/issues/413) Fixes ID conversion (when ID > 999) in freemarker template
6+
7+
#### New Features
8+
- [#400](/issues/400) Adds Video display to tests (credits: https://github.com/grasshopper7)
9+
10+
111
## [5.1.1](https://github.com/extent-framework/extentreports-java/compare/v5.1.0...v5.1.1)
212

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

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

1122
#### Issues Resolved

pom.xml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>com.aventstack</groupId>
77
<artifactId>extentreports</artifactId>
8-
<version>5.1.2-SNAPSHOT</version>
8+
<version>5.1.2</version>
99

1010
<name>ExtentReports</name>
1111
<url>www.extentreports.com</url>
@@ -123,6 +123,26 @@
123123
</execution>
124124
</executions>
125125
</plugin>
126+
<plugin>
127+
<groupId>org.apache.maven.plugins</groupId>
128+
<artifactId>maven-gpg-plugin</artifactId>
129+
<version>1.6</version>
130+
<executions>
131+
<execution>
132+
<id>sign-artifacts</id>
133+
<phase>verify</phase>
134+
<goals>
135+
<goal>sign</goal>
136+
</goals>
137+
<configuration>
138+
<gpgArguments>
139+
<arg>--pinentry-mode</arg>
140+
<arg>loopback</arg>
141+
</gpgArguments>
142+
</configuration>
143+
</execution>
144+
</executions>
145+
</plugin>
126146
</plugins>
127147
</build>
128148

0 commit comments

Comments
 (0)