-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
63 lines (49 loc) · 1.33 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
0.4.3 (2013/03/09)
* Add rdoc to fix build on 1.8.7 and 1.9.2 *Moreno Carullo*
* Support ruby 2.0.0 on travis ci *Moreno Carullo*
0.4.2 (2012/10/11)
* Add valgrind support *Moreno Carullo*
* Clean gem dependencies *Moreno Carullo & Kenny J*
* Bye bye jeweler *Kenny J*
0.4.1 (2012/09/3)
* Adds travis ci support.
* Adds bundler support.
* First working version with rsolr 1.0.8.
0.4.0 (2011/6/21)
* solr 3.1 support
* RailsInstaller support
0.3.5 (2010/05/22)
* fix issue 3
* fix issue 4 (strict aliasing rule problem)
* 64 bit support (tested with cent os 5.x)
0.3.4 (2010/02/06)
* remove dependence on glibc byteswap.h
* a little performance improve
0.3.3 (2010/02/01)
* fix iterator false bug
* performance improve
* refactoring
0.3.2 (2010/01/25)
* windows 1.9.x build
* fix pure parser bug
0.3.1 (2010/01/22)
* performance improve (shared and frozen string when extern string).
0.3.0 (2010/01/19)
* windows build support
0.2.0 (2010/01/14)
* add rsolr/solr-ruby support
0.1.2 (2010/01/12)
* fix memory leak error (extern string).
Example.
# OK
x.times {
@parser = JavaBin.parser.new
@parser.parse(xxx...)
}
# BAD!
@parser = JavaBin.parser.new
x.times {
@parser.parse(xxx...)
}
* fix segv problem (extern string).
* ruby 1.8.7/1.9.2pre1 all green.