From: James Moger Date: Sat, 25 Aug 2012 12:21:29 +0000 (-0400) Subject: Final documentation of 1.1.0 release X-Git-Tag: v1.1.0^0 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1ab5b3081374c79867ceff2917bccae6dd1a2878;p=gitblit.git Final documentation of 1.1.0 release --- diff --git a/docs/00_index.mkd b/docs/00_index.mkd index 2d137953..0812c3e3 100644 --- a/docs/00_index.mkd +++ b/docs/00_index.mkd @@ -3,7 +3,7 @@ Current Release %VERSION% (%BUILDDATE%) changelog
Download Gitblit GO
Download Gitblit WAR
-
Download Gitblit Express BETA
+
Download Gitblit Express
Download Gitblit Manager
Gitblit API | Gitblit Federation Client @@ -47,7 +47,7 @@ All dependencies are bundled. All dependencies are bundled. -### Express: For the Cloud BETA +### Express: For the Cloud *Gitblit Express* is a prepared distribution for [RedHat's OpenShift][rhcloud] cloud service. All dependencies are bundled. diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd index 21b47bab..a0324a68 100644 --- a/docs/04_releases.mkd +++ b/docs/04_releases.mkd @@ -16,7 +16,7 @@ If you are updating from an earlier release AND you have indexed branches with t - Fixed generated urls in Groovy *sendmail* hook script for grouped repositories - Fixed generated urls in RSS feeds for grouped repositories - Fixed nullpointer exception in git servlet security filter (issue 123) -- Eliminated an unnecessary reopsitory enumeration call on the root page which should result in faster page loads (issue 103) +- Eliminated an unnecessary repository enumeration call on the root page which should result in faster page loads (issue 103) - Gitblit could not delete a Lucene index in a working copy on index upgrade - Do not index submodule links (issue 119) - Restore original user or team object on failure to update (issue 118) @@ -25,7 +25,7 @@ If you are updating from an earlier release AND you have indexed branches with t - Repository URL now uses `X-Forwarded-Proto` and `X-Forwarded-Port`, if available, for reverse proxy configurations (issue 115) - Output real RAW content, not simulated RAW content (issue 114) - Fixed Lucene charset encoding bug when reindexing a repository (issue 112) -- Fixed search box linking to Lucene page for nested repository on Tomcat (issue 111) +- Fixed search box linking to Lucene page for grouped repository on Tomcat (issue 111) - Fixed null pointer in LdapUserSerivce if account has a null email address (issue 110) - Really fixed failure to update a GO setting from the manager (issue 85) diff --git a/docs/05_roadmap.mkd b/docs/05_roadmap.mkd index 3d593a03..6b4def42 100644 --- a/docs/05_roadmap.mkd +++ b/docs/05_roadmap.mkd @@ -30,7 +30,6 @@ This list is volatile. * Gitblit: diff should highlight inserted/removed fragment compared to original line * Gitblit: implement branch permission controls as Groovy pre-receive script. *Maintain permissions text file similar to a gitolite configuration file or svn authz file.* -* Gitblit: consider user-subscribed email notifications for a repository branch. * Gitblit: aggregate RSS feeds by tag or subfolder * Gitblit: Consider creating more Git model objects and exposing them via the JSON RPC interface to allow inspection/retrieval of Git commits, Git trees, etc from Gitblit. * Gitblit: Blame coloring by author (issue 2) diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java index d07638c2..b9cd74aa 100644 --- a/src/com/gitblit/Constants.java +++ b/src/com/gitblit/Constants.java @@ -30,11 +30,11 @@ public class Constants { // The build script extracts this exact line so be careful editing it // and only use A-Z a-z 0-9 .-_ in the string. - public static final String VERSION = "1.1.0-SNAPSHOT"; + public static final String VERSION = "1.1.0"; // The build script extracts this exact line so be careful editing it // and only use A-Z a-z 0-9 .-_ in the string. - public static final String VERSION_DATE = "PENDING"; + public static final String VERSION_DATE = "2012-08-25"; // The build script extracts this exact line so be careful editing it // and only use A-Z a-z 0-9 .-_ in the string.