branch: elpa/pg
commit d0062a20788b48dba693368faee62b5e42ef5961
Author: Eric Marsden <[email protected]>
Commit: Eric Marsden <[email protected]>

    Prepare for v0.62 release
---
 CHANGELOG.md     |  6 +++---
 doc/book.toml    | 11 +++++++++--
 doc/src/usage.md |  2 +-
 pg.el            |  2 +-
 4 files changed, 14 insertions(+), 7 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 565b613e82c..ac26afb5c5b 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,7 +1,7 @@
 # Changelog
 
 
-## [0.62] - Unreleased
+## [0.62] - 2025-12-26
 
 - New function `pg-table-acl` which returns the access control list for a 
specified table.
 
@@ -12,8 +12,8 @@
 
 - Rename functions `pg-read-attributes`, `pg-read-tuple`, `pg-read-char`, 
`pg-unread-char`,
   `pg-read-net-int`, `pg-read-int`, `pg-read-chars`, `pg-read-string`, 
`pg-send-char`,
-  `pg-send-string`, `pg-send-octets`, `pg-send-uint`, `pg-send-net-uint` to 
use the naming convention for
-  internal functions (`pg--` prefix).
+  `pg-send-string`, `pg-send-octets`, `pg-send-uint`, `pg-send-net-uint` to 
use the naming
+  convention for internal functions (`pg--` prefix).
 
 - Microsoft Windows: add additional sleep using `sleep-for` when waiting for 
network data. The
   existing calls to `accept-process-output` with a timeout are insufficient on 
this platform when
diff --git a/doc/book.toml b/doc/book.toml
index 8ea524d021c..2f72d87245f 100644
--- a/doc/book.toml
+++ b/doc/book.toml
@@ -5,8 +5,15 @@ description = "User manual for the pg-el Emacs Lisp 
socket-level interface to Po
 language = "en"
 src = "src"
 
-
 [output.html]
 git-repository-url = "https://github.com/emarsden/pg-el";
-git-repository-icon = "fa-github"
+git-repository-icon = "fab-github"
 smart-punctuation = true
+additional-css = ["./mdbook-admonish.css"]
+
+# This is currently failing due to a breaking mdbook update
+# https://github.com/tommilligan/mdbook-admonish/issues/233
+[preprocessor.admonish]
+command = "mdbook-admonish"
+on_failure = "bail"
+assets_version = "3.1.0" # do not edit: managed by `mdbook-admonish install`
diff --git a/doc/src/usage.md b/doc/src/usage.md
index cea0373e09e..89c0c84c37f 100644
--- a/doc/src/usage.md
+++ b/doc/src/usage.md
@@ -171,7 +171,7 @@ ELISP> (let ((res (pg-exec *pg* "SELECT 'NaN'::float8")))
 ~~~
 
 
-~~~admonish title="Numerical ranges"
+~~~admonish example title="Numerical ranges"
 ```lisp
 ELISP> (let ((res (pg-exec *pg* "SELECT int4range(10, 20)")))
          (car (pg-result res :tuple 0)))
diff --git a/pg.el b/pg.el
index 60146e78f2e..2275c7145ae 100644
--- a/pg.el
+++ b/pg.el
@@ -3,7 +3,7 @@
 ;; Copyright: (C) 1999-2002, 2022-2025  Eric Marsden
 
 ;; Author: Eric Marsden <[email protected]>
-;; Version: 0.61
+;; Version: 0.62
 ;; Keywords: data comm database postgresql
 ;; URL: https://github.com/emarsden/pg-el
 ;; Package-Requires: ((emacs "28.1") (peg "1.0.1"))

Reply via email to