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
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0] - 2026-03-17

### Added

- `native-tls` feature that enable TLS functionality provided by `native-tls`
- structured logging for url and HTTP verbe

### Changed

- Breaking: the default TLS provider is now `rustls`, following the new `reqwest` 0.13 default. For people who still want use the native provider, a new `native-tls` features as been added.
- some log has been downgraded from `debug` to `trace`

### Fixed

- `reqwest` is no longer an optional dependency anymore.

## [0.6.1] - 2024-12-12

### Fixed
Expand Down Expand Up @@ -178,7 +194,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[unreleased]: https://github.com/jmgilman/rustify/compare/v0.5.4..HEAD
[unreleased]: https://github.com/jmgilman/rustify/compare/v0.7.0..HEAD
[0.7.0]: https://github.com/jmgilman/rustify/releases/tag/v0.7.0
[0.6.1]: https://github.com/jmgilman/rustify/releases/tag/v0.6.1
[0.5.4]: https://github.com/jmgilman/rustify/releases/tag/v0.5.4
[0.5.3]: https://github.com/jmgilman/rustify/releases/tag/v0.4.4
[0.5.2]: https://github.com/jmgilman/rustify/releases/tag/v0.5.2
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustify"
version = "0.6.1"
version = "0.7.0"
authors = ["Joshua Gilman <joshuagilman@gmail.com>"]
description = "A Rust library for interacting with HTTP API endpoints."
license = "MIT"
Expand Down Expand Up @@ -30,7 +30,7 @@ async-trait = "0.1.52"
bytes = "1.1.0"
http = "1"
reqwest = { version = "0.13.0", default-features = false }
rustify_derive = { version = "0.5.4", path = "rustify_derive" }
rustify_derive = { version = "0.5.5", path = "rustify_derive" }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
serde_urlencoded = "0.7.1"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Add rustify as a dependency to your cargo.toml:

```toml
[dependencies]
rustify = "0.6.1"
rustify_derive = "0.5.4"
rustify = "0.7.0"
rustify_derive = "0.5.5"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion rustify_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustify_derive"
version = "0.5.4"
version = "0.5.5"
authors = ["Joshua Gilman <joshuagilman@gmail.com>"]
description = "A derive macro for implementing an Endpoint for rustify"
license = "MIT"
Expand Down
Loading