##// END OF EJS Templates
Set version to 1.4.0....
Jean-Philippe Lang -
r9202:6a9e16dedaac
parent child
Show More
@@ -4,6 +4,90 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 == TBD v1.4.0
8
9 * Defect #2719: Increase username length limit from 30 to 60
10 * Defect #3087: Revision referring to issues across all projects
11 * Defect #4824: Unable to connect (can't convert Net::LDAP::LdapError into String)
12 * Defect #6859: Moving issues to a tracker with different custom fields should let fill these fields
13 * Defect #7398: Error when trying to quick create a version with required custom field
14 * Defect #7826: bigdecimal-segfault-fix.rb must be removed for Oracle
15 * Defect #7920: Attempted to update a stale object when copying a project
16 * Defect #8857: Git: Too long in fetching repositories after upgrade from 1.1 or new branch at first time
17 * Defect #9472: The git scm module causes an excess amount of DB traffic.
18 * Defect #9685: Adding multiple times the same related issue relation is possible
19 * Defect #9798: Release 1.3.0 does not detect rubytree under ruby 1.9.3p0 / rails 2.3.14
20 * Defect #9978: Japanese "permission_add_issue_watchers" is wrong
21 * Defect #10006: Email reminders are sent for closed issues
22 * Defect #10150: CSV export and spent time: rounding issue
23 * Defect #10181: Issue context menu and bulk edit form show irrelevant statuses
24 * Defect #10198: message_id regex in pop3.rb only recognizes Message-ID header (not Message-Id)
25 * Defect #10251: Description diff link in note details is relative when received by email
26 * Defect #10272: Ruby 1.9.3: "incompatible character encoding" with LDAP auth
27 * Defect #10275: Message object not passed to wiki macros for head topic and in preview edit mode
28 * Defect #10334: Full name is not unquoted when creating users from emails
29 * Defect #10410: [Localization] Grammar issue of Simplified Chinese in zh.yml
30 * Defect #10442: Ruby 1.9.3 Time Zone setting Internal error.
31 * Defect #10467: Confusing behavior while moving issue to a project with disabled Issues module
32 * Defect #10505: Error when exporting to PDF with NoMethodError (undefined method `downcase' for nil:NilClass)
33 * Defect #10554: Defect symbols when exporting tasks in pdf
34 * Defect #10575: Uploading of attachments which filename contains non-ASCII chars fails with Ruby 1.9
35 * Defect #10590: WikiContent::Version#text return string with #<Encoding:ASCII-8BIT> when uncompressed
36 * Defect #10591: Dutch "label_file_added" translation is wrong
37 * Defect #10593: Error: 'incompatible character encodings: UTF-8 and ASCII-8BIT' (old annoing issue) on ruby-1.9.3
38 * Defect #10600: Watchers search generates an Internal error
39 * Defect #10602: Attachment link has get parameter :class
40 * Feature #779: Multiple SCM per project
41 * Feature #971: Add "Spent time" column to query
42 * Feature #1060: Add a LDAP-filter using external auth sources
43 * Feature #1102: Shortcut for assigning an issue to me
44 * Feature #1189: Multiselect custom fields
45 * Feature #1363: Allow underscores in project identifiers
46 * Feature #1913: LDAP - authenticate as user
47 * Feature #1972: Attachments for News
48 * Feature #2009: Manually add related revisions
49 * Feature #2323: Workflow permissions for administrators
50 * Feature #2416: {background:color} doesn't work in text formatting
51 * Feature #2694: Notification on loosing assignment
52 * Feature #2715: "Magic links" to notes
53 * Feature #2850: Add next/previous navigation to issue
54 * Feature #3055: Option to copy attachments when copying an issue
55 * Feature #3108: set parent automatically for new pages
56 * Feature #3463: Export all wiki pages to PDF
57 * Feature #4050: Ruby 1.9 support
58 * Feature #4769: Ability to move an issue to a different project from the update form
59 * Feature #4774: Change the hyperlink for file attachment to view and download
60 * Feature #5159: Ability to add Non-Member watchers to the watch list
61 * Feature #5638: Use Bundler (Gemfile) for gem management
62 * Feature #5643: Add X-Redmine-Sender header to email notifications
63 * Feature #6296: Bulk-edit custom fields through context menu
64 * Feature #6386: Issue mail should render the HTML version of the issue details
65 * Feature #6449: Edit a wiki page's parent on the edit page
66 * Feature #7361: Highlight active query in the side bar
67 * Feature #7420: Rest API for projects members
68 * Feature #7603: Please make editing issues more obvious than "Change properties (More)"
69 * Feature #8171: Adding attachments through the REST API
70 * Feature #8691: Better handling of issue update conflict
71 * Feature #9803: Change project through REST API issue update
72 * Feature #9923: User type custom fields should be filterable by "Me".
73 * Feature #9985: Group time report by the Status field
74 * Feature #9995: Time entries insertion, "Create and continue" button
75 * Feature #10020: Enable global time logging at /time_entries/new
76 * Feature #10042: Bulk change private flag
77 * Feature #10046: Update installation doc on release
78 * Feature #10126: Add members of subprojects in the assignee and author filters
79 * Feature #10131: Include custom fiels in time entries API responses
80 * Feature #10207: Git: use default branch from HEAD
81 * Feature #10208: Estonian translation
82 * Feature #10253: Better handling of attachments when validation fails
83 * Feature #10350: Bulk copy should allow for changing the target version
84 * Patch #9998: Make attachement "Optional Description" less wide
85 * Patch #10066: i18n not working with russian gem
86 * Patch #10155: Russian translation changed
87 * Patch #10464: Enhanced PDF output for Issues list
88 * Patch #10470: Efficiently process new git revisions in a single batch
89 * Patch #10513: Dutch translation improvement
90
7 == 2012-03-11 v1.3.2
91 == 2012-03-11 v1.3.2
8
92
9 * Defect #8194: {{toc}} uses identical anchors for subsections with the same name
93 * Defect #8194: {{toc}} uses identical anchors for subsections with the same name
@@ -3,8 +3,8 require 'rexml/document'
3 module Redmine
3 module Redmine
4 module VERSION #:nodoc:
4 module VERSION #:nodoc:
5 MAJOR = 1
5 MAJOR = 1
6 MINOR = 3
6 MINOR = 4
7 TINY = 2
7 TINY = 0
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