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 28, 2024
1 parent 9ed36e3 commit bc7b448
Show file tree
Hide file tree
Showing 4 changed files with 956 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitleaks.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[allowlist]
description = "Global Allowlist"

# Ignore based on any subset of the file path
paths = [
# Ignore some long path
'''tests\/assets\/signing_keys\/*$''',
]
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` and `Nevra` structs 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 bc7b448

Please sign in to comment.