-
Notifications
You must be signed in to change notification settings - Fork 0
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 #4 from dfns/new-release
udigest v0.2
- Loading branch information
Showing
15 changed files
with
656 additions
and
127 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,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
m_branch=m; | ||
changelog_file=CHANGELOG.md; | ||
|
||
# fetch master since we might be in a shallow clone | ||
git fetch origin "$m_branch:$m_branch" --depth=1 | ||
|
||
changed=0; | ||
for log in */"$changelog_file"; do | ||
dir=$(dirname "$log"); | ||
# check if version changed | ||
if git diff "$m_branch" -- "$dir/Cargo.toml" | grep -q "^-version = "; then | ||
# check if changelog updated | ||
if git diff --exit-code --no-patch "$m_branch" -- "$log"; then | ||
echo "$dir version changed, but $log is not updated" | ||
changed=1; | ||
fi | ||
fi | ||
done | ||
|
||
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
words: | ||
- digestable | ||
- udigest | ||
- VecDeque | ||
- bytestring | ||
- bytestrings | ||
- biglen | ||
- sublist | ||
- docsrs | ||
- concated | ||
- inlines |
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,14 @@ | ||
## v0.2.0 | ||
* Breaking change: remove `udigest::Tag` [#4] | ||
* Breaking change: rename `udigest::udigest` function to `udigest::hash` [#4] | ||
* Add support of all hash functions compatible with `digest` crate: | ||
hash functions with fixed output, with extendable output, and with | ||
variable output [#4] | ||
* Add `udigest::inline_struct!` macro [#4] | ||
* fix: handle cases when `EncodeValue` is dropped without being used | ||
|
||
[#4]: https://github.com/dfns/udigest/pull/4 | ||
|
||
## v0.1.0 | ||
|
||
The first release! |
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
Oops, something went wrong.