mistake in docs!

This commit is contained in:
abbie 2022-03-12 20:53:17 +00:00
parent 6c4028e48c
commit 1825e0caeb
No known key found for this signature in database
GPG key ID: 04DDE463F9200F87
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
[package]
name = "packeteer"
description = "An attempt at a Rust library that can be used to assist in programmatically analysing, serving and handling received protocol packets."
version = "0.2.0"
version = "0.2.1"
edition = "2021"
authors = ["Celeste <colean@colean.cc>"]
license = "LGPL-3.0-or-later"

View file

@ -7,7 +7,7 @@
//! To include packeteer in your project, you'll need to enable the modules you need. For example, if you required the usage of the http1 module, you would add the following to your `Cargo.toml` file:
//!
//! ```toml
//! packeteer = { version = "0.1", features = ["http1"] }
//! packeteer = { version = "0.2", features = ["http1"] }
//! ```
//!
//! It's safe to use ambigious version numbers that exclude the bugfix number as breaking changes or new features will result in an increment of the minor version number, or possibly major version number in the future.