diff --git a/CHANGELOG.md b/CHANGELOG.md index 53b96b555..7cfd673ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [v5.0.2](https://github.com/swift-nav/libsbp/tree/v5.0.2) (2023-09-07) + +[Full Changelog](https://github.com/swift-nav/libsbp/compare/v5.0.1...v5.0.2) + +**Merged pull requests:** + +- Auto submodule update: cmake - Enable starling-core test libs \[AP-454\] \(\#166\) [\#1360](https://github.com/swift-nav/libsbp/pull/1360) ([swiftnav-svc-jenkins](https://github.com/swiftnav-svc-jenkins)) +- fix bug [\#1359](https://github.com/swift-nav/libsbp/pull/1359) ([pcrumley](https://github.com/pcrumley)) +- fix new clippy warning in rust 1.71 [\#1358](https://github.com/swift-nav/libsbp/pull/1358) ([pcrumley](https://github.com/pcrumley)) +- Auto submodule update: cmake - Update CODEOWNERS \(\#163\) [\#1357](https://github.com/swift-nav/libsbp/pull/1357) ([swiftnav-svc-jenkins](https://github.com/swiftnav-svc-jenkins)) + ## [v5.0.1](https://github.com/swift-nav/libsbp/tree/v5.0.1) (2023-08-24) [Full Changelog](https://github.com/swift-nav/libsbp/compare/v5.0.0...v5.0.1) diff --git a/c/include/libsbp/version.h b/c/include/libsbp/version.h index e2df809fe..b9bb39511 100644 --- a/c/include/libsbp/version.h +++ b/c/include/libsbp/version.h @@ -28,7 +28,7 @@ #define SBP_PATCH_VERSION 2 /** Full SBP version string. */ -#define SBP_VERSION "5.0.2" +#define SBP_VERSION "5.0.3-alpha" /** Is this a staging branch? */ #define SBP_STAGING 0 diff --git a/haskell/sbp.cabal b/haskell/sbp.cabal index 0b4349f36..1ef986884 100644 --- a/haskell/sbp.cabal +++ b/haskell/sbp.cabal @@ -1,5 +1,5 @@ name: sbp -version: 5.0.2 +version: 5.0.3-alpha 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 3e827a3a1..d888c391c 100644 --- a/javascript/sbp/RELEASE-VERSION +++ b/javascript/sbp/RELEASE-VERSION @@ -1 +1 @@ -5.0.2 \ No newline at end of file +5.0.3-alpha \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index cc27e9709..ed0d35ae1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sbp", - "version": "5.0.2", + "version": "5.0.3-alpha", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sbp", - "version": "5.0.2", + "version": "5.0.3-alpha", "license": "MIT", "dependencies": { "binary-parser": "^1.7.0", diff --git a/package.json b/package.json index f35a2e606..f7b617dfb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sbp", - "version": "5.0.2", + "version": "5.0.3-alpha", "description": "libsbp bindings for JavaScript. More information here: http://swift-nav.github.io/libsbp/", "files": [ "javascript/*", diff --git a/rust/sbp/Cargo.toml b/rust/sbp/Cargo.toml index 18a13e314..6e058af4a 100644 --- a/rust/sbp/Cargo.toml +++ b/rust/sbp/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp" -version = "5.0.2" +version = "5.0.3-alpha" 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 eba352ce9..0d6e6c7db 100644 --- a/rust/sbp2json/Cargo.toml +++ b/rust/sbp2json/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp2json" -version = "5.0.2-unreleased" +version = "5.0.3-alpha" repository = "https://github.com/swift-nav/libsbp" description = "Rust native implementation of SBP (Swift Binary Protocol) to JSON conversion tools" authors = ["Swift Navigation "]