Skip to content

Commit

Permalink
docs: update versions and NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Apr 2, 2020
1 parent 75da488 commit 589ae5d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 deletions.
4 changes: 3 additions & 1 deletion MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ yarn lerna version --no-push --conventional-prerelease
scripts/need-news HEAD^ > needs-news.md
# Push the branch.
git push -u origin release-1.19.0
# Make docker containers.
make -C packages/deployment docker-build docker-push
```

Then, create a release PR, pasting `needs-news.md` into the body. If there are errors, repeat the above section.
Then, create a release PR, pasting `needs-news.md` into the body. If you need to do more work on the branch before the final release, fix, commit, and repeat the above section.

Have the relevant maintainers fill out the `NEWS.md` for their package and
commit it to the release branch.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "root",
"version": "independent",
"name": "@agoric/sdk",
"version": "1.19.0-alpha0",
"private": true,
"useWorkspaces": true,
"workspaces": [
Expand Down
4 changes: 4 additions & 0 deletions packages/cosmic-swingset/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
User-visible changes in Cosmic SwingSet:

## Release v0.14.0 (2020-04-02)

* Beginnings of IBC support, currently just stubbed out.

## Release v0.10.7 (2019-10-23)

* Upgrade to ERTP v0.1.8
Expand Down
2 changes: 1 addition & 1 deletion packages/deployment/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
REPOSITORY = agoric/cosmic-swingset
REPOSITORY_SDK = agoric/agoric-sdk
SS := ../cosmic-swingset/
TAG := $(shell test ! -f package.json || sed -ne 's/.*"version": "\(.*\)".*/\1/p' package.json)
TAG := $(shell test ! -f ../../package.json || sed -ne 's/.*"version": "\(.*\)".*/\1/p' ../../package.json)
DO_PUSH_LATEST :=

docker-build: docker-build-base docker-build-sdk docker-build-solo \
Expand Down
2 changes: 1 addition & 1 deletion packages/deployment/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agoric/deployment",
"version": "1.19.0-alpha.0",
"version": "1.18.1-alpha.0",
"description": "Set up Agoric public chain nodes",
"private": true,
"main": "main.js",
Expand Down

0 comments on commit 589ae5d

Please sign in to comment.