diff --git a/CHANGELOG.md b/CHANGELOG.md index ed10900..fa37b38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.1] 2024-11-22 + +Small release, mainly to fix a migration issue with Sqlite and Postgresql. + +### Added + + - Added a link to a community terraform provider (#1035) + +### Changed + + - The opaque dependency now points to the official crate rather than a fork (#1040) + +### Fixed + + - Migration of the DB schema from 7 to 8 is now automatic for sqlite, and fixed for postgres (#1045) + - The startup warning about `key_seed` applying instead of `key_file` now has instructions on how to silence it (#1032) + +### New services + +- OneDev + ## [0.6.0] 2024-11-09 ### Breaking diff --git a/Cargo.lock b/Cargo.lock index d2fb351..739b8c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2499,7 +2499,7 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "lldap" -version = "0.6.1-alpha" +version = "0.6.1" dependencies = [ "actix", "actix-files", @@ -2575,7 +2575,7 @@ dependencies = [ [[package]] name = "lldap_app" -version = "0.6.1-alpha" +version = "0.6.1" dependencies = [ "anyhow", "base64 0.13.1", diff --git a/app/Cargo.toml b/app/Cargo.toml index c8cb5d6..b028f5f 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -6,7 +6,7 @@ homepage = "https://github.com/lldap/lldap" license = "GPL-3.0-only" name = "lldap_app" repository = "https://github.com/lldap/lldap" -version = "0.6.1-alpha" +version = "0.6.1" include = ["src/**/*", "queries/**/*", "Cargo.toml", "../schema.graphql"] [dependencies] diff --git a/server/Cargo.toml b/server/Cargo.toml index ca5f082..8ccfae4 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -8,7 +8,7 @@ keywords = ["cli", "ldap", "graphql", "server", "authentication"] license = "GPL-3.0-only" name = "lldap" repository = "https://github.com/lldap/lldap" -version = "0.6.1-alpha" +version = "0.6.1" [dependencies] actix = "0.13"