From 89928b1a306403c4865d7a185d85f6622f57a980 Mon Sep 17 00:00:00 2001 From: Colt Frederickson Date: Tue, 29 Oct 2024 15:41:48 -0600 Subject: [PATCH] Update to 4.0.0 (#330) --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c3d478..49b1175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 4.0.0 + +- [[#327](https://github.com/IronCoreLabs/ironoxide/pull/327)] + - Reuse the reqwest `Client` for all calls. This increases performance significantly if making multiple calls with the same IronOxide. + - Change `DeviceContext` to `BlockingDeviceContext` for the blocking api. This allows the reuse of the runtime for all calls. + ## 3.0.0 - [[#321](https://github.com/IronCoreLabs/ironoxide/issues/321)] diff --git a/Cargo.toml b/Cargo.toml index e5092fe..cc50435 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ironoxide" -version = "3.0.0" +version = "4.0.0" authors = ["IronCore Labs "] readme = "README.md" license = "AGPL-3.0-only"