diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aa44043c..4efe20d9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Development -1. Install (golang)[https://golang.org/] +1. Install (Golang)[https://golang.org/] 1. Run `scripts/devtools.sh` to install the required devtools 2. Run `make [local] vendor` to install the vendor dependencies 2. Run `make [local] test` to ensure you can run the existing tests diff --git a/debian/changelog b/debian/changelog index 25c4b943..f0a4d512 100644 --- a/debian/changelog +++ b/debian/changelog @@ -103,7 +103,7 @@ yq (4.16.2) focal; urgency=medium * Improved extract-checksum.sh * Bump github.com/spf13/cobra from 1.2.1 to 1.3.0 (#1039) * enable more linters (#1043) - * Bump golang compiler #1037 + * Bump Golang compiler #1037 -- Roberto Mier Escandon Tue, 21 Dec 2021 09:41:44 +0000 diff --git a/release_notes.txt b/release_notes.txt index 77724693..478803a3 100644 --- a/release_notes.txt +++ b/release_notes.txt @@ -171,7 +171,7 @@ 4.24.1: - Added comparison operators! (#94) - - Bumped golang to 1.18 (#1153) + - Bumped Golang to 1.18 (#1153) - XML parser no longer runs in strict mode (added new flag to run in strict mode) (#1155) 4.23.1: diff --git a/scripts/release-deb.sh b/scripts/release-deb.sh index e6c49fd1..c3cf5353 100755 --- a/scripts/release-deb.sh +++ b/scripts/release-deb.sh @@ -28,7 +28,7 @@ show_help() { echo " -h, --help Shows this help" echo " -d, --distribution DISTRO The distribution to use for the changelog generation. If not provided, last changelog entry" echo " distribution is considered" - echo " --goversion VERSION The version of golang to use. Default to $GOVERSION" + echo " --goversion VERSION The version of Golang to use. Default to $GOVERSION" echo " -k, --sign-key KEYID Sign the package sources with the provided gpg key id (long format). When not provided this" echo " paramater, the generated sources are not signed" echo " -s, --sign Sign the package sources with a gpg key of the maintainer" @@ -156,7 +156,7 @@ fi # generate changelog gbp dch --ignore-branch --no-multimaint -N "$VERSION" -s "\$SINCE" -D "\$DISTRIBUTION" -# using -d to prevent failing when searching for golang dep on control file +# using -d to prevent failing when searching for Golang dep on control file params=("-d" "-S") # add the -sa option for signing along with the key to use when provided key id @@ -208,7 +208,7 @@ RUN set -e \ && sed -i -- 's/# deb-src/deb-src/g' /etc/apt/sources.list \ && apt-get -qq update -# install golang on its $GOVERSION +# install Golang on its $GOVERSION FROM base as golang RUN apt-get -qq -y --no-install-recommends install \ ca-certificates \