Add dates for releases.
[libtasn1.git] / NEWS
blob52c55e229e834a075b36da45b961d3626976f78b
1 Version 0.3.3 (unreleased)
2 - Add some 'const' to prototypes.
3 - Remove some 'unsigned' keywords.
4 - Corrected asn1_der_coding() bug introduced when it became reentrant.
5   Now it produces correct encodings.
7 Version 0.3.2
8 - Corrected bug in asn1_der_coding() which overwrited some
9   data in the original structure.
10 - The asn1Parser, asn1Coding and asn1Decoding programs are now installed.
12 Version 0.3.1
13 - Support constant size bit strings, as in 'BIT STRING (SIZE(42))'.
14   Reported by Cyril Holweck <cyril.holweck@q-free.com>.
15 - Add two more APIs required by GnuTLS.
16 - New public APIs:
17   asn1_find_node function
18   asn1_copy_node
20 Version 0.3.0
21 - Export DER utility functions, mostly so that GnuTLS can avoid using
22   libtasn1 internals.
23 - The _asn1* symbols are not exported in the shared library file (when
24   using GNU ld).
25 - The library can now be built using Visual Studio, and the project
26   files are included in windows/.
27 - New public APIs:
28   asn1_get_tag_der
29   asn1_octet_der
30   asn1_get_octet_der
31   asn1_bit_der
32   asn1_get_bit_der
33   asn1_get_length_der
34   asn1_length_der
36 Version 0.2.18
37 - Fix out-of-bounds access in DER decoding, reported by Evgeny Legerov.
38 - Add 'const' keyword to some prototypes, thanks to Frediano ZIGLIO.
39 - Fixed typo in src/Makefile.am to make it build with objdir != srcdir,
40   thanks to Bernard Leak.
41 - Update of gnulib files.
42 - Typo fixes in comments, e.g. finish libasn1 to libtasn1 renaming,
43   use LGPL boiler plate on some files in lib/.
45 Version 0.2.17
46 - Fixed typo to make it build.
48 Version 0.2.16
49 - Version script added again.
51 Version 0.2.15
52 - Gnulib is used to implement memmove if your system does not have it.
53 - Simplified assert/error handling slightly.
55 Version 0.2.14
56 - Some build fixes.
57 - Pkg-config script 'libtasn1.pc' added.
58 - Postal address to FSF in license updated.
60 Version 0.2.13
61 - Version number in libtasn1.h updated properly.
63 Version 0.2.12
64 - Manual converted to Texinfo format.
65 - Manual in GTK-DOC and DevHelp formats added.
66 - Man pages for all functions added.
67 - Various internal cleanups.
69 Version 0.2.11
70 - Added the self test with "make check" target
71 - Added management of ANY type with null length
72 - Corrected some writes to invalid data.
74 Version 0.2.10
75 - Added scripts to assist in libtasn1 version detection
76   from configure scripts.
77 - Corrected a DER decoding bug which was reported
78   by Max Vozeler <max@hinterhof.net>.
80 Version 0.2.9
81 - Accept negative numbers as range in INTEGER declarations
83 Version 0.2.8
84 - Add asn1_delete_element function
86 Version 0.2.7
87 - Added versioned symbols.
89 Version 0.2.6
90 - ASN.1 parser accepts these kinds of integer definitions:
91   "INTEGER (5 | 10)" and
92   "INTEGER (5)"
93 - Comments start at "--" and finish at the "end of line" or
94   with another "--". 
96 Version 0.2.5
97 - Bug fix in ordering procedure for SET OF and SEQUENCE OF
98   types coding.
99 - Manage structured format (BER encoding) in
100   asn1_der_decoding, asn1_decoding_element and 
101   asn1_der_decoding_startEnd for OCTET STRING type.
102 - Manage SEQUENCE and SET empty structure. 
103 - Manage "indefinite length method" in asn1_der_decoding,
104   asn1_decoding_element and asn1_der_decoding_startEnd 
105   for the following types:
106   SEQUENCE, SEQUENCE OF, SET, and SET OF.
107 - Bug fix in asn1_read_value with NULL parameter in case
108   of BIT STRING
110 Version 0.2.4
111 - Bug fix in asn1_der_coding with NULL parameter
112 - Manage DEFAULT option with OBJECT IDENTIFIER
114 Version 0.2.3
115 - Chenge asn1_find_structure_from_oid prototype
116 - Chenge asn1_find_structure_from_oid prototype
117 - Add ASN1_MEM_ALLOC_ERROR return value
119 Version 0.2.2
120 - Add vector length check in asn1_der_coding function
121 - Add vector length check in asn1_der_coding function
122 - Add vector length check in asn1_read_value function
123 - Add asn1_check_version function
125 Version 0.2.1
126 - Add asn1_find_structure_from_oid function
127 - Add asn1_read_tag function
129 Version 0.2.0
130 - Support for other platforms
131 - Change asn1_create_element function interface (dest_name not needed any more)
132 - Change OBJECT IDENTIFIER syntax: numbers must be separated by dot in 
133   asn1_write_element and asn1_read_element functions (e.g. "1.2.3.4")
135 Version 0.1.2
136 - Added GeneralString type
137 - Fixed a DER encoding bug when nested tags are used
139 Version 0.1.1
140 - Renamed to libtasn1
141 - Functions which return a string for error description
142   now accept a NULL argument.
143 - License is now GNU Lesser GPL
145 Version 0.1.0
146 - Initial release