From d773ede1e6fd8433a6694eb1190c6fc939040bcb Mon Sep 17 00:00:00 2001 From: Rasmus Kaj Date: Sun, 26 Feb 2023 12:23:13 +0100 Subject: [PATCH] Release 0.12.0 (2023-02-26) * Database access is now async (PR #10). - Use `diesel-async` with deadpool feature for database access. - A bunch of previously synchronous handlers are now async. - Some `.map` and simliar replaced with `if` blocks or `for` loops. * Refactored query parsing and facet handling in search (PR #11). Should be more efficient now, especially for negative facets. * Improved diagnosics and date format flexibility in parsing exif data. * Avoid an extra query for the positions in search and splitlist. * Links by time is 404 if no images found in query. * Some random cleanup and refactoring. --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a0fd59..71f16f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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/). -## Unreleased +## Release 0.12.0 (2023-02-26) * Database access is now async (PR #10). - Use `diesel-async` with deadpool feature for database access. diff --git a/Cargo.toml b/Cargo.toml index b499f33..71e434c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rphotos" -version = "0.11.11-PRE" +version = "0.12.0" authors = ["Rasmus Kaj "] edition = "2021"