diff --git a/c/include/libsbp/version.h b/c/include/libsbp/version.h index 9d95c9b6b6..af764336f8 100644 --- a/c/include/libsbp/version.h +++ b/c/include/libsbp/version.h @@ -25,10 +25,10 @@ /** Protocol minor version. */ #define SBP_MINOR_VERSION 0 /** Protocol patch version. */ -#define SBP_PATCH_VERSION 3 +#define SBP_PATCH_VERSION 4 /** Full SBP version string. */ -#define SBP_VERSION "5.0.4-alpha" +#define SBP_VERSION "5.0.4" /** Is this a staging branch? */ #define SBP_STAGING 0 diff --git a/haskell/sbp.cabal b/haskell/sbp.cabal index 88902f692d..d019983754 100644 --- a/haskell/sbp.cabal +++ b/haskell/sbp.cabal @@ -1,5 +1,5 @@ name: sbp -version: 5.0.3-alpha +version: 5.0.4 synopsis: SwiftNav's SBP Library homepage: https://github.com/swift-nav/libsbp license: MIT @@ -173,4 +173,4 @@ test-suite test , tasty , tasty-hunit ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall - default-language: Haskell2010 + default-language: Haskell2010 \ No newline at end of file diff --git a/javascript/sbp/RELEASE-VERSION b/javascript/sbp/RELEASE-VERSION index a8a5353f80..553fe87a05 100644 --- a/javascript/sbp/RELEASE-VERSION +++ b/javascript/sbp/RELEASE-VERSION @@ -1 +1 @@ -5.0.4-alpha \ No newline at end of file +5.0.4 \ No newline at end of file diff --git a/jsonschema/MsgFileioReadDirResp.json b/jsonschema/MsgFileioReadDirResp.json index 4e7ba774cf..acb84f5fac 100644 --- a/jsonschema/MsgFileioReadDirResp.json +++ b/jsonschema/MsgFileioReadDirResp.json @@ -17,7 +17,7 @@ "type": "object", "properties": { "sequence": {"type": "integer"}, - "contents": {"type": "array", "items": {"type": "integer"}} + "contents": {"type": "string"} }, "required": [ "sequence", diff --git a/package-lock.json b/package-lock.json index 749b65e4cf..83a6a96d87 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sbp", - "version": "5.0.4-alpha", + "version": "5.0.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sbp", - "version": "5.0.4-alpha", + "version": "5.0.4", "license": "MIT", "dependencies": { "binary-parser": "^1.7.0", diff --git a/package.json b/package.json index f8f4ab1a81..789abe3257 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sbp", - "version": "5.0.4-alpha", + "version": "5.0.4", "description": "libsbp bindings for JavaScript. More information here: http://swift-nav.github.io/libsbp/", "files": [ "javascript/*", diff --git a/python/sbp/RELEASE-VERSION b/python/sbp/RELEASE-VERSION index 50e2274e6d..553fe87a05 100644 --- a/python/sbp/RELEASE-VERSION +++ b/python/sbp/RELEASE-VERSION @@ -1 +1 @@ -5.0.3 +5.0.4 \ No newline at end of file diff --git a/rust/sbp/Cargo.toml b/rust/sbp/Cargo.toml index 4dfb263966..e35a435010 100644 --- a/rust/sbp/Cargo.toml +++ b/rust/sbp/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp" -version = "5.0.4-alpha" +version = "5.0.4" description = "Rust native implementation of SBP (Swift Binary Protocol) for communicating with devices made by Swift Navigation" authors = ["Swift Navigation "] repository = "https://github.com/swift-nav/libsbp" diff --git a/rust/sbp2json/Cargo.toml b/rust/sbp2json/Cargo.toml index 35c00a00b4..77c9bef643 100644 --- a/rust/sbp2json/Cargo.toml +++ b/rust/sbp2json/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp2json" -version = "5.0.4-alpha" +version = "5.0.4-unreleased" repository = "https://github.com/swift-nav/libsbp" description = "Rust native implementation of SBP (Swift Binary Protocol) to JSON conversion tools" authors = ["Swift Navigation "]