Bump versions.
[libtasn1.git] / NEWS
blobd9aeb3ad4838586855634548a60869e75d355af1
1 Version 1.3 (unreleased)
2 - Update gnulib files.
4 Version 1.2 (released 2007-12-10)
5 - Update gnulib files.
7 Version 1.1 (released 2007-08-31)
8 - Fix bug that made asn1_check_version believe that 1.0 is older than 0.3.10.
10 Version 1.0 (released 2007-08-31)
11 - The self-tests, command line tools and build infrastructure have
12   been re-licensed from GPLv2 to GPLv3.
13 - Doc fixes.
14 - Update gnulib files.
16 Version 0.3.10 (released 2007-05-25)
17 - Update gnulib files.
19 Version 0.3.9 (released 2007-03-02)
20 - In generated code, config.h is pulled in if HAVE_CONFIG_H.
21 - Development changes: changed from CVS to GIT as an experiment.
22   I push my changes to <http://repo.or.cz/w/libtasn1.git>.
23 - Autoconf 2.61 and automake 1.10 is required.
25 Version 0.3.8 (released 2006-11-16)
26 - Fix reading of binary files in asn1Decoding, for Windows.
28 Version 0.3.7 (released 2006-10-19)
29 - When asn1_der_coding encoded a TYPE_NULL and the output buffer is
30   NULL, it would not increment the counter properly, so the size of
31   the required buffer would be off by one.  Fixed.  Reported by
32   Stephen Wrobleski <steve@localtoast.org>.
33 - Fix configure to respect user-definable flags.  Reported by "Diego
34   'Flameeyes' Pettenò" <flameeyes@gentoo.org>.
35 - The --help and --version outputs from the tools have been improved.
37 Version 0.3.6 (released 2006-08-13)
38 - Fix man pages to use \- instead of - for negative signs (as in "-1").
39 - Add -I's when building in src/, so that unistd.h etc is found on
40   systems that doesn't have them.
41 - Valgrind isn't used for cross-compilation by default, and there is
42   also --disable-valgrind-tests to unconditionally disable it.
43 - Valgrind is invoked without parameters, put things you like into
44   ~/.valgrindrc instead.
46 Version 0.3.5 (released 2006-06-27)
47 - Fix asn1_octet_der to handle writes of zero-length buffers, before
48   it did not write the ASN.1 length for a zero-length buffer.  This caused
49   ASN.1 encodings to be incorrect on 64-bit platforms.
50 - Add self test that attempt to trigger the above bug.
51 - Fix test of -Wno-pointer-sign.
52 - Improve cross-compilation to MinGW by using AC_LIBTOOL_WIN32_DLL.
54 Version 0.3.4 (released 2006-05-10)
55 - Really fix encodings.
56 - Add new self test, tests/Test_encoding.c.
57 - Self tests are ran under valgrind, if it is available.
58 - We test for the -Wno-pointer-sign parameter before using it.
60 Version 0.3.3 (released 2006-05-07)
61 - Add some 'const' to prototypes.
62 - Remove some 'unsigned' keywords.
63 - Corrected asn1_der_coding() bug introduced when it became reentrant.
64   Now it produces correct encodings.
66 Version 0.3.2
67 - Corrected bug in asn1_der_coding() which overwrited some
68   data in the original structure.
69 - The asn1Parser, asn1Coding and asn1Decoding programs are now installed.
71 Version 0.3.1
72 - Support constant size bit strings, as in 'BIT STRING (SIZE(42))'.
73   Reported by Cyril Holweck <cyril.holweck@q-free.com>.
74 - Add two more APIs required by GnuTLS.
75 - New public APIs:
76   asn1_find_node function
77   asn1_copy_node
79 Version 0.3.0
80 - Export DER utility functions, mostly so that GnuTLS can avoid using
81   libtasn1 internals.
82 - The _asn1* symbols are not exported in the shared library file (when
83   using GNU ld).
84 - The library can now be built using Visual Studio, and the project
85   files are included in windows/.
86 - New public APIs:
87   asn1_get_tag_der
88   asn1_octet_der
89   asn1_get_octet_der
90   asn1_bit_der
91   asn1_get_bit_der
92   asn1_get_length_der
93   asn1_length_der
95 Version 0.2.18
96 - Fix out-of-bounds access in DER decoding, reported by Evgeny Legerov.
97 - Add 'const' keyword to some prototypes, thanks to Frediano ZIGLIO.
98 - Fixed typo in src/Makefile.am to make it build with objdir != srcdir,
99   thanks to Bernard Leak.
100 - Update of gnulib files.
101 - Typo fixes in comments, e.g. finish libasn1 to libtasn1 renaming,
102   use LGPL boiler plate on some files in lib/.
104 Version 0.2.17
105 - Fixed typo to make it build.
107 Version 0.2.16
108 - Version script added again.
110 Version 0.2.15
111 - Gnulib is used to implement memmove if your system does not have it.
112 - Simplified assert/error handling slightly.
114 Version 0.2.14
115 - Some build fixes.
116 - Pkg-config script 'libtasn1.pc' added.
117 - Postal address to FSF in license updated.
119 Version 0.2.13
120 - Version number in libtasn1.h updated properly.
122 Version 0.2.12
123 - Manual converted to Texinfo format.
124 - Manual in GTK-DOC and DevHelp formats added.
125 - Man pages for all functions added.
126 - Various internal cleanups.
128 Version 0.2.11
129 - Added the self test with "make check" target
130 - Added management of ANY type with null length
131 - Corrected some writes to invalid data.
133 Version 0.2.10
134 - Added scripts to assist in libtasn1 version detection
135   from configure scripts.
136 - Corrected a DER decoding bug which was reported
137   by Max Vozeler <max@hinterhof.net>.
139 Version 0.2.9
140 - Accept negative numbers as range in INTEGER declarations
142 Version 0.2.8
143 - Add asn1_delete_element function
145 Version 0.2.7
146 - Added versioned symbols.
148 Version 0.2.6
149 - ASN.1 parser accepts these kinds of integer definitions:
150   "INTEGER (5 | 10)" and
151   "INTEGER (5)"
152 - Comments start at "--" and finish at the "end of line" or
153   with another "--". 
155 Version 0.2.5
156 - Bug fix in ordering procedure for SET OF and SEQUENCE OF
157   types coding.
158 - Manage structured format (BER encoding) in
159   asn1_der_decoding, asn1_decoding_element and 
160   asn1_der_decoding_startEnd for OCTET STRING type.
161 - Manage SEQUENCE and SET empty structure. 
162 - Manage "indefinite length method" in asn1_der_decoding,
163   asn1_decoding_element and asn1_der_decoding_startEnd 
164   for the following types:
165   SEQUENCE, SEQUENCE OF, SET, and SET OF.
166 - Bug fix in asn1_read_value with NULL parameter in case
167   of BIT STRING
169 Version 0.2.4
170 - Bug fix in asn1_der_coding with NULL parameter
171 - Manage DEFAULT option with OBJECT IDENTIFIER
173 Version 0.2.3
174 - Chenge asn1_find_structure_from_oid prototype
175 - Chenge asn1_find_structure_from_oid prototype
176 - Add ASN1_MEM_ALLOC_ERROR return value
178 Version 0.2.2
179 - Add vector length check in asn1_der_coding function
180 - Add vector length check in asn1_der_coding function
181 - Add vector length check in asn1_read_value function
182 - Add asn1_check_version function
184 Version 0.2.1
185 - Add asn1_find_structure_from_oid function
186 - Add asn1_read_tag function
188 Version 0.2.0
189 - Support for other platforms
190 - Change asn1_create_element function interface (dest_name not needed any more)
191 - Change OBJECT IDENTIFIER syntax: numbers must be separated by dot in 
192   asn1_write_element and asn1_read_element functions (e.g. "1.2.3.4")
194 Version 0.1.2
195 - Added GeneralString type
196 - Fixed a DER encoding bug when nested tags are used
198 Version 0.1.1
199 - Renamed to libtasn1
200 - Functions which return a string for error description
201   now accept a NULL argument.
202 - License is now GNU Lesser GPL
204 Version 0.1.0
205 - Initial release