diff --git a/CHANGELOG.md b/CHANGELOG.md index f03635b81d..a97a7256b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [v5.0.8](https://github.com/swift-nav/libsbp/tree/v5.0.8) (2024-03-29) + +[Full Changelog](https://github.com/swift-nav/libsbp/compare/v5.0.7...v5.0.8) + +**Merged pull requests:** + +- Fix new clippy lints [\#1408](https://github.com/swift-nav/libsbp/pull/1408) ([pcrumley](https://github.com/pcrumley)) +- Add description for constellation identifier to bounds messages [\#1407](https://github.com/swift-nav/libsbp/pull/1407) ([IsakTjernberg](https://github.com/IsakTjernberg)) +- Add weeks behavior flag to MSG\_GNSS\_TIME\_OFFSET [\#1405](https://github.com/swift-nav/libsbp/pull/1405) ([jakalm](https://github.com/jakalm)) + ## [v5.0.7](https://github.com/swift-nav/libsbp/tree/v5.0.7) (2024-03-18) [Full Changelog](https://github.com/swift-nav/libsbp/compare/v5.0.6...v5.0.7) diff --git a/c/include/libsbp/version.h b/c/include/libsbp/version.h index 42a98aed56..af99b9b18b 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 7 +#define SBP_PATCH_VERSION 8 /** Full SBP version string. */ -#define SBP_VERSION "5.0.8-alpha" +#define SBP_VERSION "5.0.8" /** Is this a staging branch? */ #define SBP_STAGING 0 diff --git a/docs/sbp.pdf b/docs/sbp.pdf index e2454a2b7f..159a9e6a84 100644 Binary files a/docs/sbp.pdf and b/docs/sbp.pdf differ diff --git a/haskell/sbp.cabal b/haskell/sbp.cabal index ad90bc0c01..a3e0971f83 100644 --- a/haskell/sbp.cabal +++ b/haskell/sbp.cabal @@ -1,5 +1,5 @@ name: sbp -version: 5.0.8-alpha +version: 5.0.8 synopsis: SwiftNav's SBP Library homepage: https://github.com/swift-nav/libsbp license: MIT diff --git a/javascript/sbp/RELEASE-VERSION b/javascript/sbp/RELEASE-VERSION index 27a7d0d26a..733db2686a 100644 --- a/javascript/sbp/RELEASE-VERSION +++ b/javascript/sbp/RELEASE-VERSION @@ -1 +1 @@ -5.0.8-alpha \ No newline at end of file +5.0.8 \ No newline at end of file diff --git a/kaitai/ksy/sbp.ksy b/kaitai/ksy/sbp.ksy index 3f6f191346..851f4076c5 100644 --- a/kaitai/ksy/sbp.ksy +++ b/kaitai/ksy/sbp.ksy @@ -8,7 +8,7 @@ # EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED # WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. # -# Kaitai Struct definition file for Swift Binary Protocol 5.0.8-alpha +# Kaitai Struct definition file for Swift Binary Protocol 5.0.8 # # Automatically generated with generate.py. Do not hand edit! diff --git a/package-lock.json b/package-lock.json index a3ff9da385..7987aa4086 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sbp", - "version": "5.0.8-alpha", + "version": "5.0.8", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sbp", - "version": "5.0.8-alpha", + "version": "5.0.8", "license": "MIT", "dependencies": { "binary-parser": "^1.7.0", diff --git a/package.json b/package.json index 9b56fdd085..9a86acb0e8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sbp", - "version": "5.0.8-alpha", + "version": "5.0.8", "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 27a7d0d26a..733db2686a 100644 --- a/python/sbp/RELEASE-VERSION +++ b/python/sbp/RELEASE-VERSION @@ -1 +1 @@ -5.0.8-alpha \ No newline at end of file +5.0.8 \ No newline at end of file diff --git a/rust/sbp/Cargo.toml b/rust/sbp/Cargo.toml index c4565e9028..4a0809765c 100644 --- a/rust/sbp/Cargo.toml +++ b/rust/sbp/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp" -version = "5.0.8-alpha" +version = "5.0.8" 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 9f7d79a080..49d83e66be 100644 --- a/rust/sbp2json/Cargo.toml +++ b/rust/sbp2json/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp2json" -version = "5.0.8-alpha" +version = "5.0.8-unreleased" repository = "https://github.com/swift-nav/libsbp" description = "Rust native implementation of SBP (Swift Binary Protocol) to JSON conversion tools" authors = ["Swift Navigation "]