From 2aa9d61ae228ff0e9dfc898abb18ed7d0df07434 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 12 Nov 2022 16:46:24 +0900 Subject: [PATCH] Bump ngtcp2 to v0.11.0 --- .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 ed408fe1..1030ac26 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.10.0 https://github.com/ngtcp2/ngtcp2 + git clone --depth 1 -b v0.11.0 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 174f209d..0727bd39 100644 --- a/README.rst +++ b/README.rst @@ -379,7 +379,7 @@ Build ngtcp2: .. code-block:: text - $ git clone --depth 1 -b v0.10.0 https://github.com/ngtcp2/ngtcp2 + $ git clone --depth 1 -b v0.11.0 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 b0c8532f..3e687bba 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -24,7 +24,7 @@ RUN git clone --depth 1 -b v0.7.1 https://github.com/ngtcp2/nghttp3 && \ cd .. && \ rm -rf nghttp3 -RUN git clone --depth 1 -b v0.10.0 https://github.com/ngtcp2/ngtcp2 && \ +RUN git clone --depth 1 -b v0.11.0 https://github.com/ngtcp2/ngtcp2 && \ cd ngtcp2 && \ autoreconf -i && \ ./configure --enable-lib-only \