Skip to content

Commit 39e4003

Browse files
committed
Release version 5.0
1 parent c8da154 commit 39e4003

File tree

11 files changed

+31
-31
lines changed

11 files changed

+31
-31
lines changed

docs/index.html

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ <h3 id="ant">Ant Task</h3>
8080
<p>Here is an example showing how the signing works with Ant, using a Java keystore:</p>
8181

8282
<pre class="prettyprint lang-xml">
83-
&lt;taskdef name="jsign" classname="net.jsign.JsignTask" classpath="jsign-4.2.jar"/>
83+
&lt;taskdef name="jsign" classname="net.jsign.JsignTask" classpath="jsign-5.0.jar"/>
8484

8585
&lt;jsign file="application.exe"
8686
name="My Application"
@@ -281,7 +281,7 @@ <h3 id="maven">Maven plugin</h3>
281281
&lt;plugin>
282282
&lt;groupId>net.jsign&lt;/groupId>
283283
&lt;artifactId>jsign-maven-plugin&lt;/artifactId>
284-
&lt;version>4.2&lt;/version>
284+
&lt;version>5.0&lt;/version>
285285
&lt;executions>
286286
&lt;execution>
287287
&lt;goals>
@@ -369,7 +369,7 @@ <h3 id="gradle">Gradle plugin</h3>
369369
<pre class="prettyprint lang-groovy">
370370
buildscript {
371371
dependencies {
372-
classpath 'net.jsign:jsign-gradle-plugin:4.2'
372+
classpath 'net.jsign:jsign-gradle-plugin:5.0'
373373
}
374374
}
375375

@@ -393,7 +393,7 @@ <h3 id="gradle">Gradle plugin</h3>
393393
<pre class="prettyprint lang-kotlin">
394394
buildscript {
395395
dependencies {
396-
classpath("net.jsign:jsign-gradle-plugin:4.2")
396+
classpath("net.jsign:jsign-gradle-plugin:5.0")
397397
}
398398
}
399399

@@ -418,8 +418,8 @@ <h3>Command Line Tool</h3>
418418
<p>Jsign can also be used as a command line tool, packages are available for various systems:</p>
419419

420420
<ul>
421-
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign_4.2_all.deb">DEB package</a> (Debian/Ubuntu)</li>
422-
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign-4.2-1.noarch.rpm">RPM package</a> (RedHat/Fedora)</li>
421+
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign_5.0_all.deb">DEB package</a> (Debian/Ubuntu)</li>
422+
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign-5.0-1.noarch.rpm">RPM package</a> (RedHat/Fedora)</li>
423423
<li><a href="https://community.chocolatey.org/packages/jsign/">Chocolatey package</a> (Windows)</li>
424424
</ul>
425425

@@ -429,7 +429,7 @@ <h3>Command Line Tool</h3>
429429

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

432-
<pre> java -jar jsign-4.2.jar [OPTIONS] [FILE]...</pre>
432+
<pre> java -jar jsign-5.0.jar [OPTIONS] [FILE]...</pre>
433433

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

@@ -644,7 +644,7 @@ <h3>API</h3>
644644
&lt;dependency>
645645
&lt;groupId>net.jsign&lt;/groupId>
646646
&lt;artifactId>jsign-core&lt;/artifactId>
647-
&lt;version>4.2&lt;/version>
647+
&lt;version>5.0&lt;/version>
648648
&lt;/dependency>
649649
</pre>
650650

@@ -670,9 +670,9 @@ <h3>API</h3>
670670
<h3 id="files">Downloads</h3>
671671

672672
<ul>
673-
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign_4.2_all.deb">jsign_4.2_all.deb</a> - Jsign command line tool for Debian/Ubuntu</li>
674-
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign-4.2-1.noarch.rpm">jsign-4.2-1.noarch.rpm</a> - Jsign command line tool for RedHat/Fedora/CentOS</li>
675-
<li><a href="https://github.com/ebourg/jsign/releases/download/4.2/jsign-4.2.jar">jsign-4.2.jar</a> - Jsign Ant Task</li>
673+
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign_5.0_all.deb">jsign_5.0_all.deb</a> - Jsign command line tool for Debian/Ubuntu</li>
674+
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign-5.0-1.noarch.rpm">jsign-5.0-1.noarch.rpm</a> - Jsign command line tool for RedHat/Fedora</li>
675+
<li><a href="https://github.com/ebourg/jsign/releases/download/5.0/jsign-5.0.jar">jsign-5.0.jar</a> - Jsign Ant Task</li>
676676
</ul>
677677

678678

jsign-ant/pom.xml

Lines changed: 2 additions & 2 deletions
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>5.0-SNAPSHOT</version>
9+
<version>5.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode signing in Java (Ant Task)</name>
13-
<version>5.0-SNAPSHOT</version>
13+
<version>5.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

jsign-cli/pom.xml

Lines changed: 2 additions & 2 deletions
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>5.0-SNAPSHOT</version>
9+
<version>5.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode signing in Java (Command Line Tool)</name>
13-
<version>5.0-SNAPSHOT</version>
13+
<version>5.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

jsign-core/pom.xml

Lines changed: 2 additions & 2 deletions
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>5.0-SNAPSHOT</version>
9+
<version>5.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode signing in Java (Core)</name>
13-
<version>5.0-SNAPSHOT</version>
13+
<version>5.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

jsign-gradle-plugin/example.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
}
55

66
dependencies {
7-
classpath("net.jsign:jsign-gradle-plugin:4.2")
7+
classpath("net.jsign:jsign-gradle-plugin:5.0")
88
}
99
}
1010

jsign-gradle-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
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>5.0-SNAPSHOT</version>
9+
<version>5.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode signing in Java (Gradle Plugin)</name>
13-
<version>5.0-SNAPSHOT</version>
13+
<version>5.0</version>
1414
<packaging>jar</packaging>
1515

1616
<repositories>

jsign-maven-plugin/pom.xml

Lines changed: 2 additions & 2 deletions
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>5.0-SNAPSHOT</version>
9+
<version>5.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode signing in Java (Maven Plugin)</name>
13-
<version>5.0-SNAPSHOT</version>
13+
<version>5.0</version>
1414
<packaging>maven-plugin</packaging>
1515

1616
<properties>

jsign/pom.xml

Lines changed: 2 additions & 2 deletions
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>5.0-SNAPSHOT</version>
9+
<version>5.0</version>
1010
<relativePath>../pom.xml</relativePath>
1111
</parent>
1212
<name>Jsign - Authenticode signing in Java (Distribution)</name>
13-
<version>5.0-SNAPSHOT</version>
13+
<version>5.0</version>
1414
<packaging>jar</packaging>
1515

1616
<dependencies>

jsign/src/choco/jsign.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
33
<metadata>
44
<id>jsign</id>
5-
<version>4.2</version>
5+
<version>5.0</version>
66
<owners>ebourg</owners>
77
<title>Jsign</title>
88
<authors>Emmanuel Bourg</authors>
@@ -27,7 +27,7 @@
2727
</metadata>
2828
<files>
2929
<file src="tools\**" target="tools" />
30-
<file src="..\..\target\jsign-4.2.jar" target="tools\jsign.jar" />
30+
<file src="..\..\target\jsign-5.0.jar" target="tools\jsign.jar" />
3131
<file src="..\..\..\LICENSE.txt" target="tools\" />
3232
</files>
3333
</package>

jsign/src/choco/tools/VERIFICATION.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ in verifying that this package's contents are trustworthy.
66
Package can be verified like this:
77

88
* Go to https://github.com/ebourg/jsign/releases
9-
* Download the `jsign-<version>.jar` file for the latest release (for example https://github.com/ebourg/jsign/releases/download/4.2/jsign-4.2.jar)
9+
* Download the `jsign-<version>.jar` file for the latest release (for example https://github.com/ebourg/jsign/releases/download/5.0/jsign-5.0.jar)
1010
* Get the checksum using one of the following methods:
1111
- Using powershell function 'Get-FileHash'
1212
- Use chocolatey utility 'checksum.exe'
1313
* Compare the checksum with the one of the jsign.jar file embedded in this package.
14-
The expected sha-256 value for the version 4.2 is:
15-
`290377FC4F593256200B3EA4061B7409E8276255F449D4C6DE7833FAF0850CC1`
14+
The expected sha-256 value for the version 5.0 is:
15+
`30CAC7606167487B2584A48FB8102BF958238F6F7118840C677BAADC1D2C4FCA`

0 commit comments

Comments
 (0)