-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
87 lines (79 loc) · 2.38 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
VERSION: 2.0.0
--------------
ahocorasick:
* Added memory pool to make a copy of input patterns
* Added replace functions
* Improved memory re-allocation techniques
* Re-factored
multifast:
* Re-factored the code
* Added replace capability
examples:
* Added an example for replace functionality
VERSION: 1.4.2
--------------
ahocorasick:
* changed default memory re-allocation step to 1 to save memory
multifast:
* Re-factoring the code: moved prototypes to multifast header
examples:
* Added example3
VERSION: 1.3.1
--------------
ahocorasick:
* Added new search interface: settext/findnext
* modified ac_automata_search() and ac_automata_init() interfaces.
* Re-factoring the code: organized header include; renaming; changed code writing style
multifast:
* Re-factoring the code: renaming; changed code writing style
examples:
* Added example0
* rewrite example1 and example2 in order to be more illustrative
VERSION: 1.0.0
--------------
ahocorasick:
* Improving documentation
* Changing return value of ac_automata_search()
* Renaming some type names (_t)
* Renaming some function names
* Removing config.h
* Doing some other houcekeeping tasks
multifast:
* Accepting multiple input file
* Searching directory recursively
* Changing/improving command-line options
* Making new syntax for pattern file (ASCII/HEX pattern definition)
* Improving output display
* Removeing working mode (unnecessary) options
* Adding some documentations
* Doing some other houcekeeping tasks
examples:
* New example added (example2)
* Some comments added/improved to examle1
VERSION: 0.6.2
--------------
ahocorasick:
* Automata reset bug fixed (thanks to zhuo yan)
VERSION: 0.6.0 (buggy)-eliminated
---------------------------------
ahocorasick:
* Wrong final state bug fixed (thanks to zhuo yan)
* Handle duplicate input strings
* ACERR_STRING_CLOSED added
multifast:
* Handle ACERR_STRING_CLOSED
* Duplicate string warning added
VERSION: 0.5.5 (buggy)
----------------------
aho_corasick:
* Add error code type (AC_ERROR)
* Add statistical variable 'total_strings' to AC_AUTOMATA
* Make the string ID an optional value
multifast:
* Report warning (AC_ERROR) while adding strings
* Add working mode options: PROG_MODE_ASCII_CS and PROG_MODE_ASCII_CI
example:
* Add some comments to example1.c
VERSION: 0.5.0 (buggy)
--------------
Original Release