Skip to content

Commit

Permalink
fix(nginx#41): zlib update to 1.3.1
Browse files Browse the repository at this point in the history
The previous 1.3 link is dead. 1.3.1 was released on Jan 22, 2024.
  • Loading branch information
allan2 committed Feb 20, 2024
1 parent ea23a22 commit 563a03b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ In short, this SDK allows writing NGINX modules using the Rust language.

NGINX modules can be built against a particular version of NGINX. The following environment variables can be used to specify a particular version of NGINX or an NGINX dependency:

* `ZLIB_VERSION` (default 1.3) -
* `ZLIB_VERSION` (default 1.3.1) -
* `PCRE2_VERSION` (default 10.42)
* `OPENSSL_VERSION` (default 3.0.7)
* `NGX_VERSION` (default 1.23.3) - NGINX OSS version
Expand Down
2 changes: 1 addition & 1 deletion nginx-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use tar::Archive;
use which::which;

/// The default version of zlib to use if the `ZLIB_VERSION` environment variable is not present
const ZLIB_DEFAULT_VERSION: &str = "1.3";
const ZLIB_DEFAULT_VERSION: &str = "1.3.1";
const ZLIB_GPG_SERVER_AND_KEY_ID: (&str, &str) = ("keyserver.ubuntu.com", "783FCD8E58BCAFBA");
const ZLIB_DOWNLOAD_URL_PREFIX: &str = "https://www.zlib.net";
/// The default version of pcre2 to use if the `PCRE2_VERSION` environment variable is not present
Expand Down

0 comments on commit 563a03b

Please sign in to comment.