Skip to content

Commit

Permalink
Functionality for comparing EVRs / versions
Browse files Browse the repository at this point in the history
  • Loading branch information
dralley committed May 25, 2024
1 parent 9ed36e3 commit 6be79e8
Show file tree
Hide file tree
Showing 3 changed files with 640 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- `FileOptions::verify()`
- Added `EVR` struct and `rpm_evr_compare` function for comparing RPM versions.

### Changed

Expand Down
3 changes: 3 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,9 @@ pub use crate::errors::*;
pub(crate) mod constants;
pub use crate::constants::*;

mod version;
pub use crate::version::*;

mod rpm;
pub use crate::rpm::*;

Expand Down
Loading

0 comments on commit 6be79e8

Please sign in to comment.