diff --git a/doc/src/sgml/release-10.sgml b/doc/src/sgml/release-10.sgml
index 5c2e026286..fed67e1b23 100644
--- a/doc/src/sgml/release-10.sgml
+++ b/doc/src/sgml/release-10.sgml
@@ -6,7 +6,7 @@
Release date:
- 2017-??-?? (current as of 2017-09-17, commit 244b4a37e)
+ 2017-10-05
@@ -193,6 +193,7 @@
2016-11-18 [67dc4ccbb] Add pg_sequences view
2017-05-15 [f8dc1985f] Fix ALTER SEQUENCE locking
2017-06-01 [3d79013b9] Make ALTER SEQUENCE, including RESTART, fully transactio
+2017-09-29 [5cc5987ce] psql: Update \d sequence display
-->
Move sequences' metadata fields into a new
+
+
+ The output of psql>'s \d> command for a
+ sequence has been redesigned, too.
+
@@ -764,23 +770,6 @@
-
- Reduce locking required for adding values to enum types (Andrew
- Dunstan, Tom Lane)
-
-
-
- Previously it was impossible to run ALTER TYPE ... ADD
- VALUE> in a transaction block unless the enum type was created
- in the same block. Now, only references to uncommitted enum
- values from other transactions are prohibited.
-
-
-
-
-