1
0

about Semantic Versioning Syntax

This commit is contained in:
EAimTY 2023-02-05 18:32:32 +09:00
parent d1382b5d56
commit feb0eaea66

View File

@ -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