10: Upgrade Aeron to 1.22.0 r=bspeice a=bspeice

bors r+

Co-authored-by: Bradlee Speice <bradlee@speice.io>
pull/11/head
bors[bot] 2019-10-10 01:32:04 +00:00 committed by GitHub
commit 6f762fa1e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@
Cargo.lock
.idea/
*.swp

View File

@ -1,6 +1,6 @@
[package]
name = "aeron_driver-sys"
version = "0.1.0+1.21.2"
version = "0.1.0+1.22.0"
authors = ["Bradlee Speice <bradlee@speice.io>"]
edition = "2018"
links = "aeron_driver"

@ -1 +1 @@
Subproject commit f3417fd5fb4002d7e3c9c8110f42c6542dee5945
Subproject commit 9be2459eeb890033de630d6f0662e7ce6b06dd9c

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, 21);
assert_eq!(patch, 2);
assert_eq!(minor, 22);
assert_eq!(patch, 0);
}
}