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.
This commit is contained in:
Rasmus Kaj 2023-02-26 12:23:13 +01:00
parent 656898ec27
commit d773ede1e6
2 changed files with 2 additions and 2 deletions

View File

@ -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.

View File

@ -1,6 +1,6 @@
[package]
name = "rphotos"
version = "0.11.11-PRE"
version = "0.12.0"
authors = ["Rasmus Kaj <kaj@kth.se>"]
edition = "2021"