release: v0.4.0

This commit is contained in:
Valentin Tolmer 2022-07-08 18:32:53 +02:00 committed by nitnelave
parent e31c7351ea
commit 91d12a7e97
4 changed files with 19 additions and 4 deletions

View File

@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.4.0] - 2022-07-08
### Breaking
The `lldap_readonly` group has been renamed `lldap_password_manager` (migration happens automatically) and a new `lldap_strict_readonly` group was introduced.
### Added
- A new `lldap_strict_readonly` group allows granting readonly rights to users (not able to change other's passwords, in particular).
### Changed
- The `lldap_readonly` group is renamed `lldap_password_manager` since it still allows users to change (non-admin) passwords.
### Removed
- The `lldap_readonly` group was removed.
## [0.3.0] - 2022-07-08
### Breaking

4
Cargo.lock generated
View File

@ -1959,7 +1959,7 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
[[package]]
name = "lldap"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"actix",
"actix-files",
@ -2022,7 +2022,7 @@ dependencies = [
[[package]]
name = "lldap_app"
version = "0.3.0"
version = "0.4.0"
dependencies = [
"anyhow",
"chrono",

View File

@ -1,6 +1,6 @@
[package]
name = "lldap_app"
version = "0.3.0"
version = "0.4.0"
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
edition = "2021"

View File

@ -2,7 +2,7 @@
authors = ["Valentin Tolmer <valentin@tolmer.fr>"]
edition = "2021"
name = "lldap"
version = "0.3.0"
version = "0.4.0"
[dependencies]
actix = "0.12"