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