From a102054bbf58edcff52e7c1265a46d8fec5fe82f Mon Sep 17 00:00:00 2001 From: Rory OConnell Date: Tue, 28 Feb 2012 21:29:02 -0800 Subject: [PATCH] Version bump --- lib/net/ber.rb | 2 +- lib/net/ldap.rb | 2 +- lib/net/snmp.rb | 2 +- net-ldap.gemspec | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/net/ber.rb b/lib/net/ber.rb index 54c41eb..1445470 100644 --- a/lib/net/ber.rb +++ b/lib/net/ber.rb @@ -106,7 +106,7 @@ module Net # :nodoc: # BMPStringC30: 62 (0x3e, 0b00111110) # module BER - VERSION = '0.3.0' + VERSION = '0.4.0' ## # Used for BER-encoding the length and content bytes of a Fixnum integer diff --git a/lib/net/ldap.rb b/lib/net/ldap.rb index d154f90..725d560 100644 --- a/lib/net/ldap.rb +++ b/lib/net/ldap.rb @@ -241,7 +241,7 @@ require 'net/ldap/entry' # and then keeps it open while it executes a user-supplied block. # Net::LDAP#open closes the connection on completion of the block. class Net::LDAP - VERSION = "0.3.0" + VERSION = "0.4.0" class LdapError < StandardError; end diff --git a/lib/net/snmp.rb b/lib/net/snmp.rb index 2257b20..98f2df3 100644 --- a/lib/net/snmp.rb +++ b/lib/net/snmp.rb @@ -2,7 +2,7 @@ # :stopdoc: module Net class SNMP - VERSION = '0.3.0' + VERSION = '0.4.0' AsnSyntax = Net::BER.compile_syntax({ :application => { diff --git a/net-ldap.gemspec b/net-ldap.gemspec index 34b71a8..03b8264 100644 --- a/net-ldap.gemspec +++ b/net-ldap.gemspec @@ -1,11 +1,11 @@ # -*- encoding: utf-8 -*- Gem::Specification.new do |s| s.name = %q{net-ldap} - s.version = "0.3.2" + s.version = "0.4.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Francis Cianfrocca", "Emiel van de Laar", "Rory O'Connell", "Kaspar Schiess", "Austin Ziegler"] - s.date = %q{2011-03-17} + s.date = %q{2012-02-28} s.description = %q{Net::LDAP for Ruby (also called net-ldap) implements client access for the Lightweight Directory Access Protocol (LDAP), an IETF standard protocol for accessing distributed directory services. Net::LDAP is written completely in