Skip to content

Commit 1dc1ee6

Browse files
authored
Upgrade from curl 8.0.1 to curl 8.6.0. (#153)
This was prompted by a failed dependabot update of the curl crate which also required a curl-sys update. (`cargo update -p curl -p curl-sys`)
1 parent f186dc6 commit 1dc1ee6

File tree

3 files changed

+27
-35
lines changed

3 files changed

+27
-35
lines changed

CHANGES.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Release Notes
22

3+
## 0.7.1
4+
5+
This release updates various dependencies, most notably updating from
6+
curl 8.0.1 (March 20, 2023) to 8.6.0 (January 31, 2024).
7+
See:
8+
+ https://curl.se/changes.html
9+
+ https://curl.se/docs/releases.html
10+
+ https://curl.se/docs/vulnerabilities.html
11+
312
## 0.7.0
413

514
This release updates various dependencies, most notably updating from

Cargo.lock

+10-34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = [
55

66
[package]
77
name = "ptex"
8-
version = "0.7.0"
8+
version = "0.7.1"
99
edition = "2021"
1010
authors = [
1111
"John Sirois <john.sirois@gmail.com>",
@@ -26,6 +26,13 @@ serde_json = "1.0"
2626
url = "2.5"
2727

2828
[dependencies.curl]
29+
# This is 0.4.45 with a patch to Cargo.toml to add a missing feature requirement on the windows-sys
30+
# crate.
31+
# TODO(John Sirois): Switch back to mainline when https://github.com/alexcrichton/curl-rust/pull/547
32+
# is resolved.
33+
git = "https://github.com/a-scie/curl-rust"
34+
rev = "9f8c905174d1d3afa675d852f01818f76d21106e"
35+
2936
version = "0.4"
3037
default-features = false
3138
features = [

0 commit comments

Comments
 (0)