Commit a42a5b1 Daniel
committed
1 parent 6bf7eea commit a42a5b1 Copy full SHA for a42a5b1
File tree 4 files changed +25
-0
lines changed
4 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ .gitattributes export-ignore
2
+ .gitignore export-ignore
3
+ .travis.yml export-ignore
4
+ appveyor.yml export-ignore
5
+ export.sh export-ignore
Original file line number Diff line number Diff line change 16
16
vs2015 /build
17
17
Argon2.sdf
18
18
Argon2.VC.opendb
19
+ * .zip
20
+ * .tar.gz
Original file line number Diff line number Diff line change
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
+
1
12
# 20151206
2
13
3
14
* Python bindings
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments