Bump version for append_with_date

This commit is contained in:
Jon Gjengset 2020-12-15 08:29:57 -08:00
parent ee56c8e42b
commit 3386c26711
No known key found for this signature in database
GPG key ID: 3CB1EC545A706318
2 changed files with 16 additions and 4 deletions

View file

@ -11,6 +11,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed ### Removed
## [2.4.0] - 2020-12-15
### Added
- `append_with_flags_and_date` (#174)
## [2.3.0] - 2020-08-23
### Added
- `append_with_flags` (#171)
## [2.2.0] - 2020-07-27 ## [2.2.0] - 2020-07-27
### Added ### Added
@ -24,5 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- MSRV increased - MSRV increased
- Better documentation of server greeting handling (#168) - Better documentation of server greeting handling (#168)
[Unreleased]: https://github.com/jonhoo/rust-imap/compare/v2.2.0...HEAD [Unreleased]: https://github.com/jonhoo/rust-imap/compare/v2.4.0...HEAD
[2.4.0]: https://github.com/jonhoo/rust-imap/compare/v2.2.0...v2.4.0
[2.3.0]: https://github.com/jonhoo/rust-imap/compare/v2.2.0...v2.3.0
[2.2.0]: https://github.com/jonhoo/rust-imap/compare/v2.1.2...v2.2.0 [2.2.0]: https://github.com/jonhoo/rust-imap/compare/v2.1.2...v2.2.0

View file

@ -1,6 +1,6 @@
[package] [package]
name = "imap" name = "imap"
version = "2.3.0" version = "2.4.0"
authors = ["Matt McCoy <mattnenterprise@yahoo.com>", authors = ["Matt McCoy <mattnenterprise@yahoo.com>",
"Jon Gjengset <jon@thesquareplanet.com>"] "Jon Gjengset <jon@thesquareplanet.com>"]
documentation = "https://docs.rs/imap/" documentation = "https://docs.rs/imap/"
@ -31,14 +31,14 @@ regex = "1.0"
bufstream = "0.1" bufstream = "0.1"
imap-proto = "0.10.0" imap-proto = "0.10.0"
nom = "5.0" nom = "5.0"
base64 = "0.12" base64 = "0.13"
chrono = "0.4" chrono = "0.4"
lazy_static = "1.4" lazy_static = "1.4"
[dev-dependencies] [dev-dependencies]
lettre = "0.9" lettre = "0.9"
lettre_email = "0.9" lettre_email = "0.9"
rustls-connector = "0.12.0" rustls-connector = "0.13.0"
[[example]] [[example]]
name = "basic" name = "basic"