Skip to content

Commit da86d13

Browse files
committed
feat: v2.0.1
1 parent b044500 commit da86d13

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compare_version"
3-
version = "2.0.0"
3+
version = "2.0.1"
44
readme = "README.md"
55
edition = "2024"
66
authors = ["root@ltpp.vip"]

src/lib.rs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@
33
//! A Rust library for comparing semantic versioning
44
//! strings and checking version compatibility.
55
6-
pub(crate) mod r#enum;
7-
pub(crate) mod r#impl;
8-
pub(crate) mod r#struct;
9-
6+
mod r#enum;
7+
mod r#impl;
8+
mod r#struct;
109
#[cfg(test)]
1110
mod test;
1211

1312
pub use {r#enum::*, r#struct::*};
1413

15-
pub(crate) use std::fmt;
14+
use std::fmt;

0 commit comments

Comments
 (0)