From a42a5b12fb3aa31048ffbf5be05826edb2800dcc Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 6 Apr 2016 14:20:19 +0200 Subject: [PATCH] prepare the next release --- .gitattributes | 5 +++++ .gitignore | 2 ++ CHANGELOG.md | 11 +++++++++++ export.sh | 7 +++++++ 4 files changed, 25 insertions(+) create mode 100644 .gitattributes create mode 100755 export.sh diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..d74a5b4 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,5 @@ +.gitattributes export-ignore +.gitignore export-ignore +.travis.yml export-ignore +appveyor.yml export-ignore +export.sh export-ignore diff --git a/.gitignore b/.gitignore index 36d5643..43145e1 100644 --- a/.gitignore +++ b/.gitignore @@ -16,3 +16,5 @@ bench vs2015/build Argon2.sdf Argon2.VC.opendb +*.zip +*.tar.gz diff --git a/CHANGELOG.md b/CHANGELOG.md index 14c1e31..290e759 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 20160406 + +* Version 1.3 of Argon2 +* Version number in encoded hash +* Refactored low-level API +* Visibility control for library symbols +* Microsft Visual Studio solution +* New bindings +* Minor bug and warning fixes (no security issue) + + # 20151206 * Python bindings diff --git a/export.sh b/export.sh new file mode 100755 index 0000000..9757b10 --- /dev/null +++ b/export.sh @@ -0,0 +1,7 @@ +#!/bin/sh + +FILE=`date "+%Y%m%d"` +BRANCH=master + +git archive --format zip --output $FILE.zip $BRANCH +git archive --format tar.gz --output $FILE.tar.gz $BRANCH