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.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "scim_v2"
version = "0.3.0"
version = "0.3.1"
edition = "2024"
authors = ["Dan Gericke <dan@shiftcontrol.io>"]
description = "A crate that provides utilities for working with the System for Cross-domain Identity Management (SCIM) version 2.0 protocol. (rfc7642, rfc7643, rfc7644)"
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Loading