From 31bdbe939f6f0d345974b9bd92c4a49b74c5e5e0 Mon Sep 17 00:00:00 2001 From: Marvin Ahlgrimm Date: Wed, 6 Nov 2024 08:10:58 +0100 Subject: [PATCH] Fix 0.6 release notes --- docs/docs/the-marten-project/release-notes/0.6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/the-marten-project/release-notes/0.6.md b/docs/docs/the-marten-project/release-notes/0.6.md index 7887bf357..8019ed1fd 100644 --- a/docs/docs/the-marten-project/release-notes/0.6.md +++ b/docs/docs/the-marten-project/release-notes/0.6.md @@ -24,7 +24,7 @@ _Under development._ * [Query sets](../../models-and-databases/queries.md) now support XOR operations when [performing complex queries involving `q` expressions](../../models-and-databases/queries.md#complex-filters-with-q-expressions). Additionally, combining query sets using the XOR operator (`^`) is now also supported (see [`#^ (XOR)`](../../models-and-databases/reference/query-set.md#-xor)). * A new [`slugify`](../../models-and-databases/reference/fields.md#slugify) option was added to [`slug`](../../models-and-databases/reference/fields.md#slug) model fields in order to make it possible to automatically generate a slug value from another local model field. * Query pages (instances of [`Marten::DB::Query::Page`](pathname:///api/dev/Marten/DB/Query/Page.html)) now expose a [`#pages_count`](pathname:///api/dev/Marten/DB/Query/Page.html#pages_count-instance-method) method that allows to get the total number of pages. -* Related objects are now automatically loaded when accessing bacward relations (such as backward many-to-one relations or backward one-to-one relations). +* Related objects are now automatically loaded when accessing backward relations (such as backward many-to-one relations or backward one-to-one relations). #### Handlers and HTTP