Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
Up to version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ConradIrwin committed Jul 2, 2011
1 parent d547e3f commit 8c0f454
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -173,6 +173,10 @@ Before version 1, at least the following changes should be made:
4. Support SORT and THREAD.
5. Put the in-line documentation into a real format.

### Breaking Changes

Between Version 0.1(.x) and 0.2, the connection setup API changed. Previously you would call `EM::IMAP.connect`, now that is broken into two steps: `EM::IMAP.new` and `EM::IMAP::Client#connect` as documented above. This makes it less likely people will write `client = connect.bind!` by accident, and allows you to bind to the `errback` of the connection as a whole should you wish to.

## Meta-foo

Em-imap is made available under the MIT license, see LICENSE.MIT for details
Expand Down
2 changes: 1 addition & 1 deletion em-imap.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |gem|
gem.name = 'em-imap'
gem.version = '0.1.1'
gem.version = '0.2'

gem.summary = 'An EventMachine based IMAP client.'
gem.description = "Allows you to connect to an IMAP4rev1 server in a non-blocking fashion."
Expand Down

0 comments on commit 8c0f454

Please sign in to comment.