From 20641fe0f2ea745873fc7557448d3a7deb1bd639 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Mon, 16 Sep 2013 20:11:53 +0200 Subject: Prepare release --- erts/doc/src/notes.xml | 226 ++++++++++++++++++++++++++++++++++++ lib/asn1/doc/src/notes.xml | 38 ++++++ lib/asn1/vsn.mk | 2 +- lib/common_test/doc/src/notes.xml | 93 +++++++++++++++ lib/common_test/vsn.mk | 2 +- lib/compiler/doc/src/notes.xml | 61 ++++++++++ lib/compiler/vsn.mk | 2 +- lib/crypto/doc/src/notes.xml | 16 +++ lib/crypto/vsn.mk | 2 +- lib/debugger/doc/src/notes.xml | 16 +++ lib/debugger/vsn.mk | 2 +- lib/diameter/doc/src/notes.xml | 46 ++++++++ lib/edoc/doc/src/notes.xml | 17 +++ lib/edoc/vsn.mk | 2 +- lib/erl_docgen/doc/src/notes.xml | 19 ++- lib/erl_docgen/vsn.mk | 2 +- lib/erl_interface/doc/src/notes.xml | 32 +++++ lib/erl_interface/vsn.mk | 2 +- lib/et/doc/src/notes.xml | 17 +++ lib/et/vsn.mk | 2 +- lib/eunit/doc/src/notes.xml | 16 +++ lib/eunit/vsn.mk | 2 +- lib/hipe/doc/src/notes.xml | 17 +++ lib/hipe/vsn.mk | 2 +- lib/ic/doc/src/notes.xml | 20 +++- lib/ic/vsn.mk | 2 +- lib/inets/doc/src/notes.xml | 46 +++++++- lib/inets/vsn.mk | 2 +- lib/kernel/doc/src/notes.xml | 60 ++++++++++ lib/megaco/doc/src/notes.xml | 18 ++- lib/megaco/vsn.mk | 2 +- lib/mnesia/doc/src/notes.xml | 31 ++++- lib/mnesia/vsn.mk | 2 +- lib/observer/doc/src/notes.xml | 17 +++ lib/observer/vsn.mk | 2 +- lib/odbc/doc/src/notes.xml | 39 ++++++- lib/odbc/vsn.mk | 2 +- lib/os_mon/doc/src/notes.xml | 37 ++++++ lib/os_mon/vsn.mk | 2 +- lib/parsetools/doc/src/notes.xml | 35 ++++++ lib/parsetools/vsn.mk | 2 +- lib/percept/doc/src/notes.xml | 17 +++ lib/percept/vsn.mk | 2 +- lib/public_key/doc/src/notes.xml | 23 ++++ lib/public_key/vsn.mk | 2 +- lib/reltool/doc/src/notes.xml | 19 ++- lib/reltool/vsn.mk | 2 +- lib/runtime_tools/doc/src/notes.xml | 29 +++++ lib/runtime_tools/vsn.mk | 2 +- lib/sasl/doc/src/notes.xml | 15 +++ lib/sasl/vsn.mk | 2 +- lib/ssh/doc/src/notes.xml | 35 ++++++ lib/ssh/vsn.mk | 2 +- lib/ssl/doc/src/notes.xml | 64 +++++++++- lib/stdlib/doc/src/notes.xml | 80 +++++++++++++ lib/test_server/doc/src/notes.xml | 56 +++++++++ lib/test_server/vsn.mk | 2 +- lib/tools/doc/src/notes.xml | 31 +++++ lib/tools/vsn.mk | 2 +- lib/wx/vsn.mk | 2 +- lib/xmerl/doc/src/notes.xml | 16 +++ lib/xmerl/vsn.mk | 2 +- 62 files changed, 1323 insertions(+), 37 deletions(-) diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml index 822aceff08..77ffeefd04 100644 --- a/erts/doc/src/notes.xml +++ b/erts/doc/src/notes.xml @@ -30,6 +30,232 @@

This document describes the changes made to the ERTS application.

+
Erts 5.10.3 + +
Fixed Bugs and Malfunctions + + +

The documentation of predefined types and built-in + types has been corrected.

+

+ Own Id: OTP-11090

+
+ +

+ Fix changing terminal parameters in to_erl

+

+ Change the behaviour of to_erl to use TCSADRAIN instead + of TCSANOW when changing terminal parameters. This makes + the serial driver wait for the output queues to be empty + before applying the terminal parameter change. Thanks to + Stefan Zegenhagen.

+

+ Own Id: OTP-11206

+
+ +

+ The default value of {flush, boolean()} in erlang:halt/2 + is documented to be 'true' if the status is an integer. + The implementation behaviour was reversed. The + Implementation is now corrected to adhere to the + documentation. Thanks to Jose Valim for reporting the + error.

+

+ *** POTENTIAL INCOMPATIBILITY ***

+

+ Own Id: OTP-11218

+
+ +

+ Fix serious race bug in R16B01 that could cause PID + mix-ups when a lot of processes were spawned and + terminated in a very rapid pace on an SMP emulator with + at least two scheduler threads.

+

+ Own Id: OTP-11225

+
+ +

+ Validating a trace pattern with the option silent no + longer incorrectly enables/disables the silent option of + the calling process.

+

+ Own Id: OTP-11232

+
+ +

+ Fixed a bug where GCC 4.8 and later use a more aggressive + loop optimization algorithm that broke some previously + working code in the efile driver. Thanks to Tomas + Abrahamsson for reporting this issue.

+

+ Own Id: OTP-11246

+
+ +

+ Fixed bug when printing memory allocator acul option in + crash dump.

+

+ Own Id: OTP-11264

+
+ +

+ Opening a new compressed file on Windows could in rare + (random) cases result in {error,eisdir} or other error + codes although it should have succeeded. This is now + corrected.

+

+ Own Id: OTP-11265

+
+ +

+ Fixed a race condition when closing a trace port that + would cause the emulator to crash.

+

+ Own Id: OTP-11290

+
+
+
+ + +
Improvements and New Features + + +

+ There is a new somewhat experimental socket option + 'netns' that can set the network namespace for a socket + on Linux:es where it is supported. See the documentation.

+

+ Own Id: OTP-11157

+
+ +

+ New allocator strategy aoffcbf (address order + first fit carrier best fit). Supports carrier migration + but with better CPU performance than aoffcaobf.

+

+ Own Id: OTP-11174

+
+ +

+ Introduced functionality for inspection of system and + build configuration.

+

+ Own Id: OTP-11196

+
+ +

+ Fix matching of floating point middle-endian machines. + Thanks to Johannes Weissl.

+

+ Own Id: OTP-11201

+
+ +

+ Fix compile error on ARM and GCC versions greater than + 4.1.0. Thanks to Johannes Weissl.

+

+ Own Id: OTP-11214

+
+ +

+ run_erl: Redirect standard streams to /dev/null. Thanks + to Johannes Weissl.

+

+ Own Id: OTP-11215

+
+ +

+ Misc. corrections in documentation for erl_driver. Thanks + to Giacomo Olgeni.

+

+ Own Id: OTP-11227

+
+ +

+ Fix documentation regarding binary_part.

+

+ Own Id: OTP-11239

+
+ +

+ Make edlin understand a few important control keys. + Thanks to Stefan Zegenhagen.

+

+ Own Id: OTP-11251

+
+ +

+ Export type zlib:zstream/0. Thanks to Loic Hoguin.

+

+ Own Id: OTP-11278

+
+ +

+ Add erl option to set schedulers by percentages.

+

+ For applications where measurements show enhanced + performance from the use of a non-default number of + emulator scheduler threads, having to accurately set the + right number of scheduler threads across multiple hosts + each with different numbers of logical processors is + difficult because the erl +S option requires absolute + numbers of scheduler threads and scheduler threads online + to be specified.

+

+ To address this issue, add a +SP option to erl, similar + to the existing +S option but allowing the number of + scheduler threads and scheduler threads online to be set + as percentages of logical processors configured and + logical processors available, respectively. For example, + "+SP 50:25" sets the number of scheduler threads to 50% + of the logical processors configured, and the number of + scheduler threads online to 25% of the logical processors + available. The +SP option also interacts with any + settings specified with the +S option, such that the + combination of options "+S 4:4 +SP 50:50" (in either + order) results in 2 scheduler threads and 2 scheduler + threads online.

+

+ Thanks to Steve Vinoski

+

+ Own Id: OTP-11282

+
+ +

+ Extend erl_driver interface with lock names

+

+ Lock and thread names are already a feature in the driver + interface. This extension will let developers read these + names which eases debugging.

+

+ Own Id: OTP-11303

+
+ +

+ Fix incorrect values returned by integer_to_binary/2. + Thanks to Juan Jose Comellas.

+

+ Own Id: OTP-11311

+
+ +

+ Fix system_flag scheduling_statistics - disable . Thanks + to Steve Vinoski.

+

+ Own Id: OTP-11317

+
+ +

The documentation of predefined types has been + corrected Thanks to Kostis Sagonas.

+

+ Own Id: OTP-11321

+
+
+
+ +
+
Erts 5.10.2
Fixed Bugs and Malfunctions diff --git a/lib/asn1/doc/src/notes.xml b/lib/asn1/doc/src/notes.xml index 4b5bba742c..e4d9edd709 100644 --- a/lib/asn1/doc/src/notes.xml +++ b/lib/asn1/doc/src/notes.xml @@ -31,6 +31,44 @@

This document describes the changes made to the asn1 application.

+
Asn1 2.0.3 + +
Fixed Bugs and Malfunctions + + +

+ Open types greater than 16383 bytes will now be correctly + encoded and decoded.

+

+ Own Id: OTP-11262 Aux Id: seq12386, OTP-11223

+
+
+
+ + +
Improvements and New Features + + +

For the PER and UPER formats, code generation + especially for encoding has been improved.

+

When encoding BIT STRINGs, values longer than the + maximum size for the BIT STRING type would be truncated + silently - they now cause an exception.

+

Open types greater than 16383 bytes will now be + correctly encoded and decoded.

+

IMPORTANT NOTE: For ASN.1 specifications that depend + on each other, such as the S1AP-* specifications, it is + important to recompile all specifications (compiling some + with this version of the compiler and some with an older + version will not work).

+

+ Own Id: OTP-11300

+
+
+
+ +
+
Asn1 2.0.2
Fixed Bugs and Malfunctions diff --git a/lib/asn1/vsn.mk b/lib/asn1/vsn.mk index b75de179dc..0861fc2681 100644 --- a/lib/asn1/vsn.mk +++ b/lib/asn1/vsn.mk @@ -1,2 +1,2 @@ #next version number to use is 2.0 -ASN1_VSN = 2.0.2 +ASN1_VSN = 2.0.3 diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml index 2d6bcc0d8b..fce5401f13 100644 --- a/lib/common_test/doc/src/notes.xml +++ b/lib/common_test/doc/src/notes.xml @@ -32,6 +32,99 @@ notes.xml +
Common_Test 1.7.3 + +
Fixed Bugs and Malfunctions + + +

+ Documentation is added for ct_netconfc:send and + ct_netconfc:send_rpc.

+

+ Own Id: OTP-11132

+
+ +

+ ct_netconfc:create_subscription only allowed one XML + element inside the 'filter' element. According to RFC5277 + it should be allowed to add any number of elements inside + the filter, so this is now corrected.

+

+ Own Id: OTP-11166

+
+ +

+ The error handler installed by the Common Test hook + cth_log_redirect did not respond to init:stop/1/2. This + has been corrected.

+

+ Own Id: OTP-11175 Aux Id: seq12356

+
+ +

+ Calling ct:pal/2 or ct:print/2 when Common Test was not + running, would cause an exit. This has been changed and + the string is now simply printed to stdout instead.

+

+ Own Id: OTP-11176

+
+ +

+ Fixed problem with the cth_log_redirect hook making calls + to an undefined function in ct_logs.

+

+ Own Id: OTP-11238

+
+ +

+ When running tests with the 'repeat' option, the Common + Test utility process did not always terminate quickly + enough after a test run, causing the start of the next + run to fail. A monitor is now used to ensure termination + of the utility process after each test run.

+

+ Own Id: OTP-11244 Aux Id: seq12396

+
+ +

+ Test Server installed an error handler (test_server_h) + only to be able to write the name of the current test + case to stdout whenever it received an error- or progress + report. This functionality was not useful and has been + removed. The built-in Common Test hook, cth_log_redirect, + has instead been improved to now also tag all error- and + progress reports in the log with suite-, group-, and/or + test case name.

+

+ Own Id: OTP-11263 Aux Id: seq12251

+
+
+
+ + +
Improvements and New Features + + +

+ A new log, the "Pre- and Post Test I/O Log", has been + introduced, which makes it possible to capture error- and + progress reports, as well as printouts made with ct:log/2 + and ct:pal/2, before and after a test run. (Some minor + improvements of the logging system have been made at the + same time). Links to the new log are found on the Common + Test Framework Log page. The Common Test User's Guide has + been updated with information about the new log and also + with a new section on how to synchronize external + applications with Common Test by means of the CT Hook + init and terminate functions.

+

+ Own Id: OTP-11272

+
+
+
+ +
+
Common_Test 1.7.2
Fixed Bugs and Malfunctions diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk index d60b4ba675..c810a0d98d 100644 --- a/lib/common_test/vsn.mk +++ b/lib/common_test/vsn.mk @@ -1 +1 @@ -COMMON_TEST_VSN = 1.7.2 +COMMON_TEST_VSN = 1.7.3 diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml index 837fcf4368..eb5fa8b398 100644 --- a/lib/compiler/doc/src/notes.xml +++ b/lib/compiler/doc/src/notes.xml @@ -31,6 +31,67 @@

This document describes the changes made to the Compiler application.

+
Compiler 4.9.3 + +
Fixed Bugs and Malfunctions + + +

+ Expressions such as 'B = is_integer(V), if B and B + -> ok end' would crash the compiler.

+

+ Own Id: OTP-11240

+
+ +

+ compile:file2/2 with the option + report_errors could return ErrorInfo tuples with + only two elements, while the documentation says that the + ErrorInfo tuple always has three elements. Also updated + the documentation to add that the first element may be + 'none' if no line number is applicable.

+

+ Own Id: OTP-11304 Aux Id: seq12412

+
+
+
+ + +
Improvements and New Features + + +

+ Fix matching of floating point middle-endian machines. + Thanks to Johannes Weissl.

+

+ Own Id: OTP-11201

+
+ +

+ Restrict inlining of local fun references. Thanks to + Anthony Ramine.

+

+ Own Id: OTP-11211

+
+ +

+ Silence a misleading warning with some comprehensions. + Thanks to Anthony Ramine.

+

+ Own Id: OTP-11212

+
+ +

+ Forbid returning a match context in beam_validator. + Thanks to Anthony Ramine.

+

+ Own Id: OTP-11247

+
+
+
+ +
+
Compiler 4.9.2
Fixed Bugs and Malfunctions diff --git a/lib/compiler/vsn.mk b/lib/compiler/vsn.mk index 1c6f49d89b..8cfd8d294e 100644 --- a/lib/compiler/vsn.mk +++ b/lib/compiler/vsn.mk @@ -1 +1 @@ -COMPILER_VSN = 4.9.2 +COMPILER_VSN = 4.9.3 diff --git a/lib/crypto/doc/src/notes.xml b/lib/crypto/doc/src/notes.xml index 09ecc97ef7..97558ef0e7 100644 --- a/lib/crypto/doc/src/notes.xml +++ b/lib/crypto/doc/src/notes.xml @@ -30,6 +30,22 @@

This document describes the changes made to the Crypto application.

+
Crypto 3.1 + +
Improvements and New Features + + +

+ Refactor ecdsa cipher to simplify code and improve + performance.

+

+ Own Id: OTP-11320

+
+
+
+ +
+
Crypto 3.0
Improvements and New Features diff --git a/lib/crypto/vsn.mk b/lib/crypto/vsn.mk index d5d7c8a128..3bd2f9b4bf 100644 --- a/lib/crypto/vsn.mk +++ b/lib/crypto/vsn.mk @@ -1 +1 @@ -CRYPTO_VSN = 3.0 +CRYPTO_VSN = 3.1 diff --git a/lib/debugger/doc/src/notes.xml b/lib/debugger/doc/src/notes.xml index 5f1d411db2..a3543a1e11 100644 --- a/lib/debugger/doc/src/notes.xml +++ b/lib/debugger/doc/src/notes.xml @@ -32,6 +32,22 @@

This document describes the changes made to the Debugger application.

+
Debugger 3.2.12 + +
Improvements and New Features + + +

+ Fix matching of floating point middle-endian machines. + Thanks to Johannes Weissl.

+

+ Own Id: OTP-11201

+
+
+
+ +
+
Debugger 3.2.11
Improvements and New Features diff --git a/lib/debugger/vsn.mk b/lib/debugger/vsn.mk index c3e3579e2c..a245e26a55 100644 --- a/lib/debugger/vsn.mk +++ b/lib/debugger/vsn.mk @@ -1 +1 @@ -DEBUGGER_VSN = 3.2.11 +DEBUGGER_VSN = 3.2.12 diff --git a/lib/diameter/doc/src/notes.xml b/lib/diameter/doc/src/notes.xml index e750b56f1e..32082e565d 100644 --- a/lib/diameter/doc/src/notes.xml +++ b/lib/diameter/doc/src/notes.xml @@ -42,6 +42,52 @@ first.

+
diameter 1.4.3 + +
Fixed Bugs and Malfunctions + + +

+ Fix UTF8String encode.

+

+ Encode now accepts any nested list of codepoints and + binaries. A list containing a binary was previously + misinterpreted and the documentation was incomplete.

+

+ Own Id: OTP-11172

+
+ +

+ Ensure DWR isn't sent immediately after DWA.

+

+ This was possible if the timing was unfortunate. An + incoming DWR now properly resets the watchdog timer.

+

+ Own Id: OTP-11184

+
+ +

+ Fix faulty encode of Failed-AVP

+

+ Reception of a CER, DWR or DPR that has decode failures + caused encode of the corresponding answer message to + fail.

+

+ Own Id: OTP-11293

+
+ +

+ Fix broken service_opt() spawn_opt.

+

+ The option was ignored.

+

+ Own Id: OTP-11299

+
+
+
+ +
+
diameter 1.4.2
Fixed Bugs and Malfunctions diff --git a/lib/edoc/doc/src/notes.xml b/lib/edoc/doc/src/notes.xml index d2ec82efc8..394e7af09c 100644 --- a/lib/edoc/doc/src/notes.xml +++ b/lib/edoc/doc/src/notes.xml @@ -31,6 +31,23 @@

This document describes the changes made to the EDoc application.

+
Edoc 0.7.12.1 + +
Improvements and New Features + + +

+ The encoding of the notes.xml file has been + changed from latin1 to utf-8 to avoid future merge + problems.

+

+ Own Id: OTP-11310

+
+
+
+ +
+
Edoc 0.7.12
Fixed Bugs and Malfunctions diff --git a/lib/edoc/vsn.mk b/lib/edoc/vsn.mk index af2aa2203f..2fcc97e406 100644 --- a/lib/edoc/vsn.mk +++ b/lib/edoc/vsn.mk @@ -1 +1 @@ -EDOC_VSN = 0.7.12 +EDOC_VSN = 0.7.12.1 diff --git a/lib/erl_docgen/doc/src/notes.xml b/lib/erl_docgen/doc/src/notes.xml index 2ae5f93165..24d12b2bb7 100644 --- a/lib/erl_docgen/doc/src/notes.xml +++ b/lib/erl_docgen/doc/src/notes.xml @@ -30,7 +30,24 @@

This document describes the changes made to the erl_docgen application.

-
Erl_Docgen 0.3.4 +
Erl_Docgen 0.3.4.1 + +
Improvements and New Features + + +

+ The encoding of the notes.xml file has been + changed from latin1 to utf-8 to avoid future merge + problems.

+

+ Own Id: OTP-11310

+
+
+
+ +
+ +
Erl_Docgen 0.3.4
Fixed Bugs and Malfunctions diff --git a/lib/erl_docgen/vsn.mk b/lib/erl_docgen/vsn.mk index a2262198dc..cda8671cfd 100644 --- a/lib/erl_docgen/vsn.mk +++ b/lib/erl_docgen/vsn.mk @@ -1 +1 @@ -ERL_DOCGEN_VSN = 0.3.4 +ERL_DOCGEN_VSN = 0.3.4.1 diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml index 930b24c26a..f05456bbbd 100644 --- a/lib/erl_interface/doc/src/notes.xml +++ b/lib/erl_interface/doc/src/notes.xml @@ -30,6 +30,38 @@

This document describes the changes made to the Erl_interface application.

+
Erl_Interface 3.7.14 + +
Improvements and New Features + + +

+ Introduced functionality for inspection of system and + build configuration.

+

+ Own Id: OTP-11196

+
+ +

+ Header and library files from ic and erl_interface are + now installed into usr/{include,lib}. Note that these + directories are unversioned, so the latest installed + version will be the one in the directory.

+

+ Own Id: OTP-11284

+
+ +

+ Fix location of true binary under Mac OSX. Thanks to + Simon Cornish.

+

+ Own Id: OTP-11289

+
+
+
+ +
+
Erl_Interface 3.7.13
Improvements and New Features diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk index 6f08d380ca..5cde054a49 100644 --- a/lib/erl_interface/vsn.mk +++ b/lib/erl_interface/vsn.mk @@ -1 +1 @@ -EI_VSN = 3.7.13 +EI_VSN = 3.7.14 diff --git a/lib/et/doc/src/notes.xml b/lib/et/doc/src/notes.xml index a34dd4a541..815dfada5e 100644 --- a/lib/et/doc/src/notes.xml +++ b/lib/et/doc/src/notes.xml @@ -36,6 +36,23 @@ one section in this document. The title of each section is the version number of Event Tracer (ET).

+
ET 1.4.4.5 + +
Improvements and New Features + + +

+ The encoding of the notes.xml file has been + changed from latin1 to utf-8 to avoid future merge + problems.

+

+ Own Id: OTP-11310

+
+
+
+ +
+
ET 1.4.4.4
Improvements and New Features diff --git a/lib/et/vsn.mk b/lib/et/vsn.mk index 40cdc2b298..282991aa49 100644 --- a/lib/et/vsn.mk +++ b/lib/et/vsn.mk @@ -1 +1 @@ -ET_VSN = 1.4.4.4 +ET_VSN = 1.4.4.5 diff --git a/lib/eunit/doc/src/notes.xml b/lib/eunit/doc/src/notes.xml index fd51b05f79..1fa5993ac6 100644 --- a/lib/eunit/doc/src/notes.xml +++ b/lib/eunit/doc/src/notes.xml @@ -32,6 +32,22 @@

This document describes the changes made to the EUnit application.

+
Eunit 2.2.5 + +
Improvements and New Features + + +

+ Wrap eunit macros into begin ... end blocks. Thanks to + Anthony Ramine.

+

+ Own Id: OTP-11217

+
+
+
+ +
+
Eunit 2.2.4
Improvements and New Features diff --git a/lib/eunit/vsn.mk b/lib/eunit/vsn.mk index 798196f8cf..be06c81559 100644 --- a/lib/eunit/vsn.mk +++ b/lib/eunit/vsn.mk @@ -1 +1 @@ -EUNIT_VSN = 2.2.4 +EUNIT_VSN = 2.2.5 diff --git a/lib/hipe/doc/src/notes.xml b/lib/hipe/doc/src/notes.xml index 86e10a06fc..2f8f1782cc 100644 --- a/lib/hipe/doc/src/notes.xml +++ b/lib/hipe/doc/src/notes.xml @@ -30,6 +30,23 @@

This document describes the changes made to HiPE.

+
Hipe 3.10.2.1 + +
Improvements and New Features + + +

+ The encoding of the notes.xml file has been + changed from latin1 to utf-8 to avoid future merge + problems.

+

+ Own Id: OTP-11310

+
+
+
+ +
+
Hipe 3.10.2
Improvements and New Features diff --git a/lib/hipe/vsn.mk b/lib/hipe/vsn.mk index deb16b02fd..d9ed0b299f 100644 --- a/lib/hipe/vsn.mk +++ b/lib/hipe/vsn.mk @@ -1 +1 @@ -HIPE_VSN = 3.10.2 +HIPE_VSN = 3.10.2.1 diff --git a/lib/ic/doc/src/notes.xml b/lib/ic/doc/src/notes.xml index c93528ace4..6ba558f942 100644 --- a/lib/ic/doc/src/notes.xml +++ b/lib/ic/doc/src/notes.xml @@ -30,7 +30,25 @@ notes.xml -
IC 4.3.2 +
IC 4.3.3 + +
Improvements and New Features + + +

+ Header and library files from ic and erl_interface are + now installed into usr/{include,lib}. Note that these + directories are unversioned, so the latest installed + version will be the one in the directory.

+

+ Own Id: OTP-11284

+
+
+
+ +
+ +
IC 4.3.2
Fixed Bugs and Malfunctions diff --git a/lib/ic/vsn.mk b/lib/ic/vsn.mk index 53b81ad731..d1969ef3d8 100644 --- a/lib/ic/vsn.mk +++ b/lib/ic/vsn.mk @@ -1 +1 @@ -IC_VSN = 4.3.2 +IC_VSN = 4.3.3 diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml index 42183b8cc5..4e0dc8bd37 100644 --- a/lib/inets/doc/src/notes.xml +++ b/lib/inets/doc/src/notes.xml @@ -32,7 +32,51 @@ notes.xml -
Inets 5.9.5 +
Inets 5.9.6 + +
Improvements and New Features + + +

+ httpc: Allow content body in DELETE requests. Thanks to + James Wheare.

+

+ Own Id: OTP-11190

+
+ +

+ Add missing brackets to report formatting on ftp_progress + process exit. Thanks to Artur Wilniewczyc.

+

+ Own Id: OTP-11202

+
+ +

+ Fix some errors in the inets documentation. Thanks to + Johannes Weissl.

+

+ Own Id: OTP-11210

+
+ +

+ Fix various typos in httpd, inets. Thanks to Tomohiko + Aono.

+

+ Own Id: OTP-11226

+
+ +

+ Fix httpd config option 'erl_script_nocache'. Thanks to + Johannes Weissl.

+

+ Own Id: OTP-11260

+
+
+
+ +
+ +
Inets 5.9.5
Fixed Bugs and Malfunctions diff --git a/lib/inets/vsn.mk b/lib/inets/vsn.mk index 3f464c8684..36463d9388 100644 --- a/lib/inets/vsn.mk +++ b/lib/inets/vsn.mk @@ -18,7 +18,7 @@ # %CopyrightEnd% APPLICATION = inets -INETS_VSN = 5.9.5 +INETS_VSN = 5.9.6 PRE_VSN = APP_VSN = "$(APPLICATION)-$(INETS_VSN)$(PRE_VSN)" diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml index 6b703b7c2b..6cdc3a9d17 100644 --- a/lib/kernel/doc/src/notes.xml +++ b/lib/kernel/doc/src/notes.xml @@ -30,6 +30,66 @@

This document describes the changes made to the Kernel application.

+
Kernel 2.16.3 + +
Fixed Bugs and Malfunctions + + +

+ Fix indentation of User switch command help in Erlang + shell. Thanks to Sylvain Benner.

+

+ Own Id: OTP-11209

+
+
+
+ + +
Improvements and New Features + + +

+ The previous undocumented function ntoa/1 has been added + to inet docs and exported in the inet module.

+

+ Own Id: OTP-10676 Aux Id: OTP-10314

+
+ +

+ Fix typo in abcast() function comment. Thanks to Johannes + Weissl.

+

+ Own Id: OTP-11219

+
+ +

+ Add application:ensure_all_started/1-2. Thanks to Fred + Hebert.

+

+ Own Id: OTP-11250

+
+ +

+ Make edlin understand a few important control keys. + Thanks to Stefan Zegenhagen.

+

+ Own Id: OTP-11251

+
+ +

+ Cleanup of hipe_unified_loader, eliminating uses of + is_subtype/2 in specs, change module-local void functions + to return 'ok' instead of [] and made sure there are no + dialyzer warnings with --Wunmatched_returns. Thanks to + Kostis Sagonas.

+

+ Own Id: OTP-11301

+
+
+
+ +
+
Kernel 2.16.2
Fixed Bugs and Malfunctions diff --git a/lib/megaco/doc/src/notes.xml b/lib/megaco/doc/src/notes.xml index 25edf8bb7d..a7bf48cdd1 100644 --- a/lib/megaco/doc/src/notes.xml +++ b/lib/megaco/doc/src/notes.xml @@ -36,7 +36,23 @@ section is the version number of Megaco.

-
Megaco 3.17.0.1 +
Megaco 3.17.0.2 + +
Improvements and New Features + + +

+ Introduced functionality for inspection of system and + build configuration.

+

+ Own Id: OTP-11196

+
+
+
+ +
+ +
Megaco 3.17.0.1
Improvements and New Features diff --git a/lib/megaco/vsn.mk b/lib/megaco/vsn.mk index db956102a6..ea4e9f2eb8 100644 --- a/lib/megaco/vsn.mk +++ b/lib/megaco/vsn.mk @@ -18,6 +18,6 @@ # %CopyrightEnd% APPLICATION = megaco -MEGACO_VSN = 3.17.0.1 +MEGACO_VSN = 3.17.0.2 PRE_VSN = APP_VSN = "$(APPLICATION)-$(MEGACO_VSN)$(PRE_VSN)" diff --git a/lib/mnesia/doc/src/notes.xml b/lib/mnesia/doc/src/notes.xml index 99a26dd281..da66a647f5 100644 --- a/lib/mnesia/doc/src/notes.xml +++ b/lib/mnesia/doc/src/notes.xml @@ -38,7 +38,36 @@ thus constitutes one section in this document. The title of each section is the version number of Mnesia.

-
Mnesia 4.9 +
Mnesia 4.10 + +
Fixed Bugs and Malfunctions + + +

+ Fix timing issues in checkpoint creation.

+

+ Own Id: OTP-10957

+
+
+
+ + +
Improvements and New Features + + +

+ Fixed a problem where the fallback BUP file is removed + when calling mnesia:uninstall_fallback and mnesia is not + started.

+

+ Own Id: OTP-11241

+
+
+
+ +
+ +
Mnesia 4.9
Fixed Bugs and Malfunctions diff --git a/lib/mnesia/vsn.mk b/lib/mnesia/vsn.mk index d7a132bc1a..c8187013be 100644 --- a/lib/mnesia/vsn.mk +++ b/lib/mnesia/vsn.mk @@ -1 +1 @@ -MNESIA_VSN = 4.9 +MNESIA_VSN = 4.10 diff --git a/lib/observer/doc/src/notes.xml b/lib/observer/doc/src/notes.xml index 998a4e4f9f..8a7a5cc41b 100644 --- a/lib/observer/doc/src/notes.xml +++ b/lib/observer/doc/src/notes.xml @@ -31,6 +31,23 @@

This document describes the changes made to the Observer application.

+
Observer 1.3.1.1 + +
Improvements and New Features + + +

+ The encoding of the notes.xml file has been + changed from latin1 to utf-8 to avoid future merge + problems.

+

+ Own Id: OTP-11310

+
+
+
+ +
+
Observer 1.3.1
Fixed Bugs and Malfunctions diff --git a/lib/observer/vsn.mk b/lib/observer/vsn.mk index 96d9d885da..e933f7480c 100644 --- a/lib/observer/vsn.mk +++ b/lib/observer/vsn.mk @@ -1 +1 @@ -OBSERVER_VSN = 1.3.1 +OBSERVER_VSN = 1.3.1.1 diff --git a/lib/odbc/doc/src/notes.xml b/lib/odbc/doc/src/notes.xml index a1c6f999e0..13dff1489f 100644 --- a/lib/odbc/doc/src/notes.xml +++ b/lib/odbc/doc/src/notes.xml @@ -31,7 +31,44 @@

This document describes the changes made to the odbc application.

-
ODBC 2.10.16 +
ODBC 2.10.17 + +
Fixed Bugs and Malfunctions + + +

+ The format of the xml source for documentation is + corrected in order to conform to the DTDs and to pass + xmllint without errors.

+

+ Own Id: OTP-11193

+
+
+
+ + +
Improvements and New Features + + +

+ Introduced functionality for inspection of system and + build configuration.

+

+ Own Id: OTP-11196

+
+ +

+ Prevent odbcserver crash if it's executed and supplied + incorrect data to stdin. Thanks to Sergei Golovan.

+

+ Own Id: OTP-11233

+
+
+
+ +
+ +
ODBC 2.10.16
Improvements and New Features diff --git a/lib/odbc/vsn.mk b/lib/odbc/vsn.mk index 98a9f4ab4a..34c3eff933 100644 --- a/lib/odbc/vsn.mk +++ b/lib/odbc/vsn.mk @@ -1 +1 @@ -ODBC_VSN = 2.10.16 +ODBC_VSN = 2.10.17 diff --git a/lib/os_mon/doc/src/notes.xml b/lib/os_mon/doc/src/notes.xml index 2206f93d34..6d520c7acb 100644 --- a/lib/os_mon/doc/src/notes.xml +++ b/lib/os_mon/doc/src/notes.xml @@ -30,6 +30,43 @@

This document describes the changes made to the OS_Mon application.

+
Os_Mon 2.2.13 + +
Fixed Bugs and Malfunctions + + +

+ Use 'df -k -l' to query FreeBSD and OpenBSD about + diskspace on local disks. Previously 'df' -k -t ufs' was + used but this will not handle zfs or other disks. Just + use '-l' instead of listing potential filesystems.

+

+ Own Id: OTP-11207

+
+
+
+ + +
Improvements and New Features + + +

+ Fix compilation on Solaris. Thanks to Maciej Malecki.

+

+ Own Id: OTP-11213

+
+ +

+ Fix broken cpu_sup:nprocs and others on Solaris 64-bit. + Thanks to Simon Cornish.

+

+ Own Id: OTP-11298

+
+
+
+ +
+
Os_Mon 2.2.12
Fixed Bugs and Malfunctions diff --git a/lib/os_mon/vsn.mk b/lib/os_mon/vsn.mk index e3acea0258..0af587b9ae 100644 --- a/lib/os_mon/vsn.mk +++ b/lib/os_mon/vsn.mk @@ -1 +1 @@ -OS_MON_VSN = 2.2.12 +OS_MON_VSN = 2.2.13 diff --git a/lib/parsetools/doc/src/notes.xml b/lib/parsetools/doc/src/notes.xml index a0816dc728..9c0f790916 100644 --- a/lib/parsetools/doc/src/notes.xml +++ b/lib/parsetools/doc/src/notes.xml @@ -30,6 +30,41 @@

This document describes the changes made to the Parsetools application.

+
Parsetools 2.0.10 + +
Fixed Bugs and Malfunctions + + +

A bug causing Yecc to generate badly formed parsers + when encountering very simple recursive rules has been + fixed. (Thanks to Eric Pailleau.)

+

+ Own Id: OTP-11269

+
+ +

A bug where Unicode filenames combined with Latin-1 + encoding could crash Yecc and Leex has been fixed.

+

+ Own Id: OTP-11286

+
+
+
+ + +
Improvements and New Features + + +

+ Fix leex module`s inability to build unicode-aware + lexers. Thanks to Pierre Fenoll.

+

+ Own Id: OTP-11313

+
+
+
+ +
+
Parsetools 2.0.9
Improvements and New Features diff --git a/lib/parsetools/vsn.mk b/lib/parsetools/vsn.mk index 444caf44a1..d62962c54a 100644 --- a/lib/parsetools/vsn.mk +++ b/lib/parsetools/vsn.mk @@ -1 +1 @@ -PARSETOOLS_VSN = 2.0.9 +PARSETOOLS_VSN = 2.0.10 diff --git a/lib/percept/doc/src/notes.xml b/lib/percept/doc/src/notes.xml index 391f4d6d47..3cead186c4 100644 --- a/lib/percept/doc/src/notes.xml +++ b/lib/percept/doc/src/notes.xml @@ -32,6 +32,23 @@

This document describes the changes made to the Percept application.

+
Percept 0.8.8.2 + +
Improvements and New Features + + +

+ The encoding of the notes.xml file has been + changed from latin1 to utf-8 to avoid future merge + problems.

+

+ Own Id: OTP-11310

+
+
+
+ +
+
Percept 0.8.8.1
Improvements and New Features diff --git a/lib/percept/vsn.mk b/lib/percept/vsn.mk index 2ea0341ddf..99729c11e2 100644 --- a/lib/percept/vsn.mk +++ b/lib/percept/vsn.mk @@ -1 +1 @@ -PERCEPT_VSN = 0.8.8.1 +PERCEPT_VSN = 0.8.8.2 diff --git a/lib/public_key/doc/src/notes.xml b/lib/public_key/doc/src/notes.xml index 47b3e60afd..595b2a89d7 100644 --- a/lib/public_key/doc/src/notes.xml +++ b/lib/public_key/doc/src/notes.xml @@ -34,6 +34,29 @@ notes.xml +
Public_Key 0.20 + +
Improvements and New Features + + +

+ Extend PKCS-7 to support SCEP (Simple Certificate + Enrollment Protocol).

+

+ Own Id: OTP-10874

+
+ +

+ public_key:pem_entry_decode/2 now handles AES-128-CBC + ciphered keys. Thanks to Simon Cornish.

+

+ Own Id: OTP-11281

+
+
+
+ +
+
Public_Key 0.19
Improvements and New Features diff --git a/lib/public_key/vsn.mk b/lib/public_key/vsn.mk index b820f24d2a..72247f14d8 100644 --- a/lib/public_key/vsn.mk +++ b/lib/public_key/vsn.mk @@ -1 +1 @@ -PUBLIC_KEY_VSN = 0.19 +PUBLIC_KEY_VSN = 0.20 diff --git a/lib/reltool/doc/src/notes.xml b/lib/reltool/doc/src/notes.xml index 1728515cb4..df81418677 100644 --- a/lib/reltool/doc/src/notes.xml +++ b/lib/reltool/doc/src/notes.xml @@ -37,7 +37,24 @@ thus constitutes one section in this document. The title of each section is the version number of Reltool.

-
Reltool 0.6.4 +
Reltool 0.6.4.1 + +
Improvements and New Features + + +

+ The encoding of the notes.xml file has been + changed from latin1 to utf-8 to avoid future merge + problems.

+

+ Own Id: OTP-11310

+
+
+
+ +
+ +
Reltool 0.6.4
Fixed Bugs and Malfunctions diff --git a/lib/reltool/vsn.mk b/lib/reltool/vsn.mk index 412e78f49f..16ec570d22 100644 --- a/lib/reltool/vsn.mk +++ b/lib/reltool/vsn.mk @@ -1 +1 @@ -RELTOOL_VSN = 0.6.4 +RELTOOL_VSN = 0.6.4.1 diff --git a/lib/runtime_tools/doc/src/notes.xml b/lib/runtime_tools/doc/src/notes.xml index db35eba436..b334bdcac2 100644 --- a/lib/runtime_tools/doc/src/notes.xml +++ b/lib/runtime_tools/doc/src/notes.xml @@ -31,6 +31,35 @@

This document describes the changes made to the Runtime_Tools application.

+
Runtime_Tools 1.8.12 + +
Fixed Bugs and Malfunctions + + +

+ The process trace flag 'silent' is now allowed in call to + dbg:p/2.

+

+ Own Id: OTP-11222

+
+
+
+ + +
Improvements and New Features + + +

+ Introduced functionality for inspection of system and + build configuration.

+

+ Own Id: OTP-11196

+
+
+
+ +
+
Runtime_Tools 1.8.11
Fixed Bugs and Malfunctions diff --git a/lib/runtime_tools/vsn.mk b/lib/runtime_tools/vsn.mk index 5faae06b53..9ee1aba29c 100644 --- a/lib/runtime_tools/vsn.mk +++ b/lib/runtime_tools/vsn.mk @@ -1 +1 @@ -RUNTIME_TOOLS_VSN = 1.8.11 +RUNTIME_TOOLS_VSN = 1.8.12 diff --git a/lib/sasl/doc/src/notes.xml b/lib/sasl/doc/src/notes.xml index a3260a5b93..b114f1f492 100644 --- a/lib/sasl/doc/src/notes.xml +++ b/lib/sasl/doc/src/notes.xml @@ -30,6 +30,21 @@

This document describes the changes made to the SASL application.

+
SASL 2.3.3 + +
Improvements and New Features + + +

+ Add Fd usage in rb logging. Thanks to Eric Pailleau.

+

+ Own Id: OTP-11252

+
+
+
+ +
+
SASL 2.3.2
Fixed Bugs and Malfunctions diff --git a/lib/sasl/vsn.mk b/lib/sasl/vsn.mk index 551c833446..f90ab51a47 100644 --- a/lib/sasl/vsn.mk +++ b/lib/sasl/vsn.mk @@ -1 +1 @@ -SASL_VSN = 2.3.2 +SASL_VSN = 2.3.3 diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml index 6b7ff7b238..041f5e54af 100644 --- a/lib/ssh/doc/src/notes.xml +++ b/lib/ssh/doc/src/notes.xml @@ -29,6 +29,41 @@ notes.xml +
Ssh 2.1.8 + +
Improvements and New Features + + +

+ Do not chmod ~/.ssh unnecessarily.

+

+ Own Id: OTP-11189

+
+ +

+ Make ssh_cli.erl handle CTRL+C. Thanks to Stefan + Zegenhagen.

+

+ Own Id: OTP-11199

+
+ +

+ Clarified timeout options in documentation.

+

+ Own Id: OTP-11249

+
+ +

+ Add openssh_zlib compression type to ssh_transport. + Thanks to Louis-Philippe Gauthier.

+

+ Own Id: OTP-11256

+
+
+
+ +
+
Ssh 2.1.7
Fixed Bugs and Malfunctions diff --git a/lib/ssh/vsn.mk b/lib/ssh/vsn.mk index 231779b75a..90f09471c9 100644 --- a/lib/ssh/vsn.mk +++ b/lib/ssh/vsn.mk @@ -1,5 +1,5 @@ #-*-makefile-*- ; force emacs to enter makefile-mode -SSH_VSN = 2.1.7 +SSH_VSN = 2.1.8 APP_VSN = "ssh-$(SSH_VSN)" diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml index 301ff21068..9f706d435e 100644 --- a/lib/ssl/doc/src/notes.xml +++ b/lib/ssl/doc/src/notes.xml @@ -25,7 +25,69 @@ notes.xml

This document describes the changes made to the SSL application.

-
SSL 5.3 +
SSL 5.3.1 + +
Fixed Bugs and Malfunctions + + +

+ Setopts during renegotiation caused the renegotiation to + be unsuccessful.

+

+ If calling setopts during a renegotiation the FSM state + might change during the handling of the setopts messages, + this is now handled correctly.

+

+ Own Id: OTP-11228

+
+ +

+ Now handles signature_algorithm field in digitally_signed + properly with proper defaults. Prior to this change some + elliptic curve cipher suites could fail reporting the + error "bad certificate".

+

+ Own Id: OTP-11229

+
+ +

+ The code emulating the inet header option was changed in + the belief that it made it inet compatible. However the + testing is a bit hairy as the inet option is actually + broken, now the tests are corrected and the header option + should work in the same broken way as inet again, + preferably use the bitsyntax instead.

+

+ Own Id: OTP-11230

+
+
+
+ + +
Improvements and New Features + + +

+ Make the ssl manager name for erlang distribution over + SSL/TLS relative to the module name of the ssl_manager.

+

+ This can be beneficial when making tools that rename + modules for internal processing in the tool.

+

+ Own Id: OTP-11255

+
+ +

+ Add documentation regarding log_alert option.

+

+ Own Id: OTP-11271

+
+
+
+ +
+ +
SSL 5.3
Fixed Bugs and Malfunctions diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml index 2c1daf10ba..2f404523dd 100644 --- a/lib/stdlib/doc/src/notes.xml +++ b/lib/stdlib/doc/src/notes.xml @@ -30,6 +30,86 @@

This document describes the changes made to the STDLIB application.

+
STDLIB 1.19.3 + +
Fixed Bugs and Malfunctions + + +

The functions dets:foldl/3, + dets:foldr/3, and dets:traverse/2 did not + release the table after having traversed the table to the + end. The bug was introduced in R16B. (Thanks to Manuel + Duran Aguete.)

+

+ Own Id: OTP-11245

+
+ +

If the fun M:F/A construct was used + erroneously the linter could crash. (Thanks to Mikhail + Sobolev.)

+

+ Own Id: OTP-11254

+
+ +

The specifications of io_lib:fread/2,3 have + been corrected. (Thanks to Chris King and Kostis Sagonas + for pinpointing the bug.)

+

+ Own Id: OTP-11261

+
+
+
+ + +
Improvements and New Features + + +

+ Fixed type typo in gen_server.

+

+ Own Id: OTP-11200

+
+ +

+ Update type specs in filelib and io_prompt. Thanks to + Jose Valim.

+

+ Own Id: OTP-11208

+
+ +

+ Fix typo in abcast() function comment. Thanks to Johannes + Weissl.

+

+ Own Id: OTP-11219

+
+ +

+ Make edlin understand a few important control keys. + Thanks to Stefan Zegenhagen.

+

+ Own Id: OTP-11251

+
+ +

+ Export the edge/0 type from the digraph module. Thanks to + Alex Ronne Petersen.

+

+ Own Id: OTP-11266

+
+ +

+ Fix variable usage tracking in erl_lint and fixed unsafe + variable tracking in try expressions. Thanks to Anthony + Ramine.

+

+ Own Id: OTP-11268

+
+
+
+ +
+
STDLIB 1.19.2
Fixed Bugs and Malfunctions diff --git a/lib/test_server/doc/src/notes.xml b/lib/test_server/doc/src/notes.xml index c6c166c796..c83fc9d82b 100644 --- a/lib/test_server/doc/src/notes.xml +++ b/lib/test_server/doc/src/notes.xml @@ -32,6 +32,62 @@ notes.xml +
Test_Server 3.6.3 + +
Fixed Bugs and Malfunctions + + +

+ Test Server installed an error handler (test_server_h) + only to be able to write the name of the current test + case to stdout whenever it received an error- or progress + report. This functionality was not useful and has been + removed. The built-in Common Test hook, cth_log_redirect, + has instead been improved to now also tag all error- and + progress reports in the log with suite-, group-, and/or + test case name.

+

+ Own Id: OTP-11263 Aux Id: seq12251

+
+
+
+ + +
Improvements and New Features + + +

+ A new log, the "Pre- and Post Test I/O Log", has been + introduced, which makes it possible to capture error- and + progress reports, as well as printouts made with ct:log/2 + and ct:pal/2, before and after a test run. (Some minor + improvements of the logging system have been made at the + same time). Links to the new log are found on the Common + Test Framework Log page. The Common Test User's Guide has + been updated with information about the new log and also + with a new section on how to synchronize external + applications with Common Test by means of the CT Hook + init and terminate functions.

+

+ Own Id: OTP-11272

+
+
+
+ + +
Known Bugs and Problems + + +

+ Test Server: Report auto_skipped in major log.

+

+ Own Id: OTP-11297

+
+
+
+ +
+
Test_Server 3.6.2
Fixed Bugs and Malfunctions diff --git a/lib/test_server/vsn.mk b/lib/test_server/vsn.mk index 1753bbb913..0e37512dc2 100644 --- a/lib/test_server/vsn.mk +++ b/lib/test_server/vsn.mk @@ -1 +1 @@ -TEST_SERVER_VSN = 3.6.2 +TEST_SERVER_VSN = 3.6.3 diff --git a/lib/tools/doc/src/notes.xml b/lib/tools/doc/src/notes.xml index 422d4538a6..d8239460b3 100644 --- a/lib/tools/doc/src/notes.xml +++ b/lib/tools/doc/src/notes.xml @@ -30,6 +30,37 @@

This document describes the changes made to the Tools application.

+
Tools 2.6.12 + +
Improvements and New Features + + +

+ Remove trailing spaces in Emacs templates. Thanks to + Roberto Aloi.

+

+ Own Id: OTP-11198

+
+ +

+ Fixed the Emacs erlang-mode to accommodate the coding + style where lists written across several lines have each + line starting with a comma. Thanks to Magnus Henoch.

+

+ Own Id: OTP-11242

+
+ +

+ Make the Emacs Erlang mode TRAMP-aware when compiling. + Thanks to Tomas Abrahamsson.

+

+ Own Id: OTP-11270

+
+
+
+ +
+
Tools 2.6.11
Fixed Bugs and Malfunctions diff --git a/lib/tools/vsn.mk b/lib/tools/vsn.mk index a30b16fc49..c51b833dd0 100644 --- a/lib/tools/vsn.mk +++ b/lib/tools/vsn.mk @@ -1 +1 @@ -TOOLS_VSN = 2.6.11 +TOOLS_VSN = 2.6.12 diff --git a/lib/wx/vsn.mk b/lib/wx/vsn.mk index 1c406ccec6..869ed99f16 100644 --- a/lib/wx/vsn.mk +++ b/lib/wx/vsn.mk @@ -1 +1 @@ -WX_VSN = 1.0 +WX_VSN = 1.1 diff --git a/lib/xmerl/doc/src/notes.xml b/lib/xmerl/doc/src/notes.xml index 1de854860c..be4b4bcb4f 100644 --- a/lib/xmerl/doc/src/notes.xml +++ b/lib/xmerl/doc/src/notes.xml @@ -31,6 +31,22 @@

This document describes the changes made to the Xmerl application.

+
Xmerl 1.3.4 + +
Improvements and New Features + + +

+ Fixed various typos in xmerl documentation. Thanks to + David Welton.

+

+ Own Id: OTP-11224

+
+
+
+ +
+
Xmerl 1.3.3
Improvements and New Features diff --git a/lib/xmerl/vsn.mk b/lib/xmerl/vsn.mk index de809e8ce0..af372d8248 100644 --- a/lib/xmerl/vsn.mk +++ b/lib/xmerl/vsn.mk @@ -1 +1 @@ -XMERL_VSN = 1.3.3 +XMERL_VSN = 1.3.4 -- cgit v1.2.1