Fixing broken release

master
Rory OConnell 2012-02-15 11:54:46 -08:00
parent 373304d812
commit 3345c58dfb
3 changed files with 6 additions and 5 deletions

View File

@ -1,7 +1,11 @@
=== Net::LDAP 0.3.1 / 2012-02-15
* Bug Fixes:
* Bundler should now work again
=== Net::LDAP 0.3.0 / 2012-02-14 === Net::LDAP 0.3.0 / 2012-02-14
* Major changes: * Major changes:
* Now uses UTF-8 strings instead of ASCII-8 per the LDAP RFC * Now uses UTF-8 strings instead of ASCII-8 per the LDAP RFC
Major Enhancements: * Major Enhancements:
* Adding continuation reference processing * Adding continuation reference processing
* Bug Fixes: * Bug Fixes:
* Fixes usupported object type #139 * Fixes usupported object type #139

View File

@ -6,7 +6,6 @@ require 'hoe'
Hoe.plugin :doofus Hoe.plugin :doofus
Hoe.plugin :git Hoe.plugin :git
Hoe.plugin :gemspec Hoe.plugin :gemspec
Hoe.plugin :rubyforge
Hoe.spec 'net-ldap' do |spec| Hoe.spec 'net-ldap' do |spec|
spec.rubyforge_name = spec.name spec.rubyforge_name = spec.name

View File

@ -1,9 +1,7 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
$:.unshift './lib'
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = %q{net-ldap} s.name = %q{net-ldap}
s.version = Net::LDAP::VERSION s.version = "0.3.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= 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.authors = ["Francis Cianfrocca", "Emiel van de Laar", "Rory O'Connell", "Kaspar Schiess", "Austin Ziegler"]