Skip to content

Commit

Permalink
Release version 3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ebourg committed Feb 29, 2020
1 parent 2b2cf5c commit e0f46f2
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 24 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@ See https://ebourg.github.io/jsign for more information.

## Changes

#### Version 3.1 (2020-03-01)

* Certificate files can now be used with a PKCS11 token to support OpenPGP cards unable to hold a whole certificate chain (contributed by Erwin Tratar)
* Fixed an IllegalArgumentException when parsing large entries of MSI files

#### Version 3.0 (2020-01-07)

* Jsign now requires Java 8 or higher
Expand Down
20 changes: 10 additions & 10 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ <h3 id="ant">Ant Task</h3>
<p>Here is an example showing how the signing works with Ant, using a Java keystore:</p>

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

&lt;jsign file="application.exe"
name="My Application"
Expand Down Expand Up @@ -219,7 +219,7 @@ <h3 id="maven">Maven plugin</h3>
&lt;plugin>
&lt;groupId>net.jsign&lt;/groupId>
&lt;artifactId>jsign-maven-plugin&lt;/artifactId>
&lt;version>3.0&lt;/version>
&lt;version>3.1&lt;/version>
&lt;executions>
&lt;execution>
&lt;goals>
Expand Down Expand Up @@ -251,7 +251,7 @@ <h3 id="gradle">Gradle plugin</h3>
<pre class="prettyprint lang-groovy">
buildscript {
dependencies {
classpath 'net.jsign:jsign-gradle-plugin:3.0'
classpath 'net.jsign:jsign-gradle-plugin:3.1'
}
}

Expand All @@ -275,15 +275,15 @@ <h3 id="gradle">Gradle plugin</h3>

<h3>Command Line Tool</h3>

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

<pre> jsign [OPTIONS] FILE</pre>

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

<pre> java -jar jsign-3.0.jar [OPTIONS] FILE</pre>
<pre> java -jar jsign-3.1.jar [OPTIONS] FILE</pre>

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

Expand Down Expand Up @@ -345,7 +345,7 @@ <h3>API</h3>
&lt;dependency>
&lt;groupId>net.jsign&lt;/groupId>
&lt;artifactId>jsign-core&lt;/artifactId>
&lt;version>3.0&lt;/version>
&lt;version>3.1&lt;/version>
&lt;/dependency>
</pre>

Expand All @@ -370,9 +370,9 @@ <h3>API</h3>
<h3 id="files">Downloads</h3>

<ul>
<li><a href="https://github.com/ebourg/jsign/releases/download/3.0/jsign_3.0_all.deb">jsign_3.0_all.deb</a> - Jsign command line tool for Debian/Ubuntu</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/3.0/jsign-3.0-1.noarch.rpm">jsign-3.0-1.noarch.rpm</a> - Jsign command line tool for RedHat/Fedora/CentOS</li>
<li><a href="https://github.com/ebourg/jsign/releases/download/3.0/jsign-3.0.jar">jsign-3.0.jar</a> - Jsign Ant Task</li>
<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>
<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>
<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>
</ul>


Expand Down
4 changes: 2 additions & 2 deletions jsign-ant/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>3.0</version>
<version>3.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Code signing for Windows executables, Microsoft Installers and scripts (Ant Task)</name>
<version>3.0</version>
<version>3.1</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jsign-cli/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>3.0</version>
<version>3.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Code signing for Windows executables, Microsoft Installers and scripts (Command Line Tool)</name>
<version>3.0</version>
<version>3.1</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jsign-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>3.0</version>
<version>3.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Code signing for Windows executables, Microsoft Installers and scripts (Core)</name>
<version>3.0</version>
<version>3.1</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
4 changes: 2 additions & 2 deletions jsign-gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>3.0</version>
<version>3.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Code signing for Windows executables, Microsoft Installers and scripts (Gradle Plugin)</name>
<version>3.0</version>
<version>3.1</version>
<packaging>jar</packaging>

<repositories>
Expand Down
4 changes: 2 additions & 2 deletions jsign-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>3.0</version>
<version>3.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Code signing for Windows executables, Microsoft Installers and scripts (Maven Plugin)</name>
<version>3.0</version>
<version>3.1</version>
<packaging>maven-plugin</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion jsign-maven-plugin/src/test/resources/test-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<plugin>
<groupId>net.sign</groupId>
<artifactId>jsign-maven-plugin</artifactId>
<version>3.0</version>
<version>3.1</version>
<configuration>
<file>target/test-classes/wineyes.exe</file>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions jsign/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<version>3.0</version>
<version>3.1</version>
<relativePath>../pom.xml</relativePath>
</parent>
<name>Jsign - Code signing for Windows executables, Microsoft Installers and scripts (Distribution)</name>
<version>3.0</version>
<version>3.1</version>
<packaging>jar</packaging>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>net.jsign</groupId>
<artifactId>jsign-parent</artifactId>
<name>Jsign - Code signing for Windows executables, Microsoft Installers and scripts (Parent)</name>
<version>3.0</version>
<version>3.1</version>
<packaging>pom</packaging>

<inceptionYear>2012</inceptionYear>
Expand Down

0 comments on commit e0f46f2

Please sign in to comment.