diff --git a/History.txt b/History.txt index 8fb761f..8cc3481 100644 --- a/History.txt +++ b/History.txt @@ -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. * Ruby 1.9 support added. * Ruby 1.8.6 and below support removed. If we can figure out a compatible way diff --git a/lib/net/ldap.rb b/lib/net/ldap.rb index 193786e..13657a9 100644 --- a/lib/net/ldap.rb +++ b/lib/net/ldap.rb @@ -233,9 +233,9 @@ module Net # 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. class LDAP - class LdapError < StandardError; end + VERSION = "0.1.1" - VERSION = "0.1.0" + class LdapError < StandardError; end SearchScope_BaseObject = 0 SearchScope_SingleLevel = 1