Preparing for a quick fix release.
This commit is contained in:
parent
cfd9dbc922
commit
c3f991fdf8
|
@ -1,4 +1,7 @@
|
||||||
=== Net::LDAP 0.1.0 / 2010-03-08
|
=== Net::LDAP 0.1.1 / 2010-03-18
|
||||||
|
* Fixing a critical problem with sockets.
|
||||||
|
|
||||||
|
=== Net::LDAP 0.1.0 / 2010-03-17
|
||||||
* Small fixes throughout, more to come.
|
* Small fixes throughout, more to come.
|
||||||
* Ruby 1.9 support added.
|
* Ruby 1.9 support added.
|
||||||
* Ruby 1.8.6 and below support removed. If we can figure out a compatible way
|
* Ruby 1.8.6 and below support removed. If we can figure out a compatible way
|
||||||
|
|
|
@ -233,9 +233,9 @@ module Net
|
||||||
# to the server and then keeps it open while it executes a user-supplied block. Net::LDAP#open
|
# to the server and then keeps it open while it executes a user-supplied block. Net::LDAP#open
|
||||||
# closes the connection on completion of the block.
|
# closes the connection on completion of the block.
|
||||||
class LDAP
|
class LDAP
|
||||||
class LdapError < StandardError; end
|
VERSION = "0.1.1"
|
||||||
|
|
||||||
VERSION = "0.1.0"
|
class LdapError < StandardError; end
|
||||||
|
|
||||||
SearchScope_BaseObject = 0
|
SearchScope_BaseObject = 0
|
||||||
SearchScope_SingleLevel = 1
|
SearchScope_SingleLevel = 1
|
||||||
|
|
Loading…
Reference in a new issue