Skip to content

Commit

Permalink
Release for version 10.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
edulix committed Oct 7, 2024
1 parent accaa46 commit df62539
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install internal dependencies
run: |
export INTERNAL_GIT_VERSION="10.5.1"
export INTERNAL_GIT_VERSION="10.5.2"
git clone https://github.com/sequentech/tally-methods.git
cd tally-methods && git checkout "${INTERNAL_GIT_VERSION}" && cd ..
mv tally-methods/tally_methods .
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,11 +122,11 @@ appropiate version to use in your case.

> :warning: **Note** You need to change the `INTERNAL_GIT_VERSION` you should be
using depending on the version of [Sequent] platform used to run the election you
want to verify. In this example, we're using version `10.5.1` of [Sequent]
want to verify. In this example, we're using version `10.5.2` of [Sequent]
platform.

```bash
export INTERNAL_GIT_VERSION="10.5.1"
export INTERNAL_GIT_VERSION="10.5.2"
git clone https://github.com/sequentech/election-verifier.git
cd election-verifier
git checkout "${INTERNAL_GIT_VERSION}"
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

name := "election-verifier"

version := "10.5.1"
version := "10.5.2"

scalaVersion := "2.10.3"

Expand Down
2 changes: 1 addition & 1 deletion package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rm -r -f dist
mkdir dist
cp -r tally_methods dist
cp -r tally_pipes dist
cp target/scala-2.10/proguard/election-verifier_2.10-10.5.1.jar dist
cp target/scala-2.10/proguard/election-verifier_2.10-10.5.2.jar dist
cp pverify.sh dist
cp vmnc.sh dist
cp verify.py dist
Expand Down
6 changes: 3 additions & 3 deletions project.spdx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ creationInfo:
- "Organization: Sequent Tech Inc."
- "Person: Eduardo Robles"
licenseListVersion: "3.9"
name: "election-verifier-10.5.1"
name: "election-verifier-10.5.2"
dataLicense: "CC0-1.0"
documentNamespace: "http://sequentech.io/spdxdocs/spdx-document-election-verifier-0d6261e7-2d52-4eb7-9d3d-2091a35978ab"
documentDescribes:
Expand All @@ -15,13 +15,13 @@ packages:
- SPDXID: "SPDXRef-Package-election-verifier"
summary: "election-verifier performs tally and cryptographic verification of the election process, including key generation, shuffling and joint-decryption."
copyrightText: "Copyright 2015-2021 Sequent Tech Inc and others"
downloadLocation: "git+https://github.com/sequentech/[email protected].1"
downloadLocation: "git+https://github.com/sequentech/[email protected].2"
filesAnalyzed: false
homepage: "https://github.com/sequentech/election-verifier"
licenseConcluded: "NOASSERTION"
licenseDeclared: "AGPL-3.0-only"
name: "election-verifier"
versionInfo: "10.5.1"
versionInfo: "10.5.2"
- SPDXID: "SPDXRef-Package-tally-methods"
description: "sequent base tallying system."
copyrightText: "Copyright 2014 - 2021 Sequent Tech Inc and others"
Expand Down
2 changes: 1 addition & 1 deletion pverify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ fi

command -v java >/dev/null 2>&1 || { echo >&2 "* I require java but it's not installed. Aborting."; exit 1; }

java -Djava.security.egd=file:/dev/./urandom -classpath election-verifier_2.10-10.5.1.jar org.sequent.sequent.Verifier $1 $2
java -Djava.security.egd=file:/dev/./urandom -classpath election-verifier_2.10-10.5.2.jar org.sequent.sequent.Verifier $1 $2
exit $?
Binary file modified testdata/8.tar
Binary file not shown.
Binary file modified testdata/8_vote_weight.tar
Binary file not shown.
Binary file modified testdata/8_wrong_ballots.tar
Binary file not shown.
Binary file modified testdata/8_wrong_proof_of_shuffle.tar
Binary file not shown.
Binary file modified testdata/8_wrong_results.tar
Binary file not shown.
2 changes: 1 addition & 1 deletion vmnc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ command -v java >/dev/null 2>&1 || { echo >&2 "* I require java but it's not ins

DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"

java -Djava.security.egd=file:/dev/./urandom -classpath $DIR/election-verifier_2.10-10.5.1.jar org.sequent.sequent.Vmnc "$@"
java -Djava.security.egd=file:/dev/./urandom -classpath $DIR/election-verifier_2.10-10.5.2.jar org.sequent.sequent.Vmnc "$@"

0 comments on commit df62539

Please sign in to comment.