##// END OF EJS Templates
Updates for 2.0.4 release....
Jean-Philippe Lang -
r10210:45b297f3ae77
parent child
Show More
@@ -4,6 +4,28 Redmine - project management software
4 Copyright (C) 2006-2012 Jean-Philippe Lang
4 Copyright (C) 2006-2012 Jean-Philippe Lang
5 http://www.redmine.org/
5 http://www.redmine.org/
6
6
7 == 2012-09-16 v2.0.4
8
9 * Defect #10818: Running rake in test environment causes exception
10 * Defect #11209: Wiki diff may generate broken HTML
11 * Defect #11217: Project names in drop-down are escaped twice
12 * Defect #11262: Link is escaped in wiki added/updated notification email
13 * Defect #11307: Can't filter for negative numeric custom fields
14 * Defect #11325: Unified diff link broken on specific file/revision diff view
15 * Defect #11341: Escaped link in conflict resolution form
16 * Defect #11365: Attachment description length is not validated
17 * Defect #11511: Confirmation page has broken HTML when a project folding sub project is deleted
18 * Defect #11533: rake redmine:plugins:test doesn't run tests in subdirectories
19 * Defect #11541: Version sharing is missing in the REST API
20 * Defect #11550: Issue reminder doesn't work when using asynchronous delivery
21 * Defect #11776: Can't override mailer views inside redmine plugin.
22 * Defect #11789: Edit section links broken with h5/h6 headings
23 * Feature #11338: Exclude emails with auto-submitted => auto-generated
24 * Patch #11299: redmine:plugins:migrate should update db/schema.rb
25 * Patch #11328: Fix Japanese mistranslation for 'label_language_based'
26 * Patch #11448: Russian translation for 1.4-stable and 2.0-stable
27 * Patch #11600: Fix plural form of the abbreviation for hours in Brazilian Portuguese
28
7 == 2012-06-18 v2.0.3
29 == 2012-06-18 v2.0.3
8
30
9 * Defect #10688: PDF export from Wiki - Problems with tables
31 * Defect #10688: PDF export from Wiki - Problems with tables
@@ -13,7 +13,7 http://www.redmine.org/
13
13
14 * A database:
14 * A database:
15 * MySQL (tested with MySQL 5.1)
15 * MySQL (tested with MySQL 5.1)
16 * PostgreSQL (tested with PostgreSQL 8.4)
16 * PostgreSQL (tested with PostgreSQL 9.1)
17 * SQLite3 (tested with SQLite 3.6)
17 * SQLite3 (tested with SQLite 3.6)
18
18
19 Optional:
19 Optional:
@@ -38,7 +38,10 Optional:
38 3. Create an empty utf8 encoded database: "redmine" for example
38 3. Create an empty utf8 encoded database: "redmine" for example
39
39
40 4. Configure the database parameters in config/database.yml
40 4. Configure the database parameters in config/database.yml
41 for the "production" environment (default database is MySQL)
41 for the "production" environment (default database is MySQL and ruby1.8)
42
43 If you're running Redmine with MySQL and ruby1.9, replace the adapter name
44 with `mysql2`
42
45
43 5. Generate a session store secret
46 5. Generate a session store secret
44
47
@@ -4,7 +4,7 module Redmine
4 module VERSION #:nodoc:
4 module VERSION #:nodoc:
5 MAJOR = 2
5 MAJOR = 2
6 MINOR = 0
6 MINOR = 0
7 TINY = 3
7 TINY = 4
8
8
9 # Branch values:
9 # Branch values:
10 # * official release: nil
10 # * official release: nil
General Comments 0
You need to be logged in to leave comments. Login now