diff --git a/AUTHORS b/AUTHORS index 98b1fb4aca..1bf069c70b 100644 --- a/AUTHORS +++ b/AUTHORS @@ -180,6 +180,7 @@ Contributors: * Steve Milner * Steve Sutcliffe * Steven MacLeod + * Surya Nallu * Takeshi Yoshizawa * Tao Zhou * Taro MURAOKA diff --git a/docs/releasenotes/reviewboard/1.7.3.txt b/docs/releasenotes/reviewboard/1.7.3.txt new file mode 100644 index 0000000000..f1b1c47417 --- /dev/null +++ b/docs/releasenotes/reviewboard/1.7.3.txt @@ -0,0 +1,88 @@ +================================ +Review Board 1.7.3 Release Notes +================================ + +**Release date**: January 28, 2013 + + +New Features +============ + +* Add optional support for sending e-mails when closing review requests. + This is off by default, but can be turned on in E-mail Settings. + Patch by Raja Venkataraman. (:bug:`422`) + + +Compatibility Updates +===================== + +* The new support for Perforce moved files has changed. RBTools 0.4.3 will now + require Review Board 1.7.3 at a minimum. + +* Review Board now works with SVN diffs generated in many non-C locales. + Patch by Tetsuya Morimoto. + + +Web API Changes +=============== + +* Added a ``scmtools.perforce.moved_files`` capability to indicate moved + file support for Perforce. + + +Bug Fixes +========= + +* SMTP servers saved with additional whitespace will now have that + whitespace stripped, in order to prevent lookup failures. (:bug:`2620`) + + Patch by Surya Nallu. + +* Fixed a crash when running a search index. (:bug:`2872`) + +* The listed creation time for a review request now reflects when it was + first published, not when the initial draft was first created. + +* The "Add Comment" button on file attachment thumbnails is no longer shown + if not logged in. Patch by Niklas Hambuechen. + +* Fixed a bug allowing for publishing blank review requests after filling in + the field and then deleting them. Patch by Miguel Flores. (:bug:`2870`) + +* Fixed an occasional crash when viewing a diff when displaying a function + or class header on the left-hand side but when there was none on the + right-hand side. (:bug:`2876`) + +* Fixed a breakage on some systems when checking the Mercurial version. + +* The Summary field no longer overlaps text when wrapping. Patch by Greg Wang. + +* Fixed the review ID column when using Local Sites. + +* Using a custom ``SITE_ROOT`` with a development server setup no longer + breaks all static media. + +* Fixed the capitalization of the "VersionOne" bug tracker entry. + +* Using ClearCase on Windows 7 should no longer cause console windows to + pop up. Patch by Tao Zhou. + +* Fixed loading blank comments in the diff viewer. This is primarily a problem + during development. + + +Contributors +============ + +* Christian Hammond +* David Trowbridge +* Greg Wang +* Miguel Flores +* Niklas Hambuechen +* Raja Venkataraman +* Surya Nallu +* Tao Zhou +* Tetsuya Morimoto + + +.. comment: vim: ft=rst et diff --git a/docs/releasenotes/reviewboard/index.txt b/docs/releasenotes/reviewboard/index.txt index b8d605bb66..90b57d5c4b 100644 --- a/docs/releasenotes/reviewboard/index.txt +++ b/docs/releasenotes/reviewboard/index.txt @@ -10,6 +10,7 @@ Review Board Release Notes .. toctree:: :maxdepth: 1 + 1.7.3 1.7.2 1.7.1 1.7.0.1 diff --git a/reviewboard/__init__.py b/reviewboard/__init__.py index 4909d84d8f..1422199c9d 100644 --- a/reviewboard/__init__.py +++ b/reviewboard/__init__.py @@ -4,7 +4,7 @@ # # (Major, Minor, Micro, Patch, alpha/beta/rc/final, Release Number, Released) # -VERSION = (1, 7, 3, 0, 'alpha', 0, False) +VERSION = (1, 7, 3, 0, 'final', 0, True) def get_version_string(): diff --git a/setup.py b/setup.py index 74a1e793a3..f448dbba63 100755 --- a/setup.py +++ b/setup.py @@ -165,7 +165,7 @@ def run(self): install_requires=[ 'Django>=1.4.3,<1.5', 'django_evolution>=0.6.7', - 'Djblets>=0.7.7', + 'Djblets>=0.7.9', 'django-pipeline>=1.2.22', 'docutils', 'markdown>=2.2.1',