From feb0eaea663d4cf84b9b8f74be06225d5979c064 Mon Sep 17 00:00:00 2001 From: EAimTY Date: Sun, 5 Feb 2023 18:32:32 +0900 Subject: [PATCH] about Semantic Versioning Syntax --- tuic/README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/tuic/README.md b/tuic/README.md index 1d266d1..fa121a4 100644 --- a/tuic/README.md +++ b/tuic/README.md @@ -18,6 +18,23 @@ Some optional features that can be enabled: The root of the protocol abstraction is the [`Header`](https://docs.rs/tuic/latest/tuic/enum.Header.html). +## Semantic Versioning Syntax + +``` +5.0.0-rc0 +^ ^ ^ ^ +| | | |- Pre-release version +| | |---- Patch version, no breaking changes +| |------ Major version of a specific TUIC protocol version, may have breaking changes +|-------- TUIC protocol version +``` + +To avoid breaking changes, import `tuic` into `Cargo.toml` using: + +```toml +tuic = "5.0.*" +``` + ## License GNU General Public License v3.0