1
0
mirror of https://github.com/bspeice/aeron-rs synced 2025-12-17 18:46:11 -05:00

Update Aeron to 1.26.0

This commit is contained in:
2020-03-07 19:01:59 -05:00
parent c0de7f580e
commit 4e1cfd5e05
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "aeron-driver-sys"
version = "1.0.0+1.25.1"
version = "1.0.0+1.26.0"
authors = ["Bradlee Speice <bradlee@speice.io>"]
edition = "2018"
links = "aeron_driver"

View File

@ -13,7 +13,7 @@ mod tests {
let minor = unsafe { crate::aeron_version_minor() };
let patch = unsafe { crate::aeron_version_patch() };
assert_eq!(major, 1);
assert_eq!(minor, 25);
assert_eq!(patch, 1);
assert_eq!(minor, 26);
assert_eq!(patch, 0);
}
}