Skip to content

Commit

Permalink
Update to 8.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ehuss committed Sep 18, 2024
1 parent 226030a commit 76c3081
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion curl-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "curl-sys"
version = "0.4.75+curl-8.10.0"
version = "0.4.76+curl-8.10.1"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
links = "curl"
build = "build.rs"
Expand Down
2 changes: 1 addition & 1 deletion curl-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ fn main() {
.replace("@LIBCURL_LIBS@", "")
.replace("@SUPPORT_FEATURES@", "")
.replace("@SUPPORT_PROTOCOLS@", "")
.replace("@CURLVERSION@", "8.10.0"),
.replace("@CURLVERSION@", "8.10.1"),
)
.unwrap();

Expand Down
2 changes: 1 addition & 1 deletion curl-sys/curl
Submodule curl updated 92 files
+0 −247 .azure-pipelines.yml
+0 −1 .github/labeler.yml
+1 −2 .github/workflows/awslc.yml
+0 −2 .github/workflows/checksrc.yml
+0 −2 .github/workflows/codeql-analysis.yml
+0 −2 .github/workflows/curl-for-win.yml
+14 −7 .github/workflows/cygwin.yml
+4 −4 .github/workflows/distcheck.yml
+0 −2 .github/workflows/fuzz.yml
+0 −2 .github/workflows/http3-linux.yml
+0 −2 .github/workflows/linux-old.yml
+65 −26 .github/workflows/linux.yml
+0 −2 .github/workflows/linux32.yml
+34 −42 .github/workflows/macos.yml
+13 −16 .github/workflows/non-native.yml
+0 −2 .github/workflows/torture.yml
+76 −27 .github/workflows/windows.yml
+3 −4 .github/workflows/wolfssl.yml
+6 −2 CMakeLists.txt
+57 −531 RELEASE-NOTES
+1 −1 acinclude.m4
+0 −1 appveyor.yml
+0 −1 docs/EXPERIMENTAL.md
+5 −15 docs/RUSTLS.md
+7 −0 docs/THANKS
+8 −7 docs/libcurl/opts/CURLINFO_LOCAL_IP.md
+4 −0 docs/libcurl/opts/CURLINFO_LOCAL_PORT.md
+23 −19 docs/libcurl/opts/CURLMOPT_TIMERFUNCTION.md
+1 −1 docs/libcurl/opts/CURLOPT_TCP_FASTOPEN.md
+3 −3 include/curl/curlver.h
+0 −3 lib/cf-https-connect.c
+4 −0 lib/cf-socket.c
+1 −0 lib/cfilters.c
+18 −4 lib/connect.c
+4 −0 lib/curl_memrchr.c
+4 −0 lib/curl_memrchr.h
+17 −10 lib/ftp.c
+10 −8 lib/http.c
+4 −5 lib/http2.c
+2 −0 lib/multi.c
+3 −3 lib/rand.c
+0 −5 lib/rand.h
+29 −11 lib/request.c
+1 −0 lib/request.h
+14 −4 lib/sendf.c
+6 −6 lib/setopt.c
+9 −25 lib/transfer.c
+15 −0 lib/url.c
+6 −0 lib/urldata.h
+0 −7 lib/vquic/curl_ngtcp2.c
+0 −7 lib/vquic/curl_osslq.c
+0 −8 lib/vquic/curl_quiche.c
+75 −33 lib/vtls/rustls.c
+1 −1 lib/vtls/vtls.h
+1 −0 scripts/cd2nroff
+4 −1 src/Makefile.am
+2 −5 src/tool_cb_wrt.c
+4 −12 src/tool_operate.c
+8 −4 src/tool_operhlp.c
+2 −1 src/tool_operhlp.h
+1 −10 tests/CI.md
+6 −1 tests/FILEFORMAT.md
+1 −0 tests/data/DISABLED
+2 −2 tests/data/Makefile.am
+3 −5 tests/data/test1086
+3 −5 tests/data/test1112
+3 −0 tests/data/test29
+1 −0 tests/data/test437
+6 −2 tests/data/test475
+3 −3 tests/data/test476
+67 −0 tests/data/test477
+56 −0 tests/data/test692
+11 −5 tests/ftpserver.pl
+2 −1 tests/http/clients/.gitignore
+2 −1 tests/http/clients/Makefile.inc
+0 −0 tests/http/clients/hx-download.c
+568 −0 tests/http/clients/hx-upload.c
+6 −6 tests/http/test_02_download.py
+0 −3 tests/http/test_03_goaway.py
+98 −0 tests/http/test_07_upload.py
+1 −1 tests/http/test_19_shutdown.py
+9 −0 tests/libtest/lib537.c
+2 −1 tests/pathhelp.pm
+14 −4 tests/processhelp.pm
+10 −8 tests/runner.pm
+12 −1 tests/runtests.pl
+48 −1 tests/server/sws.c
+53 −19 tests/servers.pm
+54 −32 tests/sshserver.pl
+6 −0 tests/unit/unit1614.c
+4 −0 tests/unit/unit2603.c
+9 −0 tests/unit/unit2604.c

0 comments on commit 76c3081

Please sign in to comment.