From 4a5a75811e2cd590b5c94f71864a5245fd511ccf Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Tue, 24 May 2011 13:16:24 +0200 Subject: Prepare release --- lib/tools/doc/src/notes.xml | 67 +++++++++++++++++++++++++++++++++++++++++++++ lib/tools/vsn.mk | 2 +- 2 files changed, 68 insertions(+), 1 deletion(-) (limited to 'lib/tools') diff --git a/lib/tools/doc/src/notes.xml b/lib/tools/doc/src/notes.xml index 93bb6b71c9..02d92fc4e7 100644 --- a/lib/tools/doc/src/notes.xml +++ b/lib/tools/doc/src/notes.xml @@ -30,6 +30,73 @@

This document describes the changes made to the Tools application.

+
Tools 2.6.6.4 + +
Fixed Bugs and Malfunctions + + +

+ Change make:files to behave more like erlc

+

+ This change removes the unnecessary checks on the files + when make:files is called and allows the error checking + to be done in compile:file, where the error messages are + produced. It does not affect the return value.

+

+ (Thanks to Sam bobroff)

+

+ Own Id: OTP-9179

+
+ +

+ add user specified compiler options on form reloading

+

+ In order to be able to test non-exported functions from + another (test) module it is necessary to compile the + specific module (at least during the test phase) with the + export_all compiler option. This allows complete + separation of testing and productive code. At the moment + it is not possible to combine this with a test code + coverage using the cover module. The problem is that when + cover compiling a module using cover:compile_* the code + is reloaded into the emulator omitting/filtering the + passed user options. In my example above the export_all + option would be removed and the non-exported functions + cannot be called any more. (Thanks to Tobias Schlager)

+

+ Own Id: OTP-9204

+
+ +

+ Inhibit electric newline after "->" when inside a type + spec

+

+ The Erlang mode for Emacs inserts a newline after every + "->", which saves you one keystroke when writing a + function, but that is inappropriate when writing a type + spec, as you'd normally keep the spec on one line. This + change inhibits the automatic insertion when the current + line starts with "-spec" or "-type".(Thanks to Magnus + Henoch)

+

+ Own Id: OTP-9255

+
+ +

+ Add a check logic to prevent file descriptor leak

+

+ cover module handle files as raw in export and import. + Assert counts of ports are the same at the beginning and + at the end of the test case.(Thanks to Shunichi + Shinohara)

+

+ Own Id: OTP-9300

+
+
+
+ +
+
Tools 2.6.6.3
Fixed Bugs and Malfunctions diff --git a/lib/tools/vsn.mk b/lib/tools/vsn.mk index 83027cfaa6..6999c695e6 100644 --- a/lib/tools/vsn.mk +++ b/lib/tools/vsn.mk @@ -1 +1 @@ -TOOLS_VSN = 2.6.6.3 +TOOLS_VSN = 2.6.6.4 -- cgit v1.2.3