Skip to content

Commit

Permalink
Keycloak Admin REST API v24.0.0 (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork authored Mar 30, 2024
1 parent 90e6c7a commit 436cb9b
Show file tree
Hide file tree
Showing 8 changed files with 4,085 additions and 1,595 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keycloak"
version = "23.0.400"
version = "24.0.0"
authors = ["Alexander Korolev <[email protected]>"]
edition = "2021"
categories = ["api-bindings", "asynchronous"]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Dual-licensed under `MIT` or the [UNLICENSE](http://unlicense.org/).

## Features

Implements [Keycloak Admin REST API version 23.0.4](https://www.keycloak.org/docs-api/23.0.4/rest-api/index.html).
Implements [Keycloak Admin REST API version 24.0.0](https://www.keycloak.org/docs-api/24.0.0/rest-api/index.html).

### Feature flags

Expand All @@ -24,7 +24,7 @@ Add dependency to Cargo.toml:

```toml
[dependencies]
keycloak = "23.0"
keycloak = "24.0"
```

```rust
Expand Down Expand Up @@ -81,7 +81,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
.to_string();

admin
.realm_users_with_id_delete("test", id.as_str())
.realm_users_with_user_id_delete("test", id.as_str())
.await?;

admin.realm_delete("test").await?;
Expand Down
Loading

0 comments on commit 436cb9b

Please sign in to comment.