Compare commits

...

3 Commits

Author SHA1 Message Date
bors[bot] 4d673c32d4
Merge #27
27: 1.27.0 r=bspeice a=bspeice

bors r+

Co-authored-by: Bradlee Speice <bradlee@speice.io>
2020-04-07 22:33:18 +00:00
Bradlee Speice beb781962c Also update the manifest 2020-04-07 18:32:36 -04:00
Bradlee Speice 71737b4ef7 Update Aeron to 1.27.0 2020-04-07 18:31:38 -04:00
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.27.0"
authors = ["Bradlee Speice <bradlee@speice.io>"]
edition = "2018"
links = "aeron_driver"

@ -1 +1 @@
Subproject commit 6d959c2369c345ac177bd3ecc177dc672944af11
Subproject commit 165335804f2695ff264c4b2d83457779d3962286

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, 27);
assert_eq!(patch, 0);
}
}