File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1+ === Net::LDAP 0.10.0
2+ * Major enhancements:
3+ * Accept SimpleTLS/StartTLS encryption options (compatible with `OpenSSL::SSL::SSLContext#set_params`)
4+ * Bug fixes:
5+ * Parse filter strings with square and curly braces (`[]` and `{}`)
6+ * Handle connection timeout errors (`Errno::ETIMEDOUT` raised as `Net::LDAP::LdapError`)
7+ * Testing changes:
8+ * Add integration tests for StartTLS connections to OpenLDAP
9+ * Meta changes:
10+ * Update Gem release tooling (remove Hoe, use Rake)
11+ * Fix Gem release date
12+
113=== Net::LDAP 0.9.0
214* Major changes:
315 * Dropped support for ruby 1.8.7, ruby >= 1.9.3 now required
Original file line number Diff line number Diff line change @@ -41,8 +41,8 @@ Simply require either 'net-ldap' or 'net/ldap'.
4141
4242This section is for gem maintainers to cut a new version of the gem.
4343
44- * Update lib/html/pipeline /version.rb to next version number X.X.X following {semver}(http://semver.org/).
45- * Update CHANGELOG.md . Get latest changes with `git log --oneline vLAST_RELEASE..HEAD | grep Merge`
44+ * Update lib/net/ldap /version.rb to next version number X.X.X following {semver}(http://semver.org/).
45+ * Update `History.rdoc` . Get latest changes with `git log --oneline vLAST_RELEASE..HEAD | grep Merge`
4646* On the master branch, run `script/release`
4747
4848:include: Contributors.rdoc
Original file line number Diff line number Diff line change 11module Net
22 class LDAP
3- VERSION = "0.9 .0"
3+ VERSION = "0.10 .0"
44 end
55end
You can’t perform that action at this time.
0 commit comments