Skip to content

Release 0.10.0 #171

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Dec 10, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions History.rdoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
=== Net::LDAP 0.10.0
* Major enhancements:
* Accept SimpleTLS/StartTLS encryption options (compatible with `OpenSSL::SSL::SSLContext#set_params`)
* Bug fixes:
* Parse filter strings with square and curly braces (`[]` and `{}`)
* Handle connection timeout errors (`Errno::ETIMEDOUT` raised as `Net::LDAP::LdapError`)
* Testing changes:
* Add integration tests for StartTLS connections to OpenLDAP
* Meta changes:
* Update Gem release tooling (remove Hoe, use Rake)
* Fix Gem release date

=== Net::LDAP 0.9.0
* Major changes:
* Dropped support for ruby 1.8.7, ruby >= 1.9.3 now required
Expand Down
4 changes: 2 additions & 2 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ Simply require either 'net-ldap' or 'net/ldap'.

This section is for gem maintainers to cut a new version of the gem.

* Update lib/html/pipeline/version.rb to next version number X.X.X following {semver}(http://semver.org/).
* Update CHANGELOG.md. Get latest changes with `git log --oneline vLAST_RELEASE..HEAD | grep Merge`
* Update lib/net/ldap/version.rb to next version number X.X.X following {semver}(http://semver.org/).
* Update `History.rdoc`. Get latest changes with `git log --oneline vLAST_RELEASE..HEAD | grep Merge`
* On the master branch, run `script/release`

:include: Contributors.rdoc
Expand Down
2 changes: 1 addition & 1 deletion lib/net/ldap/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Net
class LDAP
VERSION = "0.9.0"
VERSION = "0.10.0"
end
end