Skip to content

Commit cf20282

Browse files
committed
Release version 4.0
1 parent c7a0140 commit cf20282

File tree

10 files changed

+25
-25
lines changed

10 files changed

+25
-25
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ See https://ebourg.github.io/jsign for more information.
4040

4141
## Changes
4242

43-
#### Version 4.0 (in development)
43+
#### Version 4.0 (2021-08-09)
4444

4545
* MS Cabinet signing has been implemented (contributed by Joseph Lee)
4646
* Signatures can be detached and re-attached to make the builds reproducible without access to the private key

docs/index.html

+10-10
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ <h3 id="ant">Ant Task</h3>
7979
<p>Here is an example showing how the signing works with Ant, using a Java keystore:</p>
8080

8181
<pre class="prettyprint lang-xml">
82-
&lt;taskdef name="jsign" classname="net.jsign.JsignTask" classpath="jsign-3.1.jar"/>
82+
&lt;taskdef name="jsign" classname="net.jsign.JsignTask" classpath="jsign-4.0.jar"/>
8383

8484
&lt;jsign file="application.exe"
8585
name="My Application"
@@ -242,7 +242,7 @@ <h3 id="maven">Maven plugin</h3>
242242
&lt;plugin>
243243
&lt;groupId>net.jsign&lt;/groupId>
244244
&lt;artifactId>jsign-maven-plugin&lt;/artifactId>
245-
&lt;version>3.1&lt;/version>
245+
&lt;version>4.0&lt;/version>
246246
&lt;executions>
247247
&lt;execution>
248248
&lt;goals>
@@ -289,7 +289,7 @@ <h3 id="gradle">Gradle plugin</h3>
289289
<pre class="prettyprint lang-groovy">
290290
buildscript {
291291
dependencies {
292-
classpath 'net.jsign:jsign-gradle-plugin:3.1'
292+
classpath 'net.jsign:jsign-gradle-plugin:4.0'
293293
}
294294
}
295295

@@ -311,15 +311,15 @@ <h3 id="gradle">Gradle plugin</h3>
311311

312312
<h3>Command Line Tool</h3>
313313

314-
<p>Jsign can also be used as a command line tool. A <a href="https://github.com/ebourg/jsign/releases/download/3.1/jsign_3.1_all.deb">Debian package</a>
315-
and a <a href="https://github.com/ebourg/jsign/releases/download/3.1/jsign-3.1-1.noarch.rpm">RPM package</a>
314+
<p>Jsign can also be used as a command line tool. A <a href="https://github.com/ebourg/jsign/releases/download/4.0/jsign_4.0_all.deb">Debian package</a>
315+
and a <a href="https://github.com/ebourg/jsign/releases/download/4.0/jsign-4.0-1.noarch.rpm">RPM package</a>
316316
are provided to install it easily on most Linux distributions. On these systems the command line is invoked with:</p>
317317

318318
<pre> jsign [OPTIONS] [FILE]...</pre>
319319

320320
<p>On other systems the command line is invoked by running the jar with:</p>
321321

322-
<pre> java -jar jsign-3.1.jar [OPTIONS] [FILE]...</pre>
322+
<pre> java -jar jsign-4.0.jar [OPTIONS] [FILE]...</pre>
323323

324324
<p>The parameters expected are the same as those used by the Ant task:</p>
325325

@@ -430,7 +430,7 @@ <h3>API</h3>
430430
&lt;dependency>
431431
&lt;groupId>net.jsign&lt;/groupId>
432432
&lt;artifactId>jsign-core&lt;/artifactId>
433-
&lt;version>3.1&lt;/version>
433+
&lt;version>4.0&lt;/version>
434434
&lt;/dependency>
435435
</pre>
436436

@@ -455,9 +455,9 @@ <h3>API</h3>
455455
<h3 id="files">Downloads</h3>
456456

457457
<ul>
458-
<li><a href="https://github.com/ebourg/jsign/releases/download/3.1/jsign_3.1_all.deb">jsign_3.0_all.deb</a> - Jsign command line tool for Debian/Ubuntu</li>
459-
<li><a href="https://github.com/ebourg/jsign/releases/download/3.1/jsign-3.1-1.noarch.rpm">jsign-3.0-1.noarch.rpm</a> - Jsign command line tool for RedHat/Fedora/CentOS</li>
460-
<li><a href="https://github.com/ebourg/jsign/releases/download/3.1/jsign-3.1.jar">jsign-3.0.jar</a> - Jsign Ant Task</li>
458+
<li><a href="https://github.com/ebourg/jsign/releases/download/4.0/jsign_4.0_all.deb">jsign_4.0_all.deb</a> - Jsign command line tool for Debian/Ubuntu</li>
459+
<li><a href="https://github.com/ebourg/jsign/releases/download/4.0/jsign-4.0-1.noarch.rpm">jsign-4.0-1.noarch.rpm</a> - Jsign command line tool for RedHat/Fedora/CentOS</li>
460+
<li><a href="https://github.com/ebourg/jsign/releases/download/4.0/jsign-4.0.jar">jsign-4.0.jar</a> - Jsign Ant Task</li>
461461
</ul>
462462

463463

jsign-ant/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>net.jsign</groupId>
88
<artifactId>jsign-parent</artifactId>
9-
<version>4.0-SNAPSHOT</version>
9+
<version>4.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode implementation in Java (Ant Task)</name>
13-
<version>4.0-SNAPSHOT</version>
13+
<version>4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

jsign-cli/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>net.jsign</groupId>
88
<artifactId>jsign-parent</artifactId>
9-
<version>4.0-SNAPSHOT</version>
9+
<version>4.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode implementation in Java (Command Line Tool)</name>
13-
<version>4.0-SNAPSHOT</version>
13+
<version>4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

jsign-core/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>net.jsign</groupId>
88
<artifactId>jsign-parent</artifactId>
9-
<version>4.0-SNAPSHOT</version>
9+
<version>4.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode implementation in Java (Core)</name>
13-
<version>4.0-SNAPSHOT</version>
13+
<version>4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

jsign-gradle-plugin/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>net.jsign</groupId>
88
<artifactId>jsign-parent</artifactId>
9-
<version>4.0-SNAPSHOT</version>
9+
<version>4.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode implementation in Java (Gradle Plugin)</name>
13-
<version>4.0-SNAPSHOT</version>
13+
<version>4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<repositories>

jsign-maven-plugin/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>net.jsign</groupId>
88
<artifactId>jsign-parent</artifactId>
9-
<version>4.0-SNAPSHOT</version>
9+
<version>4.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode implementation in Java (Maven Plugin)</name>
13-
<version>4.0-SNAPSHOT</version>
13+
<version>4.0</version>
1414
<packaging>maven-plugin</packaging>
1515

1616
<properties>

jsign-maven-plugin/src/test/resources/test-pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<plugin>
1212
<groupId>net.sign</groupId>
1313
<artifactId>jsign-maven-plugin</artifactId>
14-
<version>4.0-SNAPSHOT</version>
14+
<version>4.0</version>
1515
<configuration>
1616
<file>target/test-classes/wineyes.exe</file>
1717
</configuration>

jsign/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<parent>
77
<groupId>net.jsign</groupId>
88
<artifactId>jsign-parent</artifactId>
9-
<version>4.0-SNAPSHOT</version>
9+
<version>4.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode implementation in Java (Distribution)</name>
13-
<version>4.0-SNAPSHOT</version>
13+
<version>4.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>net.jsign</groupId>
55
<artifactId>jsign-parent</artifactId>
66
<name>Jsign - Authenticode implementation in Java (Parent)</name>
7-
<version>4.0-SNAPSHOT</version>
7+
<version>4.0</version>
88
<packaging>pom</packaging>
99

1010
<inceptionYear>2012</inceptionYear>

0 commit comments

Comments
 (0)