Skip to content

Commit da2407d

Browse files
authored
Merge pull request #118 from akamai/release/1.0.1
Release/1.0.1
2 parents ca921f7 + 3b83299 commit da2407d

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# EDGEGRID GOLANG RELEASE NOTES
22

3+
## 1.0.1 (Jan 7, 2021)
4+
* CPSv2 - Fixed several issues with listing enrollments
5+
36
## 2.0.0 (Oct 15, 2020)
47
* [IMPORTANT] Breaking changes from earlier clients. Project updated to use v2 directory structure.
58
* [ENHANCEMENT] PAPI - Api error return to the user when an activation or validation error occurs.

scripts/semtag

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,11 @@ case $ACTION in
584584
final)
585585
init
586586
diff=$(git diff master | cat)
587+
diff_dev=$(git diff develop | cat)
588+
diff_v2=$(git diff v2 | cat)
587589
if [ "$forcetag" == "false" ]; then
590+
if [ -n "$diff_dev" ] && [ -n "$diff" ] && [ -n "$diff_v2" ]; then
591+
echo "ERROR: Branch must be updated with develop, master, or v2 for final versions"
588592
if [ -n "$diff" ]; then
589593
echo "ERROR: Branch must be updated with master for final versions"
590594
exit 1
@@ -623,4 +627,4 @@ case $ACTION in
623627
*)
624628
echo "'$ACTION' is not a valid command, see --help for available commands."
625629
;;
626-
esac
630+
esac

0 commit comments

Comments
 (0)