diff --git a/docs/releasenotes/1.0.7.rst b/docs/releasenotes/1.0.7.rst
new file mode 100644
index 0000000000000000000000000000000000000000..a26e76a9a42a5df42c62e53465cd67a612afee19
--- /dev/null
+++ b/docs/releasenotes/1.0.7.rst
@@ -0,0 +1,56 @@
+.. default-intersphinx:: django1.6 djblets1.0
+
+
+===========================
+Djblets 1.0.7 Release Notes
+===========================
+
+**Release date**: TBD
+
+
+djblets.db
+==========
+
+* Fixed timestamps being overwritten on save when using
+  :py:class:`~djblets.db.fields.modification_timestamp_field.
+  ModificationTimestampField`.
+
+  If code manually sets a timestamp for the field, saving it will no longer
+  override that timestamp.
+
+
+djblets.extensions
+==================
+
+* Fixed parsing of extension metadata containing Unicode characters.
+
+
+djblets.registries
+==================
+
+* Added a signal for notifying when a registry is populating.
+
+  The new :py:data:`~djblets.registries.signals.registry_populating` signal
+  is now emitted when a registry is populating, right after all built-in
+  items are added. This allows code outside the registry to populate it with
+  new items before the registry is otherwise used.
+
+
+djblets.webapi
+==============
+
+* Added form construction customization to
+  :py:class:`~djblets.webapi.resources.mixins.forms.UpdateFormMixin`.
+
+  :py:meth:`UpdateFormMixin.create_form()
+  <djblets.webapi.resources.mixins.forms.UpdateFormMixin.create_form>` now
+  accepts a ``form_kwargs`` argument for passing custom parameters to the
+  form's constructor. This allows for more customization and specialized usage
+  of forms in the API.
+
+
+Contributors
+============
+
+* Barret Rennie
+* Christian Hammond
diff --git a/docs/releasenotes/conf.py b/docs/releasenotes/conf.py
index 7ee3eb996a79a2fb7dd015efa617f665474610c5..94033a6d972c28f768e03997e4cf241791fa3fa4 100644
--- a/docs/releasenotes/conf.py
+++ b/docs/releasenotes/conf.py
@@ -44,6 +44,7 @@ extensions = [
     'beanbag_docutils.sphinx.ext.extlinks',
     'beanbag_docutils.sphinx.ext.http_role',
     'beanbag_docutils.sphinx.ext.intersphinx_utils',
+    'beanbag_docutils.sphinx.ext.ref_utils',
     'beanbag_docutils.sphinx.ext.retina_images',
     'extralinks',
 ]
diff --git a/docs/releasenotes/index.rst b/docs/releasenotes/index.rst
index 53e32cba3ab455d4e99f80ea3d24ac75e38b8022..712644dbec734f9fcdf4a43578a3f83bfe742663 100644
--- a/docs/releasenotes/index.rst
+++ b/docs/releasenotes/index.rst
@@ -11,6 +11,7 @@ Djblets Release Notes
 .. toctree::
    :maxdepth: 1
 
+   1.0.7
    1.0.6
    1.0.5
    1.0.4
