Skip to content

Commit a42a5b1

Browse files
author
Daniel
committed
prepare the next release
1 parent 6bf7eea commit a42a5b1

File tree

4 files changed

+25
-0
lines changed

4 files changed

+25
-0
lines changed

.gitattributes

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.gitattributes export-ignore
2+
.gitignore export-ignore
3+
.travis.yml export-ignore
4+
appveyor.yml export-ignore
5+
export.sh export-ignore

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,5 @@ bench
1616
vs2015/build
1717
Argon2.sdf
1818
Argon2.VC.opendb
19+
*.zip
20+
*.tar.gz

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# 20160406
2+
3+
* Version 1.3 of Argon2
4+
* Version number in encoded hash
5+
* Refactored low-level API
6+
* Visibility control for library symbols
7+
* Microsft Visual Studio solution
8+
* New bindings
9+
* Minor bug and warning fixes (no security issue)
10+
11+
112
# 20151206
213

314
* Python bindings

export.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
3+
FILE=`date "+%Y%m%d"`
4+
BRANCH=master
5+
6+
git archive --format zip --output $FILE.zip $BRANCH
7+
git archive --format tar.gz --output $FILE.tar.gz $BRANCH

0 commit comments

Comments
 (0)