From 6e6388e7c25e232937704460e7b50fe0ebb46943 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 22 Jan 2022 18:17:09 +0900 Subject: [PATCH] Depend on nghttp3 v0.1.1 --- .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 864afb19..0eeb00f8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -114,7 +114,7 @@ jobs: - name: Build nghttp3 if: matrix.http3 == 'http3' run: | - git clone --depth 1 -b v0.1.0 https://github.com/ngtcp2/nghttp3 + git clone --depth 1 -b v0.1.1 https://github.com/ngtcp2/nghttp3 cd nghttp3 autoreconf -i ./configure --prefix=$PWD/build --enable-lib-only diff --git a/README.rst b/README.rst index 20f9aea9..679b9ded 100644 --- a/README.rst +++ b/README.rst @@ -366,7 +366,7 @@ Build nghttp3: .. code-block:: text - $ git clone --depth 1 -b v0.1.0 https://github.com/ngtcp2/nghttp3 + $ git clone --depth 1 -b v0.1.1 https://github.com/ngtcp2/nghttp3 $ cd nghttp3 $ autoreconf -i $ ./configure --prefix=$PWD/build --enable-lib-only diff --git a/docker/Dockerfile b/docker/Dockerfile index e13ca4d2..f75c9b37 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -15,7 +15,7 @@ RUN git clone --depth 1 -b OpenSSL_1_1_1m+quic https://github.com/quictls/openss cd .. && \ rm -rf openssl -RUN git clone --depth 1 https://github.com/ngtcp2/nghttp3 && \ +RUN git clone --depth 1 -b v0.1.1 https://github.com/ngtcp2/nghttp3 && \ cd nghttp3 && \ autoreconf -i && \ ./configure --enable-lib-only && \