summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2018-08-20 10:30:00 -0500
committerClark Boylan <clark.boylan@gmail.com>2018-08-28 15:13:05 -0700
commitc7436f95c9a1b276d88cd1423b5b0c815f6b7e56 (patch)
tree152f7b625be504a302aa61657160210bf9e4a220
parent8236cdbf37a27a4bac9f097c25d37db87692596f (diff)
downloadgit-review-c7436f95c9a1b276d88cd1423b5b0c815f6b7e56.tar.gz
Start using reno for releasenotes
It's probably a good idea to be specific about what's changing in reno releases. Since reno support wasn't in tree we didn't pick up notes for these two changes, but they're things users might want to know about. Change-Id: I249a3a4d0cf378b60bf43ce65d49416879d5517e
-rw-r--r--doc/requirements.txt1
-rw-r--r--doc/source/conf.py1
-rw-r--r--doc/source/index.rst1
-rw-r--r--doc/source/releasenotes.rst6
-rw-r--r--releasenotes/notes/missed-notes-f903719767e0a0ce.yaml18
5 files changed, 27 insertions, 0 deletions
diff --git a/doc/requirements.txt b/doc/requirements.txt
index c69cea6..b6c34f4 100644
--- a/doc/requirements.txt
+++ b/doc/requirements.txt
@@ -1,2 +1,3 @@
sphinx!=1.6.6,!=1.6.7 # BSD
openstackdocstheme>=1.11.0 # Apache-2.0
+reno>=2.8.0 # Apache-2.0
diff --git a/doc/source/conf.py b/doc/source/conf.py
index 5ff4600..a1ff9ca 100644
--- a/doc/source/conf.py
+++ b/doc/source/conf.py
@@ -31,6 +31,7 @@ import os
extensions = [
'sphinx.ext.autodoc',
'openstackdocstheme',
+ 'reno.sphinxext',
]
# Add any paths that contain templates here, relative to this directory.
diff --git a/doc/source/index.rst b/doc/source/index.rst
index 7134868..7f28999 100644
--- a/doc/source/index.rst
+++ b/doc/source/index.rst
@@ -11,6 +11,7 @@ for review.
installation
usage
developing
+ releasenotes
Indices and tables
diff --git a/doc/source/releasenotes.rst b/doc/source/releasenotes.rst
new file mode 100644
index 0000000..01f163d
--- /dev/null
+++ b/doc/source/releasenotes.rst
@@ -0,0 +1,6 @@
+=============
+Release Notes
+=============
+
+.. release-notes::
+ :unreleased-version-title: In Development
diff --git a/releasenotes/notes/missed-notes-f903719767e0a0ce.yaml b/releasenotes/notes/missed-notes-f903719767e0a0ce.yaml
new file mode 100644
index 0000000..012e3e8
--- /dev/null
+++ b/releasenotes/notes/missed-notes-f903719767e0a0ce.yaml
@@ -0,0 +1,18 @@
+---
+features:
+ - |
+ Patch download now supports change urls. Rather than forcing users to copy
+ only part of a URL to a review, users may now paste the whole change URL.
+fixes:
+ - |
+ Fix git review -d M,N for newer gerrit. The "number" field returned via
+ gerrit JSON can be a string (2.13) or a integer (~2.14).
+ - |
+ Update default gerrit namespace for newer gerrit. According to Gerrit
+ documentation for 2.15.3, refs/for/'branch' should be used when pushing
+ changes to Gerrit instead of refs/publish/'branch'.
+upgrade:
+ - |
+ The ``-c`` and ``--compatible`` command line options have been removed.
+ They had been there so someone could request compatibility with older
+ Gerrits, but the need for this has gone away.