From e993eb3a83cf02e27851be50ebf516d645fa6277 Mon Sep 17 00:00:00 2001 From: Dan Gericke Date: Wed, 19 Nov 2025 08:02:36 +0800 Subject: [PATCH] Release version 0.3.1 with breaking changes documentation and dependency update in README.md. --- Cargo.toml | 2 +- README.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8e4b768..c2337d6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scim_v2" -version = "0.3.0" +version = "0.3.1" edition = "2024" authors = ["Dan Gericke "] description = "A crate that provides utilities for working with the System for Cross-domain Identity Management (SCIM) version 2.0 protocol. (rfc7642, rfc7643, rfc7644)" diff --git a/README.md b/README.md index 69a96b3..71cac2d 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,15 @@ To use \`scim_v2\` in your project, add the following to your \`Cargo.toml\`: ```toml [dependencies] -scim_v2 = "0.2.3" +scim_v2 = "0.3.1" ``` Then run \`cargo build\` to download and compile the \`scim_v2\` crate and all its dependencies. +## Upgrading from 0.2.x to 0.3.x + +We've introduced breaking changes in version 0.3.0. type_ and ref_ variables are now called r#type and r#ref respectively to avoid conflicts with Rust keywords. Please update your code accordingly when upgrading. + ## Usage Here are some examples of how you can use this crate: