Update Aeron to 1.26.0

pull/25/head
Bradlee Speice 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"

@ -1 +1 @@
Subproject commit 6d959c2369c345ac177bd3ecc177dc672944af11
Subproject commit f65568333918e5bf178b766fb52bfdda3f2e83b7

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);
}
}