From e3d25bda616e75e944c885669187304b75ecada1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwendal=20Roue=CC=81?= Date: Sun, 1 Dec 2019 05:23:19 +0100 Subject: [PATCH] CHANGELOG --- CHANGELOG.md | 4 ++++ README.md | 2 ++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b59970bfa9..d1f8c92ee9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -63,6 +63,10 @@ GRDB adheres to [Semantic Versioning](https://semver.org/), with one exception: - [#659](https://github.com/groue/GRDB.swift/pull/659): Database interruption +### Documentation Diff + +A new [Interrupt a Database](README.md#interrupt-a-database) chapter documents the new `interrupt()` method. + ## 4.6.2 diff --git a/README.md b/README.md index 65ead94aa8..e6007c61d1 100644 --- a/README.md +++ b/README.md @@ -6682,6 +6682,8 @@ try dbQueue.write { db in } // throws SQLITE_ABORT ``` +For more information, see [Interrupt A Long-Running Query](https://www.sqlite.org/c3ref/interrupt.html). + ## Avoiding SQL Injection