Bumped version number to 0.10.0.
This commit is contained in:
parent
e7b5d5e9d1
commit
a8dc3c6502
2 changed files with 6 additions and 6 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -1,7 +1,7 @@
|
||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "irc"
|
name = "irc"
|
||||||
version = "0.9.2"
|
version = "0.10.0"
|
||||||
description = "A simple, thread-safe IRC client library."
|
description = "A simple, thread-safe IRC client library."
|
||||||
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
|
authors = ["Aaron Weiss <aaronweiss74@gmail.com>"]
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
|
@ -19,15 +19,15 @@ ssl = ["openssl"]
|
||||||
nochanlists = []
|
nochanlists = []
|
||||||
|
|
||||||
[dependencies.rustc-serialize]
|
[dependencies.rustc-serialize]
|
||||||
version = "~0.3.16"
|
version = "0.3.18"
|
||||||
|
|
||||||
[dependencies.time]
|
[dependencies.time]
|
||||||
version = "~0.1.34"
|
version = "0.1.34"
|
||||||
|
|
||||||
[dependencies.encoding]
|
[dependencies.encoding]
|
||||||
version = "~0.2.32"
|
version = "0.2.32"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[dependencies.openssl]
|
[dependencies.openssl]
|
||||||
version = "~0.7.0"
|
version = "0.7.6"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
|
@ -10,7 +10,7 @@ features. These are, however, strictly optional and can be disabled accordingly.
|
||||||
|
|
||||||
## Getting Started ##
|
## Getting Started ##
|
||||||
|
|
||||||
To start using this library with cargo, you can simply add `irc = "0.9.0"` to your dependencies to
|
To start using this library with cargo, you can simply add `irc = "0.10.0"` to your dependencies to
|
||||||
your Cargo.toml file. You'll likely want to take a look at some of the examples, as well as the
|
your Cargo.toml file. You'll likely want to take a look at some of the examples, as well as the
|
||||||
documentation. You'll also be able to find a small template to get a feel for the library.
|
documentation. You'll also be able to find a small template to get a feel for the library.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue