-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from dfns/update-ec
Update `generic-ec` dep to v0.3
- Loading branch information
Showing
9 changed files
with
121 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env bash | ||
|
||
m_branch=m; | ||
|
||
# fetch master since we might be in a shallow clone | ||
git fetch origin "$m_branch:$m_branch" --depth=1 | ||
|
||
changed=0; | ||
dir=.; | ||
# check if version changed | ||
if git diff "$m_branch" -- "Cargo.toml" | grep -q "^-version = "; then | ||
# check if changelog updated | ||
if git diff --exit-code --no-patch "$m_branch" -- "CHANGELOG.md"; then | ||
echo "$dir version changed, but CHANGELOG.md is not updated" | ||
changed=1; | ||
fi | ||
fi | ||
|
||
exit "$changed"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## v0.3.0 | ||
* Update `generic-ec` dep to v0.3 [#48] | ||
|
||
[#48]: https://github.com/dfns/paillier-zk/pull/48 | ||
|
||
## v0.2.0 | ||
|
||
All changes prior to this version were not documented |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters