Skip to content

Commit 2cd46ed

Browse files
committed
go 1.21.3, node 18.18.1
1 parent d4013f8 commit 2cd46ed

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.0.2 (2023-10-11)
2+
3+
* go ethereum: 1.13.3
4+
* node: 18.18.1
5+
16
1.0.1 (2023-10-03)
27

38
* go ethereum: 1.13.2

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
1414
rm -rf /var/lib/apt/lists/*
1515

1616
## Go Lang
17-
ARG GO_VERSION=1.21.1
17+
ARG GO_VERSION=1.21.3
1818
ADD https://go.dev/dl/go${GO_VERSION}.linux-$TARGETARCH.tar.gz /go-ethereum/go${GO_VERSION}.linux-$TARGETARCH.tar.gz
1919
RUN echo 'SHA256 of this go source package...'
2020
RUN cat /go-ethereum/go${GO_VERSION}.linux-$TARGETARCH.tar.gz | sha256sum
@@ -101,7 +101,7 @@ RUN export DEBIAN_FRONTEND=noninteractive && \
101101
RUN mkdir -p /usr/local/nvm
102102
ENV NVM_DIR=/usr/local/nvm
103103

104-
ENV NODE_VERSION=v18.18.0
104+
ENV NODE_VERSION=v18.18.1
105105

106106
ADD https://raw.githubusercontent.com/creationix/nvm/master/install.sh /usr/local/etc/nvm/install.sh
107107
RUN bash /usr/local/etc/nvm/install.sh && \

README.md

+11-4
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To use this development container in Visual Studio Code, specify the `Dockerfile
2020

2121
Everything needed to develop smart contracts with Ethereum and [Foundry](https://github.com/foundry-rs/foundry)
2222

23-
GO: 1.21.1
23+
GO: 1.21.3
2424
ETH: 1.13.2
2525
SOLC: 0.8.21
2626

@@ -52,11 +52,18 @@ SOLC: 0.8.21
5252
FROM ghcr.io/xmtp/foundry:latest
5353
5454
ENV PATH=${PATH}:~/.cargo/bin
55-
RUN ~xmtp/.cargo/bin/forge build --sizes
56-
57-
CMD ~xmtp/.cargo/bin/forge test -vvv
55+
RUN forge build --sizes
56+
RUN forge test -vvv
5857
```
5958

6059
### Architecture
6160
* linux/amd64
6261
* linux/arm64
62+
63+
### Help
64+
65+
```shell
66+
$ forge --help
67+
$ anvil --help
68+
$ cast --help
69+
```

0 commit comments

Comments
 (0)