Skip to content

Commit

Permalink
Update implemntation class UID and version name
Browse files Browse the repository at this point in the history
- specify patch version in implementation version name
  • Loading branch information
Enet4 committed Oct 30, 2024
1 parent ec178ec commit ad4bf57
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
10 changes: 6 additions & 4 deletions object/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,15 @@ use std::path::Path;
///
/// Automatically generated as per the standard, part 5, section B.2.
///
/// This UID is subject to changes in future versions.
pub const IMPLEMENTATION_CLASS_UID: &str = "2.25.130984950029899771041107395941696826170";
/// This UID may change in future versions,
/// even between patch versions.
pub const IMPLEMENTATION_CLASS_UID: &str = "2.25.139623901558105915656014294038307328623";

/// The current implementation version name generically referring to DICOM-rs.
///
/// This names is subject to changes in future versions.
pub const IMPLEMENTATION_VERSION_NAME: &str = "DICOM-rs 0.6";
/// This name may change in future versions,
/// even between patch versions.
pub const IMPLEMENTATION_VERSION_NAME: &str = "DICOM-rs 0.7.2";

/// Trait type for a DICOM object.
/// This is a high-level abstraction where an object is accessed and
Expand Down
10 changes: 6 additions & 4 deletions ul/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,15 @@ pub mod pdu;
///
/// Automatically generated as per the standard, part 5, section B.2.
///
/// This UID is subject to changes in future versions.
pub const IMPLEMENTATION_CLASS_UID: &str = "2.25.130984950029899771041107395941696826170";
/// This UID may change in future versions,
/// even between patch versions.
pub const IMPLEMENTATION_CLASS_UID: &str = "2.25.139623901558105915656014294038307328623";

/// The current implementation version name generically referring to DICOM-rs.
///
/// This names is subject to changes in future versions.
pub const IMPLEMENTATION_VERSION_NAME: &str = "DICOM-rs 0.6";
/// This name may change in future versions,
/// even between patch versions.
pub const IMPLEMENTATION_VERSION_NAME: &str = "DICOM-rs 0.7.2";

// re-exports

Expand Down

0 comments on commit ad4bf57

Please sign in to comment.