diff options
author | James Moger <james.moger@gitblit.com> | 2012-04-04 09:56:29 -0400 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2012-04-04 09:56:29 -0400 |
commit | 227b241be847274370c1d7f28b0040717c187d39 (patch) | |
tree | d640f0fcbd6a6f4ef9bac66e0e679d443b42cea2 | |
parent | bc5b7bab1eab81620616ba9d62dedff3d9eef52f (diff) | |
download | gitblit-227b241be847274370c1d7f28b0040717c187d39.tar.gz gitblit-227b241be847274370c1d7f28b0040717c187d39.zip |
Release 0.9.2v0.9.2
-rw-r--r-- | docs/04_releases.mkd | 2 | ||||
-rw-r--r-- | src/com/gitblit/Constants.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd index 4baeb321..74825325 100644 --- a/docs/04_releases.mkd +++ b/docs/04_releases.mkd @@ -13,7 +13,7 @@ - Fixed absolute path/canonical path discrepancy between Gitblit and JGit regarding use of symlinks (issue 78)
- Fixed row layout on activity page (issue 79)
- Fixed Centos service script (Github/mohamedmansour)
-- Removed wrong char from EditRepositoryPage, which caused IE8 to not display the save button (Github/jonnybbb)
+- Fixed EditRepositoryPage for IE8; missing save button (issue 80, Github/jonnybbb)
**0.9.1** *released 2012-03-27*
diff --git a/src/com/gitblit/Constants.java b/src/com/gitblit/Constants.java index bbb986b2..9490ef7f 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.0.0-SNAPSHOT";
+ public static final String VERSION = "0.9.2";
// 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-04-04";
// The build script extracts this exact line so be careful editing it
// and only use A-Z a-z 0-9 .-_ in the string.
|