Skip to content

Commit

Permalink
prepare v1.12.0 + MSRV bump
Browse files Browse the repository at this point in the history
  • Loading branch information
phip1611 committed Apr 11, 2024
1 parent 2541c95 commit 61a86b9
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ jobs:
run: cargo run --release --features bin -- github.com

# The lib is already transitively build above. Here, we only verify the MSRV.
# The rust toolchain comes from `rust-toolchain.toml`.
build_library_msrv:
runs-on: ubuntu-latest
steps:
Expand Down
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Unreleased (Yet)

# v1.11.1 (2024-04-11)
# v1.12.0 (2024-04-11)

## ttfb lib

- dependency updates
- **BREAKING** The MSRV of the library is `1.67.0` stable.

# v1.11.0 (2024-04-09)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Library + CLI utility to measure the TTFB (time to first byte) of HTTP(S)
requests. This includes data of intermediate steps, such as the relative and
absolute timings of DNS lookup, TCP connect, and TLS handshake.
"""
version = "1.11.1"
version = "1.12.0"
edition = "2021"
rust-version = "1.65" # MSRV of the library (= min(lib,bin))
rust-version = "1.67" # MSRV of the library (= min(lib,bin))
keywords = ["ttfb", "http", "timings", "web"]
categories = ["network-programming", "command-line-utilities"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ HTTP Resp TTFB: 76.432 149.046
```

## MSRV
The MSRV of the library is `1.65.0` stable.
The MSRV of the library is `1.67.0` stable.
The MSRV of the binary is `1.74.1` stable.
2 changes: 1 addition & 1 deletion ttfb-lib-msrv-check/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.65.0" # MSRV of the library
channel = "1.67.0" # MSRV of the library
profile = "minimal"

0 comments on commit 61a86b9

Please sign in to comment.