Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ http = "1.4"
indoc = "2"
itertools = "0.14"
log = "0.4"
typed-reqwest = { path = "typed-reqwest" }
typed-reqwest = { version = "0.0.3", path = "typed-reqwest" }
mmigration = { path = "mmigration" }
nom = "8"
nom-language = "0.1"
Expand Down
11 changes: 10 additions & 1 deletion typed-reqwest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# Changelog

## Unreleased
## 0.0.3

### Changed

- Raised minimum supported Rust version to 1.95.

## 0.0.2

### Changed

- Response decoding negotiates on the `Content-Type` header, rejecting
unexpected media types instead of assuming JSON.
- Renamed the JSON-specific decode error to a content-type-agnostic body
decode error.

## 0.0.1

- Initial release
Expand Down
2 changes: 1 addition & 1 deletion typed-reqwest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition.workspace = true
rust-version.workspace = true
name = "typed-reqwest"
version = "0.0.1"
version = "0.0.3"
description = "Trait-based reqwest abstraction with typed requests, declarative response decoding, and link header pagination"
license = "MIT"
readme = "README.md"
Expand Down