From 026ff48edbf445109f83e6b79fc3ee63a54a237b Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 1 Sep 2022 22:06:41 +0900 Subject: [PATCH] Bump ngtcp2 --- .github/workflows/build.yml | 2 +- README.rst | 2 +- docker/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cee9c51a..1b404e67 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -157,7 +157,7 @@ jobs: - name: Build ngtcp2 if: matrix.http3 == 'http3' run: | - git clone --depth 1 -b v0.8.0 https://github.com/ngtcp2/ngtcp2 + git clone --depth 1 -b v0.8.1 https://github.com/ngtcp2/ngtcp2 cd ngtcp2 autoreconf -i ./configure --prefix=$PWD/build --enable-lib-only PKG_CONFIG_PATH="../openssl/build/lib/pkgconfig" $EXTRA_NGTCP2_OPTS diff --git a/README.rst b/README.rst index e1e8d847..15f7b1da 100644 --- a/README.rst +++ b/README.rst @@ -375,7 +375,7 @@ Build ngtcp2: .. code-block:: text - $ git clone --depth 1 -b v0.8.0 https://github.com/ngtcp2/ngtcp2 + $ git clone --depth 1 -b v0.8.1 https://github.com/ngtcp2/ngtcp2 $ cd ngtcp2 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only \ diff --git a/docker/Dockerfile b/docker/Dockerfile index d9646330..7ae8235b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -24,7 +24,7 @@ RUN git clone --depth 1 -b v0.7.0 https://github.com/ngtcp2/nghttp3 && \ cd .. && \ rm -rf nghttp3 -RUN git clone --depth 1 -b v0.8.0 https://github.com/ngtcp2/ngtcp2 && \ +RUN git clone --depth 1 -b v0.8.1 https://github.com/ngtcp2/ngtcp2 && \ cd ngtcp2 && \ autoreconf -i && \ ./configure --enable-lib-only \