From 68b804f34d4ec420d86953e3f519179a40fbee8f Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Tue, 29 Jan 2013 11:38:41 +0100 Subject: Prepare release --- lib/asn1/doc/src/notes.xml | 67 ++++++++++++++++++++++++++++++++++++++++++++++ lib/asn1/vsn.mk | 2 +- 2 files changed, 68 insertions(+), 1 deletion(-) (limited to 'lib/asn1') diff --git a/lib/asn1/doc/src/notes.xml b/lib/asn1/doc/src/notes.xml index 72b496caf7..da0812f000 100644 --- a/lib/asn1/doc/src/notes.xml +++ b/lib/asn1/doc/src/notes.xml @@ -31,6 +31,73 @@

This document describes the changes made to the asn1 application.

+
Asn1 2.0 + +
Fixed Bugs and Malfunctions + + +

+ Encoding SEQUENCEs with multiple extension addition + groups with optional values could fail (depending both on + the specification and whether all values were provided).

+

+ Own Id: OTP-10664

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

The options for the ASN.1 compiler has been + drastically simplified. The backend is chosen by using + ber, per, or uper. The options + optimize, nif, and driver are no + longer needed. The old options will still work, but will + issue a warning.

+

Another change is that generated encode/2 + function will always return a binary (some backends used + to return an iolist).

+

+ *** POTENTIAL INCOMPATIBILITY ***

+

+ Own Id: OTP-10410 Aux Id: kunagi-254 [165]

+
+ +

+ The ASN.1 compiler generates faster decode functions for + PER and UPER. Some minor improvements have also been made + for PER/UPER encoding, and to the BER backend.

+

+ Own Id: OTP-10519 Aux Id: kunagi-322 [233]

+
+ +

The ASN.1 compiler will now always include necessary + run-time functions in the generated Erlang modules + (except for asn1rt_nif which is still neeeded). If + the option 'inline' is used the ASN.1 compiler + will generate a warning. But if + '{inline,OutputFile}' is use, the ASN.1 compiler + will refuse to compile the file. (Use a .set.asn + file if you need to remove the output file.)

+

The 'BIT STRING' type will now be decoded as + Erlang bitstrings by default. Use the new + legacy_bit_string option to encode as lists of + ones and zeroes. (The compact_bit_string option + still works as before.)

+

Open types are now always returned as binaries (when + there is no information allowing them to be decoded).

+

+ *** POTENTIAL INCOMPATIBILITY ***

+

+ Own Id: OTP-10588 Aux Id: kunagi-341 [252]

+
+
+
+ +
+
Asn1 1.8
Fixed Bugs and Malfunctions diff --git a/lib/asn1/vsn.mk b/lib/asn1/vsn.mk index 81288496e9..8f4f68c855 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 = 1.8 +ASN1_VSN = 2.0 -- cgit v1.2.3