Skip to content

Commit

Permalink
Merge branch 'develop' into remove-tslint
Browse files Browse the repository at this point in the history
  • Loading branch information
smartcontracts committed Jun 15, 2021
2 parents 7a81558 + 1424370 commit 3072243
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 20 deletions.
5 changes: 0 additions & 5 deletions .changeset/lazy-toes-teach.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/selfish-dryers-teach.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/ten-pumas-perform.md

This file was deleted.

6 changes: 3 additions & 3 deletions .github/workflows/publish-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ jobs:
- name: Docker Image Name
id: docker_image_name
run: |
if [ $CUSTOM_IMAGE_NAME == '' ]
if [ -z "${CUSTOM_IMAGE_NAME}" ]
then
echo "::set-output name=canary-docker-tag::${GITHUB_SHA::8}"
else
echo "::set-output name=canary-docker-tag::prerelease-$CUSTOM_IMAGE_NAME"
echo "::set-output name=canary-docker-tag::prerelease-${CUSTOM_IMAGE_NAME}"
fi
env:
CUSTOM_IMAGE_NAME: ${{ github.event.inputs.customImageName }}
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
context: .
file: ./ops/docker/Dockerfile.geth
push: true
tags: ethereumoptimism/l2geth:${{ needs.canary-publish.outputs.l2geth }}
tags: ethereumoptimism/l2geth:${{ steps.docker_image_name.outputs.canary-docker-tag }}

# pushes the base builder image to dockerhub
builder:
Expand Down
7 changes: 7 additions & 0 deletions l2geth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 0.3.9

### Patch Changes

- f409ce75: Fixes an off-by-one error that would sometimes break replica syncing when stopping and restarting geth.
- d9fd67d2: Correctly log 'end of OVM execution' message.

## 0.3.8

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion l2geth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eth-optimism/l2geth",
"version": "0.3.8",
"version": "0.3.9",
"private": true,
"devDependencies": {}
}
6 changes: 6 additions & 0 deletions packages/batch-submitter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.3.5

### Patch Changes

- 7cce55a9: Add status to generic error log to disambiguate errors

## 0.3.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/batch-submitter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eth-optimism/batch-submitter",
"version": "0.3.4",
"version": "0.3.5",
"private": true,
"description": "[Optimism] Batch submission for sequencer & aggregators",
"main": "dist/index",
Expand Down

0 comments on commit 3072243

Please sign in to comment.