From 7f3486a5ddc02a366f2945dfd009c4a2697a2b98 Mon Sep 17 00:00:00 2001
From: Erlang/OTP
Date: Tue, 9 Dec 2014 15:21:47 +0100
Subject: Prepare release
---
erts/doc/src/notes.xml | 252 ++++++++++++++++++++++++++++++++++++
erts/vsn.mk | 2 +-
lib/asn1/doc/src/notes.xml | 32 +++++
lib/asn1/vsn.mk | 2 +-
lib/common_test/doc/src/notes.xml | 88 +++++++++++++
lib/common_test/vsn.mk | 2 +-
lib/compiler/doc/src/notes.xml | 29 +++++
lib/compiler/vsn.mk | 2 +-
lib/crypto/doc/src/notes.xml | 25 ++++
lib/crypto/vsn.mk | 2 +-
lib/debugger/doc/src/notes.xml | 23 ++++
lib/debugger/vsn.mk | 2 +-
lib/dialyzer/doc/src/notes.xml | 38 ++++++
lib/dialyzer/vsn.mk | 2 +-
lib/diameter/doc/src/notes.xml | 62 +++++++++
lib/edoc/doc/src/notes.xml | 16 +++
lib/edoc/vsn.mk | 2 +-
lib/erl_docgen/doc/src/notes.xml | 18 ++-
lib/erl_docgen/vsn.mk | 2 +-
lib/erl_interface/doc/src/notes.xml | 36 ++++++
lib/erl_interface/vsn.mk | 2 +-
lib/eunit/doc/src/notes.xml | 22 ++++
lib/eunit/vsn.mk | 2 +-
lib/hipe/doc/src/notes.xml | 16 +++
lib/hipe/vsn.mk | 2 +-
lib/inets/doc/src/notes.xml | 32 ++++-
lib/jinterface/doc/src/notes.xml | 34 +++++
lib/jinterface/vsn.mk | 2 +-
lib/kernel/doc/src/notes.xml | 53 ++++++++
lib/kernel/vsn.mk | 2 +-
lib/megaco/doc/src/notes.xml | 19 ++-
lib/megaco/vsn.mk | 2 +-
lib/mnesia/doc/src/notes.xml | 25 +++-
lib/mnesia/vsn.mk | 2 +-
lib/observer/doc/src/notes.xml | 16 +++
lib/observer/vsn.mk | 2 +-
lib/odbc/doc/src/notes.xml | 41 +++++-
lib/odbc/vsn.mk | 2 +-
lib/otp_mibs/doc/src/notes.xml | 16 +++
lib/otp_mibs/vsn.mk | 2 +-
lib/parsetools/doc/src/notes.xml | 18 +++
lib/parsetools/vsn.mk | 2 +-
lib/percept/doc/src/notes.xml | 15 +++
lib/percept/vsn.mk | 2 +-
lib/runtime_tools/doc/src/notes.xml | 17 +++
lib/runtime_tools/vsn.mk | 2 +-
lib/ssh/doc/src/notes.xml | 94 ++++++++++++++
lib/ssl/doc/src/notes.xml | 31 ++++-
lib/stdlib/doc/src/notes.xml | 103 +++++++++++++++
lib/stdlib/vsn.mk | 2 +-
lib/syntax_tools/doc/src/notes.xml | 21 +++
lib/syntax_tools/vsn.mk | 2 +-
lib/test_server/doc/src/notes.xml | 41 ++++++
lib/test_server/vsn.mk | 2 +-
lib/tools/doc/src/notes.xml | 35 +++++
lib/tools/vsn.mk | 2 +-
lib/wx/doc/src/notes.xml | 29 +++++
lib/wx/vsn.mk | 2 +-
58 files changed, 1318 insertions(+), 33 deletions(-)
diff --git a/erts/doc/src/notes.xml b/erts/doc/src/notes.xml
index 7bc39fd351..c896ee0cae 100644
--- a/erts/doc/src/notes.xml
+++ b/erts/doc/src/notes.xml
@@ -30,6 +30,258 @@
This document describes the changes made to the ERTS application.
+Erts 6.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix HiPE debug lock checking on OS X 64bit
+
+ Position-independent code is mandatory on OS X. We use
+ r11 as an intermediate register to fill
+ BIF_P->hipe.bif_callee. This fixes the following error
+ when doing `make debug FLAVOR=smp`:
+
+ clang -cc1as: fatal error: error in backend: 32-bit
+ absolute addressing is not supported in 64-bit mode
+
+ Own Id: OTP-12188
+
+ -
+
+ Fix race bug that could cause VM crash in
+ erlang:port_get_data/1 if the port was closed by a
+ concurrent process. Also fix fatal bug if
+ port_set_data/2 is called with a non-immediate
+ data term. Both bugs exist since R16B01.
+
+ Own Id: OTP-12208
+
+ -
+
+ Correct make variable SSL_DED_LD_RUNTIME_LIBRARY_PATH
+ when erl_xcomp_sysroot ends with a slash.
+
+ Own Id: OTP-12216 Aux Id: seq12700
+
+ -
+
+ Fix two cases of unreachable code caused by false use of
+ assigment operators.
+
+ Own Id: OTP-12222
+
+ -
+
+ Fix bug when hipe compiled code makes tail call to a BIF
+ that disables GC while trapping (sush as binary_to_list,
+ list_to_binary, binary_to_term, term_to_binary).
+
+ Own Id: OTP-12231
+
+ -
+
+ Fix bug when a migrated empty memory carrier is reused
+ just before it should be destroyed by the thread that
+ created it.
+
+ Own Id: OTP-12249
+
+ -
+
+ Prevents compile-time errors in NIFs, when the compiler
+ is instructed to treat missing field initializers as
+ errors, by adding an initializer for the new options
+ field which was added to ErlNifEntry for 17.3.
+
+ Own Id: OTP-12266
+
+ -
+
+ Fixed CPU topology detection on FreeBSD systems where
+ Erlang/OTP is compiled by new C compilers (including, but
+ possibly not limited to, gcc 4.9 and clang).
+
+ Own Id: OTP-12267
+
+ -
+
+ Use C99 function isfinite() instead of finite() when
+ available on non GCC compilers.
+
+ Own Id: OTP-12268
+
+ -
+
+ Fix bug on windows where an incorrect number of links
+ could be returned when doing file:read_file_info on a
+ directory.
+
+ Own Id: OTP-12269
+
+ -
+
+ Fix rare bug when purging module on VM started with
+ +Meamin.
+
+ Own Id: OTP-12273
+
+ -
+
+ Repair run_erl terminal window size adjustment sent from
+ to_erl. This was broken in OTP 17.0 which could lead to
+ strange cursor behaviour in the to_erl shell.
+
+ Own Id: OTP-12275 Aux Id: seq12739
+
+ -
+
+ Fixed bug on windows causing gen_tcp/udp to return an
+ error when given an fd to work with.
+
+ Own Id: OTP-12289
+
+ -
+
+ Fix various internal erts issues where negating a signed
+ integer in C would trigger undefined behavior. This fixes
+ issues when dividing with bignums and list_to_integer.
+
+ Own Id: OTP-12290
+
+ -
+
+ When flushing output to stdout on windows, the emulator
+ could sometimes hang indefinitely waiting for the flush
+ to complete. This has been fixed.
+
+ Own Id: OTP-12291
+
+ -
+
+ Fix so that non-smp emulators with dirty scheduler
+ support shows the correct number of dirty schedulers when
+ calling erlang:system_info(system_version).
+
+ Own Id: OTP-12295
+
+ -
+
+ Add nif_version to erlang:system_info/1 in
+ order to get the NIF API version of the runtime system in
+ a way similar to driver_version.
+
+ Own Id: OTP-12298
+
+ -
+
+ Fix bug that could cause the return value from dirty NIF
+ with zero arity to be treated as garbage, leading to VM
+ crash.
+
+ Own Id: OTP-12300
+
+ -
+
+ Improve allocation carrier migration search logic. This
+ will reduce the risk of failed migrations that could lead
+ to excess memory consumption. It will also improve smp
+ performance due to reduced memory contention on the
+ migration pool.
+
+ Own Id: OTP-12323
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
Introduced support for eager check I/O.
+ By default eager check I/O will be disabled, but this
+ will most likely be changed in OTP 18. When eager check
+ I/O is enabled, schedulers will more frequently check for
+ I/O work. Outstanding I/O operations will however not be
+ prioritized to the same extent as when eager check I/O is
+ disabled.
+ Eager check I/O can be enabled using the erl
+ command line argument: +secio true
+ Characteristics impact when enabled:
+ - Lower latency and smoother management of externally
+ triggered I/O operations.
- A slightly reduced
+ priority of externally triggered I/O operations.
+
+
+ Own Id: OTP-12117
+
+ -
+
+ Fix erts .app-file
+
+ Own Id: OTP-12189
+
+ -
+
+ Add configure option --with-ssl-incl=PATH to support
+ OpenSSL installations with headers and libraries at
+ different places.
+
+ Own Id: OTP-12215 Aux Id: seq12700
+
+ -
+
+ Optimization of atomic memory operations with release
+ barrier semantics on 32-bit PowerPC when using the
+ implementation included in OTP.
+
+ Own Id: OTP-12250
+
+ -
+
+ Minor adjustment of scheduler activation code making sure
+ that an activation of a scheduler is not prevented by its
+ run-queue being non-empty. (Thanks to Songlu Cai)
+
+ Own Id: OTP-12287
+
+ -
+
+ Improved support for atomic memory operations provided by
+ the libatomic_ops
+ library. Most importantly support for use of native
+ double word atomics when implemented by
+ libatomic_ops (for example, implemented for ARM).
+
+ The $ERL_TOP/HOWTO/INSTALL.md
+ document now also more clearly describes when you want to
+ build together with a libatomic_ops installation.
+
+ Own Id: OTP-12302
+
+ -
+
+ Add configure option --with-ssl-rpath to control which
+ runtime library path to use for dynamic linkage toward
+ OpenSSL.
+
+ Own Id: OTP-12316 Aux Id: seq12753
+
+ -
+
+ Added systemd notify support to epmd
+
+ Own Id: OTP-12321
+
+
+
+
+
+
Erts 6.2.1
Fixed Bugs and Malfunctions
diff --git a/erts/vsn.mk b/erts/vsn.mk
index c8c533a221..d0dc8f7243 100644
--- a/erts/vsn.mk
+++ b/erts/vsn.mk
@@ -17,7 +17,7 @@
# %CopyrightEnd%
#
-VSN = 6.2.1
+VSN = 6.3
# Port number 4365 in 4.2
# Port number 4366 in 4.3
diff --git a/lib/asn1/doc/src/notes.xml b/lib/asn1/doc/src/notes.xml
index a7032737bd..cf87c01658 100644
--- a/lib/asn1/doc/src/notes.xml
+++ b/lib/asn1/doc/src/notes.xml
@@ -31,6 +31,38 @@
This document describes the changes made to the asn1 application.
+Asn1 3.0.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ When decoding BER, primitives with an indefinite length
+ will be immediately rejected. (Thanks to Simon Cornish
+ for reporting this bug.)
+
+ Own Id: OTP-12205
+
+ -
+
+ BER: A bug with compliance to X.680 (200811) s31.2.7 has
+ been fixed. Basically, when TagDefault is AUTOMATIC then
+ tags are IMPLICIT unless EXPLICIT is given.
+
+ Own Id: OTP-12318
+
+ -
+
+ Usage of the EXTERNAL 1994 variant type was
+ broken.
+
+ Own Id: OTP-12326
+
+
+
+
+
+
Asn1 3.0.2
Fixed Bugs and Malfunctions
diff --git a/lib/asn1/vsn.mk b/lib/asn1/vsn.mk
index d87c50637d..daaf26a17f 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 = 3.0.2
+ASN1_VSN = 3.0.3
diff --git a/lib/common_test/doc/src/notes.xml b/lib/common_test/doc/src/notes.xml
index f4ce5369f7..94738d2eff 100644
--- a/lib/common_test/doc/src/notes.xml
+++ b/lib/common_test/doc/src/notes.xml
@@ -32,6 +32,94 @@
notes.xml
+Common_Test 1.9
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The source code to html code generator in Test Server
+ (and Common Test) would fail to generate anchors in the
+ html code for functions with non-expandable macros,
+ resulting in bad html links to such functions. This
+ correction lets the code generator ignore macros that
+ can't be expanded (i.e. not pre-process them), so that
+ correct anchors will always be produced.
+
+ Own Id: OTP-11766 Aux Id: seq12556
+
+ -
+
+ OTP-11971 erroneously changed the handling of relative
+ paths (import/export files) specified in the cover spec
+ file. This is now corrected so these are expected to be
+ relative to the directory where the cover spec file
+ itself is stored.
+
+ Own Id: OTP-12031
+
+ -
+
+ Common Test would sometimes crash while trying to print
+ large amounts of SASL reports to log on a computer with a
+ slow file system. This problem (due to an error in IO
+ message buffering in ct_logs) has been fixed.
+
+ Own Id: OTP-12159
+
+ -
+
+ The common_test telnet client, ct_telnet and friends, had
+ some unstable test cases. Some of these were caused by
+ the unix_telnet callback sending an extra newline after
+ sending the password. This caused the sever to send an
+ extra prompt back which confused the tests. The extra
+ newline is no longer sent.
+
+ Also, debug printouts and logging from the telnet client
+ is improved, and some test cases are slightly modified in
+ order to stabilize the test.
+
+ Own Id: OTP-12329
+
+ -
+
+ ct_netconfc did not expect the return value
+ {error,timeout} from ssh_connection:subsystem/4. This has
+ been corrected.
+
+ Own Id: OTP-12334
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ A new option, {newline,boolean()} is added to all
+ functions in ct_telnet that send data (command
+ strings) to the telnet server. By default,
+ ct_telnet adds a newline to all command strings,
+ and by setting the new option to false this
+ behavior is turned off.
+
+ Own Id: OTP-12252 Aux Id: seq12730
+
+ -
+
+ Distribute autoconf helpers to applications at
+ build time instead of having multiple identical copies
+ committed in the repository.
+
+ Own Id: OTP-12348
+
+
+
+
+
+
Common_Test 1.8.2
Fixed Bugs and Malfunctions
diff --git a/lib/common_test/vsn.mk b/lib/common_test/vsn.mk
index 00c0925b40..849edc15e1 100644
--- a/lib/common_test/vsn.mk
+++ b/lib/common_test/vsn.mk
@@ -1 +1 @@
-COMMON_TEST_VSN = 1.8.2
+COMMON_TEST_VSN = 1.9
diff --git a/lib/compiler/doc/src/notes.xml b/lib/compiler/doc/src/notes.xml
index d48a0a5599..84ebd2f210 100644
--- a/lib/compiler/doc/src/notes.xml
+++ b/lib/compiler/doc/src/notes.xml
@@ -31,6 +31,35 @@
This document describes the changes made to the Compiler
application.
+Compiler 5.0.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Named funs with the same name and arity could get mixed
+ up with each other.
+
+ Own Id: OTP-12262
+
+ -
+
+ Coalesce map keys in dialyzer mode
+
+ This fixes a regression introduced in commit
+ 805f9c89fc01220bc1bb0f27e1b68fd4eca688ba The problem
+ occurred with compounded map keys compiled with dialyzer
+ option turned on, '+dialyzer'.
+
+ Reported by: Ivan Uemlianin
+
+ Own Id: OTP-12347
+
+
+
+
+
+
Compiler 5.0.2
Fixed Bugs and Malfunctions
diff --git a/lib/compiler/vsn.mk b/lib/compiler/vsn.mk
index d042596557..b1a6c15ac9 100644
--- a/lib/compiler/vsn.mk
+++ b/lib/compiler/vsn.mk
@@ -1 +1 @@
-COMPILER_VSN = 5.0.2
+COMPILER_VSN = 5.0.3
diff --git a/lib/crypto/doc/src/notes.xml b/lib/crypto/doc/src/notes.xml
index 82b6de9acd..605d61e8e4 100644
--- a/lib/crypto/doc/src/notes.xml
+++ b/lib/crypto/doc/src/notes.xml
@@ -30,6 +30,31 @@
This document describes the changes made to the Crypto application.
+Crypto 3.4.2
+
+ Improvements and New Features
+
+ -
+
+ Add configure option --with-ssl-incl=PATH to support
+ OpenSSL installations with headers and libraries at
+ different places.
+
+ Own Id: OTP-12215 Aux Id: seq12700
+
+ -
+
+ Add configure option --with-ssl-rpath to control which
+ runtime library path to use for dynamic linkage toward
+ OpenSSL.
+
+ Own Id: OTP-12316 Aux Id: seq12753
+
+
+
+
+
+
Crypto 3.4.1
Fixed Bugs and Malfunctions
diff --git a/lib/crypto/vsn.mk b/lib/crypto/vsn.mk
index 2a7f3c4558..b87685cb3f 100644
--- a/lib/crypto/vsn.mk
+++ b/lib/crypto/vsn.mk
@@ -1 +1 @@
-CRYPTO_VSN = 3.4.1
+CRYPTO_VSN = 3.4.2
diff --git a/lib/debugger/doc/src/notes.xml b/lib/debugger/doc/src/notes.xml
index c1ba1eec6b..b4baa2a1cd 100644
--- a/lib/debugger/doc/src/notes.xml
+++ b/lib/debugger/doc/src/notes.xml
@@ -32,6 +32,29 @@
This document describes the changes made to the Debugger
application.
+Debugger 4.0.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Make sure to install .hrl files when needed
+
+ Own Id: OTP-12197
+
+ -
+
+ Invoking debugger functions ia/1 and iaa/1
+ crashed, when it tried to invoke the old and removed gs
+ based gui functions.
+
+ Own Id: OTP-12357
+
+
+
+
+
+
Debugger 4.0.1
Fixed Bugs and Malfunctions
diff --git a/lib/debugger/vsn.mk b/lib/debugger/vsn.mk
index 33481a1537..38c19be93e 100644
--- a/lib/debugger/vsn.mk
+++ b/lib/debugger/vsn.mk
@@ -1 +1 @@
-DEBUGGER_VSN = 4.0.1
+DEBUGGER_VSN = 4.0.2
diff --git a/lib/dialyzer/doc/src/notes.xml b/lib/dialyzer/doc/src/notes.xml
index d35639aa32..4020165697 100644
--- a/lib/dialyzer/doc/src/notes.xml
+++ b/lib/dialyzer/doc/src/notes.xml
@@ -31,6 +31,44 @@
This document describes the changes made to the Dialyzer
application.
+Dialyzer 2.7.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
When compiling Erlang source, Dialyzer now ignores
+ the environment variable ERL_COMPILER_OPTIONS as well as
+ skips the Erlang Compiler option
+ warnings_as_errors.
+
+ Own Id: OTP-12225
+
+ -
+
Dialyzer did not check the type of record elements
+ when updating them. The bug, introduced in Erlang/OTP
+ 17.1, has been corrected. (Thanks to Nicolas Dudebout for
+ pointing it out.)
+
+ Own Id: OTP-12319
+
+ -
+
+ Coalesce map keys in dialyzer mode
+
+ This fixes a regression introduced in commit
+ 805f9c89fc01220bc1bb0f27e1b68fd4eca688ba The problem
+ occurred with compounded map keys compiled with dialyzer
+ option turned on, '+dialyzer'.
+
+ Reported by: Ivan Uemlianin
+
+ Own Id: OTP-12347
+
+
+
+
+
+
Dialyzer 2.7.2
Fixed Bugs and Malfunctions
diff --git a/lib/dialyzer/vsn.mk b/lib/dialyzer/vsn.mk
index 58cc77c2fa..e7c13f04ad 100644
--- a/lib/dialyzer/vsn.mk
+++ b/lib/dialyzer/vsn.mk
@@ -1 +1 @@
-DIALYZER_VSN = 2.7.2
+DIALYZER_VSN = 2.7.3
diff --git a/lib/diameter/doc/src/notes.xml b/lib/diameter/doc/src/notes.xml
index 7f69bdbfbf..e6ac332c10 100644
--- a/lib/diameter/doc/src/notes.xml
+++ b/lib/diameter/doc/src/notes.xml
@@ -42,6 +42,68 @@ first.
+diameter 1.8
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fix remote diameter_request table leak.
+
+ An outgoing request whose pick_peer callback selected a
+ transport on another node resulted in an orphaned table
+ entry on that node.
+
+ Own Id: OTP-12196
+
+ -
+
+ Fix handling of 3xxx Result-Code without E-bit.
+
+ OTP-12233 broke the population of the errors field of the
+ diameter_packet record when an incoming request with an
+ E-bit/Result-Code mismatch was detected, causing a
+ 4-tuple to be inserted as Result-Code in a diameter_avp
+ record.
+
+ Own Id: OTP-12233
+
+ -
+
+ Fix ignored connect timer.
+
+ There are two timers governing the establishment of peer
+ connections: connect_timer and watchdog_timer. The former
+ is the RFC 6733 Tc timer, and is used at initial
+ connection establishment. The latter is RFC 3539 TwInit,
+ and is used for connection reestablishment. A connecting
+ transport erroneously used watchdog_timer in both cases.
+
+ Own Id: OTP-12281 Aux Id: seq12728
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Order candidate peers in pick_peer callbacks.
+
+ The order of candidate peers presented to a
+ diameter_app(3) pick_peer callback has previously not
+ been documented, but there are use cases that are
+ simplified by an ordering. The order is now determined by
+ the filter.
+
+ Own Id: OTP-12308
+
+
+
+
+
+
diameter 1.7.1
Fixed Bugs and Malfunctions
diff --git a/lib/edoc/doc/src/notes.xml b/lib/edoc/doc/src/notes.xml
index 52b7529f70..e350adb540 100644
--- a/lib/edoc/doc/src/notes.xml
+++ b/lib/edoc/doc/src/notes.xml
@@ -31,6 +31,22 @@
This document describes the changes made to the EDoc
application.
+Edoc 0.7.16
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Maps: Properly align union typed assoc values in
+ documentation
+
+ Own Id: OTP-12190
+
+
+
+
+
+
Edoc 0.7.15
Fixed Bugs and Malfunctions
diff --git a/lib/edoc/vsn.mk b/lib/edoc/vsn.mk
index b1cf115b29..24cfbf16d5 100644
--- a/lib/edoc/vsn.mk
+++ b/lib/edoc/vsn.mk
@@ -1 +1 @@
-EDOC_VSN = 0.7.15
+EDOC_VSN = 0.7.16
diff --git a/lib/erl_docgen/doc/src/notes.xml b/lib/erl_docgen/doc/src/notes.xml
index f194fb6d6c..c2f81dfcc1 100644
--- a/lib/erl_docgen/doc/src/notes.xml
+++ b/lib/erl_docgen/doc/src/notes.xml
@@ -30,7 +30,23 @@
This document describes the changes made to the erl_docgen application.
- Erl_Docgen 0.3.6
+ Erl_Docgen 0.3.7
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Maps: Properly align union typed assoc values in
+ documentation
+
+ Own Id: OTP-12190
+
+
+
+
+
+
+Erl_Docgen 0.3.6
Fixed Bugs and Malfunctions
diff --git a/lib/erl_docgen/vsn.mk b/lib/erl_docgen/vsn.mk
index 8bfcc08698..8957d6ac40 100644
--- a/lib/erl_docgen/vsn.mk
+++ b/lib/erl_docgen/vsn.mk
@@ -1 +1 @@
-ERL_DOCGEN_VSN = 0.3.6
+ERL_DOCGEN_VSN = 0.3.7
diff --git a/lib/erl_interface/doc/src/notes.xml b/lib/erl_interface/doc/src/notes.xml
index a055e854e3..29a9d71041 100644
--- a/lib/erl_interface/doc/src/notes.xml
+++ b/lib/erl_interface/doc/src/notes.xml
@@ -30,6 +30,42 @@
This document describes the changes made to the Erl_interface application.
+Erl_Interface 3.7.20
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Use C99 function isfinite() instead of finite() when
+ available on non GCC compilers.
+
+ Own Id: OTP-12268
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Distribute autoconf helpers to applications at
+ build time instead of having multiple identical copies
+ committed in the repository.
+
+ Own Id: OTP-12348
+
+ -
+
+ Added an .appup file for the application.
+
+ Own Id: OTP-12358 Aux Id: OTP-12178
+
+
+
+
+
+
Erl_Interface 3.7.19
Fixed Bugs and Malfunctions
diff --git a/lib/erl_interface/vsn.mk b/lib/erl_interface/vsn.mk
index e39aa4f514..c809d5421e 100644
--- a/lib/erl_interface/vsn.mk
+++ b/lib/erl_interface/vsn.mk
@@ -1,2 +1,2 @@
-EI_VSN = 3.7.19
+EI_VSN = 3.7.20
ERL_INTERFACE_VSN = $(EI_VSN)
diff --git a/lib/eunit/doc/src/notes.xml b/lib/eunit/doc/src/notes.xml
index e5a190e3e9..6b76e097b6 100644
--- a/lib/eunit/doc/src/notes.xml
+++ b/lib/eunit/doc/src/notes.xml
@@ -32,6 +32,28 @@
This document describes the changes made to the EUnit application.
+Eunit 2.2.9
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Make sure to install .hrl files when needed
+
+ Own Id: OTP-12197
+
+ -
+
+ Make sure the clean rule for ssh, ssl, eunit and otp_mibs
+ actually removes generated files.
+
+ Own Id: OTP-12200
+
+
+
+
+
+
Eunit 2.2.8
Fixed Bugs and Malfunctions
diff --git a/lib/eunit/vsn.mk b/lib/eunit/vsn.mk
index 855e1dac88..dca8b3ece0 100644
--- a/lib/eunit/vsn.mk
+++ b/lib/eunit/vsn.mk
@@ -1 +1 @@
-EUNIT_VSN = 2.2.8
+EUNIT_VSN = 2.2.9
diff --git a/lib/hipe/doc/src/notes.xml b/lib/hipe/doc/src/notes.xml
index 2962e4a9ac..2d6fd245f7 100644
--- a/lib/hipe/doc/src/notes.xml
+++ b/lib/hipe/doc/src/notes.xml
@@ -30,6 +30,22 @@
This document describes the changes made to HiPE.
+Hipe 3.11.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed internal elf_format hrl file to contain valid
+ erlang
+
+ Own Id: OTP-12322
+
+
+
+
+
+
Hipe 3.11.1
Fixed Bugs and Malfunctions
diff --git a/lib/hipe/vsn.mk b/lib/hipe/vsn.mk
index cf1976d8d6..4cf09830cb 100644
--- a/lib/hipe/vsn.mk
+++ b/lib/hipe/vsn.mk
@@ -1 +1 @@
-HIPE_VSN = 3.11.1
+HIPE_VSN = 3.11.2
diff --git a/lib/inets/doc/src/notes.xml b/lib/inets/doc/src/notes.xml
index 921de8e490..fb7034498c 100644
--- a/lib/inets/doc/src/notes.xml
+++ b/lib/inets/doc/src/notes.xml
@@ -32,7 +32,37 @@
notes.xml
- Inets 5.10.3
+ Inets 5.10.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed a spelling mistake in httpc documentation.
+
+ Own Id: OTP-12221
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Add option {ftp_extension, boolean} to enable use of
+ extended commands EPSV and EPRT, as specified in RFC
+ 2428, for IPv4 instead of using the legacy commands. Ipv6
+ can not be supported without the extended commands.
+
+ Own Id: OTP-12255
+
+
+
+
+
+
+Inets 5.10.3
Fixed Bugs and Malfunctions
diff --git a/lib/jinterface/doc/src/notes.xml b/lib/jinterface/doc/src/notes.xml
index 46d89f0cdb..fc5f8be53e 100644
--- a/lib/jinterface/doc/src/notes.xml
+++ b/lib/jinterface/doc/src/notes.xml
@@ -30,6 +30,40 @@
This document describes the changes made to the Jinterface application.
+Jinterface 1.5.12
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ handle empty .erlang.cookie without crashing and
+ OtpErlangList.clone must not return null
+
+ Own Id: OTP-12210
+
+ -
+
+ This fixes all the compilation warnings in the Java code
+
+ Own Id: OTP-12211
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Added an .appup file for the application.
+
+ Own Id: OTP-12358 Aux Id: OTP-12178
+
+
+
+
+
+
Jinterface 1.5.11
Fixed Bugs and Malfunctions
diff --git a/lib/jinterface/vsn.mk b/lib/jinterface/vsn.mk
index eea83c2f3f..72ad316333 100644
--- a/lib/jinterface/vsn.mk
+++ b/lib/jinterface/vsn.mk
@@ -1 +1 @@
-JINTERFACE_VSN = 1.5.11
+JINTERFACE_VSN = 1.5.12
diff --git a/lib/kernel/doc/src/notes.xml b/lib/kernel/doc/src/notes.xml
index 7eaf2d4a44..1ef106e17a 100644
--- a/lib/kernel/doc/src/notes.xml
+++ b/lib/kernel/doc/src/notes.xml
@@ -30,6 +30,59 @@
This document describes the changes made to the Kernel application.
+Kernel 3.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Make sure to install .hrl files when needed
+
+ Own Id: OTP-12197
+
+ -
+
+ Removed the undocumented application environment variable
+ 'raw_files' from the kernel application. This variable
+ was checked (by call to application:get_env/2) each time
+ a raw file was to be opened in the file module.
+
+ Own Id: OTP-12276
+
+ -
+
+ A bug has been fixed when using the netns option to
+ gen_udp, which accidentally only worked if it was the
+ last option.
+
+ Own Id: OTP-12314
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Updated documentation for inet buffer size options.
+
+ Own Id: OTP-12296
+
+ -
+
+ Introduce new option 'raw' in file_info and link_info
+ functions. This option allows the caller not to go
+ through the file server for information about files
+ guaranteed to be local.
+
+ Own Id: OTP-12325
+
+
+
+
+
+
Kernel 3.0.3
Fixed Bugs and Malfunctions
diff --git a/lib/kernel/vsn.mk b/lib/kernel/vsn.mk
index be633a304a..15820a0182 100644
--- a/lib/kernel/vsn.mk
+++ b/lib/kernel/vsn.mk
@@ -1 +1 @@
-KERNEL_VSN = 3.0.3
+KERNEL_VSN = 3.1
diff --git a/lib/megaco/doc/src/notes.xml b/lib/megaco/doc/src/notes.xml
index 9a260c3878..fd654af051 100644
--- a/lib/megaco/doc/src/notes.xml
+++ b/lib/megaco/doc/src/notes.xml
@@ -36,7 +36,24 @@
section is the version number of Megaco.
- Megaco 3.17.2
+ Megaco 3.17.3
+
+ Improvements and New Features
+
+ -
+
+ Distribute autoconf helpers to applications at
+ build time instead of having multiple identical copies
+ committed in the repository.
+
+ Own Id: OTP-12348
+
+
+
+
+
+
+Megaco 3.17.2
Fixed Bugs and Malfunctions
diff --git a/lib/megaco/vsn.mk b/lib/megaco/vsn.mk
index 1f4e3b8e95..8687d622e9 100644
--- a/lib/megaco/vsn.mk
+++ b/lib/megaco/vsn.mk
@@ -18,6 +18,6 @@
# %CopyrightEnd%
APPLICATION = megaco
-MEGACO_VSN = 3.17.2
+MEGACO_VSN = 3.17.3
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 e5c7d87f52..18f72f4faf 100644
--- a/lib/mnesia/doc/src/notes.xml
+++ b/lib/mnesia/doc/src/notes.xml
@@ -38,7 +38,30 @@
thus constitutes one section in this document. The title of each
section is the version number of Mnesia.
- Mnesia 4.12.3
+ Mnesia 4.12.4
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed a spelling mistake in mnesia documentation.
+
+ Own Id: OTP-12278
+
+ -
+
+ Matching data with mnesia:match_object/1 did not
+ work as expected in some cases, when data was written in
+ the same transaction before the matching was invoked.
+
+ Own Id: OTP-12304 Aux Id: Seq12745
+
+
+
+
+
+
+Mnesia 4.12.3
Fixed Bugs and Malfunctions
diff --git a/lib/mnesia/vsn.mk b/lib/mnesia/vsn.mk
index d5b96c5c76..94eb360591 100644
--- a/lib/mnesia/vsn.mk
+++ b/lib/mnesia/vsn.mk
@@ -1 +1 @@
-MNESIA_VSN = 4.12.3
+MNESIA_VSN = 4.12.4
diff --git a/lib/observer/doc/src/notes.xml b/lib/observer/doc/src/notes.xml
index 658ac2c7cf..11729078c2 100644
--- a/lib/observer/doc/src/notes.xml
+++ b/lib/observer/doc/src/notes.xml
@@ -31,6 +31,22 @@
This document describes the changes made to the Observer
application.
+Observer 2.0.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ A note saying only R15B nodes can be observed is removed
+ from the user guide.
+
+ Own Id: OTP-12078
+
+
+
+
+
+
Observer 2.0.2
Fixed Bugs and Malfunctions
diff --git a/lib/observer/vsn.mk b/lib/observer/vsn.mk
index dbbbde1467..c8a6023b4f 100644
--- a/lib/observer/vsn.mk
+++ b/lib/observer/vsn.mk
@@ -1 +1 @@
-OBSERVER_VSN = 2.0.2
+OBSERVER_VSN = 2.0.3
diff --git a/lib/odbc/doc/src/notes.xml b/lib/odbc/doc/src/notes.xml
index 495a675631..7a7658b092 100644
--- a/lib/odbc/doc/src/notes.xml
+++ b/lib/odbc/doc/src/notes.xml
@@ -31,7 +31,46 @@
This document describes the changes made to the odbc application.
- ODBC 2.10.21
+ ODBC 2.10.22
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ OS X Mavericks is based on Darwin version 13.x, and
+ Yosemite on 14.x. Change the ODBC configure.in script to
+ recognize these versions.
+
+ Own Id: OTP-12260
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ The commands longer than 127 chars sent to odbc server
+ crashed it, e.g. a connection string with driver path and
+ some additional parameters.
+
+ Own Id: OTP-12346
+
+ -
+
+ Distribute autoconf helpers to applications at
+ build time instead of having multiple identical copies
+ committed in the repository.
+
+ Own Id: OTP-12348
+
+
+
+
+
+
+ODBC 2.10.21
Fixed Bugs and Malfunctions
diff --git a/lib/odbc/vsn.mk b/lib/odbc/vsn.mk
index b374e42d15..52c84429ec 100644
--- a/lib/odbc/vsn.mk
+++ b/lib/odbc/vsn.mk
@@ -1 +1 @@
-ODBC_VSN = 2.10.21
+ODBC_VSN = 2.10.22
diff --git a/lib/otp_mibs/doc/src/notes.xml b/lib/otp_mibs/doc/src/notes.xml
index 391c82b1c5..c61978c99e 100644
--- a/lib/otp_mibs/doc/src/notes.xml
+++ b/lib/otp_mibs/doc/src/notes.xml
@@ -31,6 +31,22 @@
This document describes the changes made to the OTP_Mibs
application.
+Otp_Mibs 1.0.10
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Make sure the clean rule for ssh, ssl, eunit and otp_mibs
+ actually removes generated files.
+
+ Own Id: OTP-12200
+
+
+
+
+
+
Otp_Mibs 1.0.9
Fixed Bugs and Malfunctions
diff --git a/lib/otp_mibs/vsn.mk b/lib/otp_mibs/vsn.mk
index 98db21c132..2ff59431f4 100644
--- a/lib/otp_mibs/vsn.mk
+++ b/lib/otp_mibs/vsn.mk
@@ -1,4 +1,4 @@
-OTP_MIBS_VSN = 1.0.9
+OTP_MIBS_VSN = 1.0.10
# Note: The branch 'otp_mibs' is defunct as of otp_mibs-1.0.4 and
# should NOT be used again.
diff --git a/lib/parsetools/doc/src/notes.xml b/lib/parsetools/doc/src/notes.xml
index a8368740da..c8cb70b6d2 100644
--- a/lib/parsetools/doc/src/notes.xml
+++ b/lib/parsetools/doc/src/notes.xml
@@ -30,6 +30,24 @@
This document describes the changes made to the Parsetools application.
+Parsetools 2.0.12
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The line counter becomes invalid when rules with linewrap
+ are used. This issue appears because the parsing FSM does
+ not roll back the line counter after attempting such a
+ rule.
+
+ Own Id: OTP-12238
+
+
+
+
+
+
Parsetools 2.0.11
Fixed Bugs and Malfunctions
diff --git a/lib/parsetools/vsn.mk b/lib/parsetools/vsn.mk
index 8fd7422c1c..dd9cc2991c 100644
--- a/lib/parsetools/vsn.mk
+++ b/lib/parsetools/vsn.mk
@@ -1 +1 @@
-PARSETOOLS_VSN = 2.0.11
+PARSETOOLS_VSN = 2.0.12
diff --git a/lib/percept/doc/src/notes.xml b/lib/percept/doc/src/notes.xml
index bae999ed1a..b51c8fcb4d 100644
--- a/lib/percept/doc/src/notes.xml
+++ b/lib/percept/doc/src/notes.xml
@@ -32,6 +32,21 @@
This document describes the changes made to the Percept application.
+Percept 0.8.10
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Make sure to install .hrl files when needed
+
+ Own Id: OTP-12197
+
+
+
+
+
+
Percept 0.8.9
Fixed Bugs and Malfunctions
diff --git a/lib/percept/vsn.mk b/lib/percept/vsn.mk
index 935a9d1336..4451354e21 100644
--- a/lib/percept/vsn.mk
+++ b/lib/percept/vsn.mk
@@ -1 +1 @@
-PERCEPT_VSN = 0.8.9
+PERCEPT_VSN = 0.8.10
diff --git a/lib/runtime_tools/doc/src/notes.xml b/lib/runtime_tools/doc/src/notes.xml
index 9b026aee11..2877355718 100644
--- a/lib/runtime_tools/doc/src/notes.xml
+++ b/lib/runtime_tools/doc/src/notes.xml
@@ -31,6 +31,23 @@
This document describes the changes made to the Runtime_Tools
application.
+Runtime_Tools 1.8.15
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Add nif_version to erlang:system_info/1 in
+ order to get the NIF API version of the runtime system in
+ a way similar to driver_version.
+
+ Own Id: OTP-12298
+
+
+
+
+
+
Runtime_Tools 1.8.14
Fixed Bugs and Malfunctions
diff --git a/lib/runtime_tools/vsn.mk b/lib/runtime_tools/vsn.mk
index 32953dfc5a..c1df23d2a2 100644
--- a/lib/runtime_tools/vsn.mk
+++ b/lib/runtime_tools/vsn.mk
@@ -1 +1 @@
-RUNTIME_TOOLS_VSN = 1.8.14
+RUNTIME_TOOLS_VSN = 1.8.15
diff --git a/lib/ssh/doc/src/notes.xml b/lib/ssh/doc/src/notes.xml
index f3db05192e..3aa61aa9ec 100644
--- a/lib/ssh/doc/src/notes.xml
+++ b/lib/ssh/doc/src/notes.xml
@@ -29,6 +29,100 @@
notes.xml
+Ssh 3.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Make sure the clean rule for ssh, ssl, eunit and otp_mibs
+ actually removes generated files.
+
+ Own Id: OTP-12200
+
+ -
+
+ Improved Property Tests (Thanks to Thomas, John and
+ Tobias at QuviQ)
+
+ Own Id: OTP-12256
+
+ -
+
+ Correct typo of renegotiate that could cause rekeying to
+ fail
+
+ Own Id: OTP-12277 Aux Id: seq12736
+
+ -
+
+ The {timeout, Timeout} option passed to
+ ssh_sftp:start_channel was not applied to the early
+ phases of the SSH protocol. This patch passes the Timeout
+ through to ssh:connect. In case the timeout occurs during
+ these phases, {error, timeout} is returned. (Thanks to
+ Simon Cornish)
+
+ Own Id: OTP-12306
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Added API functions ptty_alloc/3 and ptty_alloc/4, to
+ allocate a pseudo tty.
+
+ Own Id: OTP-11542 Aux Id: seq12493, OTP-11631
+
+ -
+
+ Supports tar file creation on other media than file
+ systems mounted on the local machine.
+
+ The erl_tar api is extended with
+ erl_tar:init/3 that enables usage of user provided
+ media storage routines. A ssh-specific set of such
+ routines is hidden in the new function
+ ssh_sftp:open_tar/3 to simplify creating a tar
+ archive on a remote ssh server.
+
+ A chunked file reading option is added to
+ erl_tar:add/3,4 to save memory on e.g small
+ embedded systems. The size of the slices read from a file
+ in that case can be specified.
+
+ Own Id: OTP-12180 Aux Id: seq12715
+
+ -
+
+ Always send SSH_DISCONNECT protocol messages when peer
+ sends corrupt messages.
+
+ Own Id: OTP-12185
+
+ -
+
+ Hooks for funs that can change binaries sent to remote
+ sites from erl_tar for renote tar file creation are
+ added. See ssh_sftp:open_tar/3,4 for details. The
+ hooks could also be used to read remote tar files that
+ need transformation before file extraction.
+
+ Those hooks are intended for encryption and decryption of
+ tar files. Effort is put into memory, disk and network
+ resource economy.
+
+ Own Id: OTP-12312 Aux Id: OTP-12180
+
+
+
+
+
+
Ssh 3.0.8
Fixed Bugs and Malfunctions
diff --git a/lib/ssl/doc/src/notes.xml b/lib/ssl/doc/src/notes.xml
index 62e9bd0165..4349e5a456 100644
--- a/lib/ssl/doc/src/notes.xml
+++ b/lib/ssl/doc/src/notes.xml
@@ -25,7 +25,36 @@
notes.xml
This document describes the changes made to the SSL application.
- SSL 5.3.7
+ SSL 5.3.8
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Make sure the clean rule for ssh, ssl, eunit and otp_mibs
+ actually removes generated files.
+
+ Own Id: OTP-12200
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Change code to reflect that state data may be secret to
+ avoid breaking dialyzer contracts.
+
+ Own Id: OTP-12341
+
+
+
+
+
+
+SSL 5.3.7
Fixed Bugs and Malfunctions
diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml
index ebc750a399..8582bfc9f9 100644
--- a/lib/stdlib/doc/src/notes.xml
+++ b/lib/stdlib/doc/src/notes.xml
@@ -30,6 +30,109 @@
This document describes the changes made to the STDLIB application.
+STDLIB 2.3
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The documentation of string:tokens/2 now explicitly
+ specifies that adjacent separator characters do not give
+ any empty strings in the resulting list of tokens.
+
+ Own Id: OTP-12036
+
+ -
+
+ Fix broken deprecation warnings in ssh application
+
+ Own Id: OTP-12187
+
+ -
+
+ Maps: Properly align union typed assoc values in
+ documentation
+
+ Own Id: OTP-12190
+
+ -
+
+ Fix filelib:wildcard/2 when 'Cwd' ends with a dot
+
+ Own Id: OTP-12212
+
+ -
+
+ Allow Name/Arity syntax in maps values inside
+ attributes.
+
+ Own Id: OTP-12213
+
+ -
+
+ Fix edlin to correctly save text killed with ctrl-u.
+ Prior to this fix, entering text into the Erlang shell
+ and then killing it with ctrl-u followed by yanking it
+ back with ctrl-y would result in the yanked text being
+ the reverse of the original killed text.
+
+ Own Id: OTP-12224
+
+ -
+
+ If a callback function was terminated with exit/1, there
+ would be no stack trace in the ERROR REPORT produced by
+ gen_server. This has been corrected.
+
+ To keep the backwards compatibility, the actual exit
+ reason for the process is not changed.
+
+ Own Id: OTP-12263 Aux Id: seq12733
+
+ -
+
+ Warnings produced by ms_transform could point out
+ the wrong line number.
+
+ Own Id: OTP-12264
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Supports tar file creation on other media than file
+ systems mounted on the local machine.
+
+ The erl_tar api is extended with
+ erl_tar:init/3 that enables usage of user provided
+ media storage routines. A ssh-specific set of such
+ routines is hidden in the new function
+ ssh_sftp:open_tar/3 to simplify creating a tar
+ archive on a remote ssh server.
+
+ A chunked file reading option is added to
+ erl_tar:add/3,4 to save memory on e.g small
+ embedded systems. The size of the slices read from a file
+ in that case can be specified.
+
+ Own Id: OTP-12180 Aux Id: seq12715
+
+ -
+
+ I/O requests are optimized for long message queues in the
+ calling process.
+
+ Own Id: OTP-12315
+
+
+
+
+
+
STDLIB 2.2
Fixed Bugs and Malfunctions
diff --git a/lib/stdlib/vsn.mk b/lib/stdlib/vsn.mk
index b522c3ea3c..5be130bac9 100644
--- a/lib/stdlib/vsn.mk
+++ b/lib/stdlib/vsn.mk
@@ -1 +1 @@
-STDLIB_VSN = 2.2
+STDLIB_VSN = 2.3
diff --git a/lib/syntax_tools/doc/src/notes.xml b/lib/syntax_tools/doc/src/notes.xml
index 8384af53b0..b0f11bb243 100644
--- a/lib/syntax_tools/doc/src/notes.xml
+++ b/lib/syntax_tools/doc/src/notes.xml
@@ -31,6 +31,27 @@
This document describes the changes made to the Syntax_Tools
application.
+Syntax_Tools 1.6.17
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Teach Maps to erl_syntax
+
+ Affected functions:
+ - erl_syntax:abstract/1
+ - erl_syntax:concrete/1
+ - erl_syntax:is_leaf/1
+ - erl_syntax:is_literal/1
+
+ Own Id: OTP-12265
+
+
+
+
+
+
Syntax_Tools 1.6.16
Fixed Bugs and Malfunctions
diff --git a/lib/syntax_tools/vsn.mk b/lib/syntax_tools/vsn.mk
index 6a80734f83..673362d01d 100644
--- a/lib/syntax_tools/vsn.mk
+++ b/lib/syntax_tools/vsn.mk
@@ -1 +1 @@
-SYNTAX_TOOLS_VSN = 1.6.16
+SYNTAX_TOOLS_VSN = 1.6.17
diff --git a/lib/test_server/doc/src/notes.xml b/lib/test_server/doc/src/notes.xml
index a801a87725..68dc1fec88 100644
--- a/lib/test_server/doc/src/notes.xml
+++ b/lib/test_server/doc/src/notes.xml
@@ -32,6 +32,47 @@
notes.xml
+Test_Server 3.7.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ The source code to html code generator in Test Server
+ (and Common Test) would fail to generate anchors in the
+ html code for functions with non-expandable macros,
+ resulting in bad html links to such functions. This
+ correction lets the code generator ignore macros that
+ can't be expanded (i.e. not pre-process them), so that
+ correct anchors will always be produced.
+
+ Own Id: OTP-11766 Aux Id: seq12556
+
+ -
+
+ Make sure to install .hrl files when needed
+
+ Own Id: OTP-12197
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Distribute autoconf helpers to applications at
+ build time instead of having multiple identical copies
+ committed in the repository.
+
+ Own Id: OTP-12348
+
+
+
+
+
+
Test_Server 3.7.1
Fixed Bugs and Malfunctions
diff --git a/lib/test_server/vsn.mk b/lib/test_server/vsn.mk
index 9e1ac8fd12..18d7583c35 100644
--- a/lib/test_server/vsn.mk
+++ b/lib/test_server/vsn.mk
@@ -1 +1 @@
-TEST_SERVER_VSN = 3.7.1
+TEST_SERVER_VSN = 3.7.2
diff --git a/lib/tools/doc/src/notes.xml b/lib/tools/doc/src/notes.xml
index faee5efd43..6f9563bb68 100644
--- a/lib/tools/doc/src/notes.xml
+++ b/lib/tools/doc/src/notes.xml
@@ -30,6 +30,41 @@
This document describes the changes made to the Tools application.
+Tools 2.7.1
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed a typo in erlang-mode comment.
+
+ Own Id: OTP-12214
+
+ -
+
+ Add a skeleton for -spec in Erlang mode for Emacs
+
+ Own Id: OTP-12283
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Cover no longer crashes when compiling receive and
+ the like with just an after clause. Thanks to
+ José Valim for providing a fix.
+
+ Own Id: OTP-12328
+
+
+
+
+
+
Tools 2.7
Improvements and New Features
diff --git a/lib/tools/vsn.mk b/lib/tools/vsn.mk
index 3acb8d38e2..d9651c30e3 100644
--- a/lib/tools/vsn.mk
+++ b/lib/tools/vsn.mk
@@ -1 +1 @@
-TOOLS_VSN = 2.7
+TOOLS_VSN = 2.7.1
diff --git a/lib/wx/doc/src/notes.xml b/lib/wx/doc/src/notes.xml
index 5a9c53e3b6..52087398e7 100644
--- a/lib/wx/doc/src/notes.xml
+++ b/lib/wx/doc/src/notes.xml
@@ -31,6 +31,35 @@
This document describes the changes made to the wxErlang
application.
+Wx 1.3.2
+
+ Fixed Bugs and Malfunctions
+
+ -
+
+ Fixed a minor typo in the graphicsContext example.
+
+ Own Id: OTP-12259
+
+
+
+
+
+ Improvements and New Features
+
+ -
+
+ Distribute autoconf helpers to applications at
+ build time instead of having multiple identical copies
+ committed in the repository.
+
+ Own Id: OTP-12348
+
+
+
+
+
+
Wx 1.3.1
Fixed Bugs and Malfunctions
diff --git a/lib/wx/vsn.mk b/lib/wx/vsn.mk
index 24e8c2ed11..78c24ec093 100644
--- a/lib/wx/vsn.mk
+++ b/lib/wx/vsn.mk
@@ -1 +1 @@
-WX_VSN = 1.3.1
+WX_VSN = 1.3.2
--
cgit v1.2.3