-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
38 additions
and
7 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
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "palette" | ||
version = "0.2.1" #automatically updated | ||
version = "0.3.0" #automatically updated | ||
authors = ["Erik Hedvall <[email protected]>"] | ||
exclude = ["scripts/*", "examples/*", "tests/*", "res/*", ".travis.yml", ".gitignore", "CHANGELOG.md", "version.sh"] | ||
exclude = ["scripts/*", "examples/*", "tests/*", "res/*", ".travis.yml", ".gitignore", "CHANGELOG.md", "CONTRIBUTING.md", "version.sh"] | ||
description = "Makes linear color calculations and conversion easy and accessible for anyone." | ||
documentation = "https://ogeon.github.io/docs/palette/master/palette/index.html" | ||
documentation = "https://docs.rs/palette/0.3.0/palette/" | ||
repository = "https://github.com/Ogeon/palette" | ||
readme = "README.md" | ||
keywords = ["color", "colour", "space", "linear"] | ||
|
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 |
---|---|---|
|
@@ -10,10 +10,15 @@ issues=() | |
git log --pretty="%an<%ae>;%H;%ad;%s" --date=short | | ||
{ | ||
while read line; do | ||
if [[ $line =~ Homu\<[email protected]\>\;.* ]]; then | ||
parts="$(echo "$line" | sed 's/.*;\([^;]*\);.*;Auto merge of #\([0-9]*\)*/\1 \2/g')" | ||
if [[ $line =~ Homu\<[email protected]\>\;.* ]] || [[ $line =~ ^bors\[bot\].* ]]; then | ||
parts="$(echo "$line" | sed 's/.*;\([^;]*\);.*;.*#\([0-9]*\)*/\1 \2/g')" | ||
parts=($parts) | ||
description="$(git log -1 --pretty=format:%b ${parts[0]})" | ||
|
||
if [[ $line =~ ^bors\[bot\].* ]]; then | ||
description="$(echo "$description" | sed 's/[0-9]*: \(\[.*\]\s*\)\?\(.*\) r=.* a=.*/\2/g')" | ||
fi | ||
|
||
header="$(echo "$description" | head -n 1)" | ||
|
||
fixes="$(echo "$description" | grep -iEo "(close|closes|closed|fix|fixes|fixed|resolve|resolves|resolved) #[0-9]+" | sed 's/.* #\([0-9]*\)/\1/g')" | ||
|
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