|
|
@@ -56,7 +56,7 @@ All releases version numbers follow the format of [semantic versioning 2.0.0](ht
|
|
|
- Manually check new features work well.
|
|
|
- Add a signed tag through `git tag -s ${VERSION}`.
|
|
|
- Sanity check tag correctness through `git show tags/$VERSION`.
|
|
|
-- Push the tag to GitHub through `git push origin tags/$VERSION`. This assumes `origin` corresponds to "https://github.com/coreos/etcd".
|
|
|
+- Push the tag to GitHub through `git push origin tags/$VERSION`. This assumes `origin` corresponds to "https://github.com/etcd-io/etcd".
|
|
|
|
|
|
## Build release binaries and images
|
|
|
|
|
|
@@ -83,11 +83,11 @@ for i in etcd-*{.zip,.tar.gz}; do gpg2 --default-key $SUBKEYID --armor --output
|
|
|
for i in etcd-*{.zip,.tar.gz}; do gpg2 --verify ${i}.asc ${i}; done
|
|
|
|
|
|
# sign zipped source code files
|
|
|
-wget https://github.com/coreos/etcd/archive/${VERSION}.zip
|
|
|
+wget https://github.com/etcd-io/etcd/archive/${VERSION}.zip
|
|
|
gpg2 --armor --default-key $SUBKEYID --output ${VERSION}.zip.asc --detach-sign ${VERSION}.zip
|
|
|
gpg2 --verify ${VERSION}.zip.asc ${VERSION}.zip
|
|
|
|
|
|
-wget https://github.com/coreos/etcd/archive/${VERSION}.tar.gz
|
|
|
+wget https://github.com/etcd-io/etcd/archive/${VERSION}.tar.gz
|
|
|
gpg2 --armor --default-key $SUBKEYID --output ${VERSION}.tar.gz.asc --detach-sign ${VERSION}.tar.gz
|
|
|
gpg2 --verify ${VERSION}.tar.gz.asc ${VERSION}.tar.gz
|
|
|
```
|
|
|
@@ -155,5 +155,5 @@ git log ...${PREV_VERSION} --pretty=format:"%an" | sort | uniq | tr '\n' ',' | s
|
|
|
|
|
|
## Post release
|
|
|
|
|
|
-- Create new stable branch through `git push origin ${VERSION_MAJOR}.${VERSION_MINOR}` if this is a major stable release. This assumes `origin` corresponds to "https://github.com/coreos/etcd".
|
|
|
+- Create new stable branch through `git push origin ${VERSION_MAJOR}.${VERSION_MINOR}` if this is a major stable release. This assumes `origin` corresponds to "https://github.com/etcd-io/etcd".
|
|
|
- Bump [hardcoded Version in the repository](https://github.com/etcd-io/etcd/blob/master/version/version.go#L30) to the version `${VERSION}+git`.
|