diff options
author | Erlang/OTP <[email protected]> | 2014-12-09 15:21:47 +0100 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2014-12-09 15:21:47 +0100 |
commit | 7f3486a5ddc02a366f2945dfd009c4a2697a2b98 (patch) | |
tree | c9bc8bcce1cbd888652e297ef0947113496c1f4e /lib/kernel | |
parent | 6d0033735b0b75321fb70d5e2a7645533cc24250 (diff) | |
download | otp-7f3486a5ddc02a366f2945dfd009c4a2697a2b98.tar.gz otp-7f3486a5ddc02a366f2945dfd009c4a2697a2b98.tar.bz2 otp-7f3486a5ddc02a366f2945dfd009c4a2697a2b98.zip |
Prepare release
Diffstat (limited to 'lib/kernel')
-rw-r--r-- | lib/kernel/doc/src/notes.xml | 53 | ||||
-rw-r--r-- | lib/kernel/vsn.mk | 2 |
2 files changed, 54 insertions, 1 deletions
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 @@ </header> <p>This document describes the changes made to the Kernel application.</p> +<section><title>Kernel 3.1</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + Make sure to install .hrl files when needed</p> + <p> + Own Id: OTP-12197</p> + </item> + <item> + <p> + 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.</p> + <p> + Own Id: OTP-12276</p> + </item> + <item> + <p> + A bug has been fixed when using the netns option to + gen_udp, which accidentally only worked if it was the + last option.</p> + <p> + Own Id: OTP-12314</p> + </item> + </list> + </section> + + + <section><title>Improvements and New Features</title> + <list> + <item> + <p> + Updated documentation for inet buffer size options.</p> + <p> + Own Id: OTP-12296</p> + </item> + <item> + <p> + 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.</p> + <p> + Own Id: OTP-12325</p> + </item> + </list> + </section> + +</section> + <section><title>Kernel 3.0.3</title> <section><title>Fixed Bugs and Malfunctions</title> 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 |