From 4ad18e7cb8a7e2ebc2fbc4410373a47d7747a28e Mon Sep 17 00:00:00 2001 From: Patrick Crumley Date: Thu, 7 Dec 2023 14:37:23 -0800 Subject: [PATCH] update CHANGELOG.md, prep for next release #no_auto_pr --- CHANGELOG.md | 22 ++++++++++++++++++++++ c/include/libsbp/version.h | 2 +- haskell/sbp.cabal | 2 +- javascript/sbp/RELEASE-VERSION | 2 +- package-lock.json | 4 ++-- package.json | 2 +- rust/sbp/Cargo.toml | 2 +- rust/sbp2json/Cargo.toml | 2 +- 8 files changed, 30 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 431121a594..b91a9f2bf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [v5.0.4](https://github.com/swift-nav/libsbp/tree/v5.0.4) (2023-12-07) + +[Full Changelog](https://github.com/swift-nav/libsbp/compare/v5.0.3...v5.0.4) + +**Closed issues:** + +- `MsgGpsTime` implementation of `gps\_time` is not checking status flags [\#1363](https://github.com/swift-nav/libsbp/issues/1363) + +**Merged pull requests:** + +- Fix rust and js tests [\#1383](https://github.com/swift-nav/libsbp/pull/1383) ([woodfell](https://github.com/woodfell)) +- Fix decoding of truncated messages containing variable length arrays [\#1381](https://github.com/swift-nav/libsbp/pull/1381) ([woodfell](https://github.com/woodfell)) +- Replace swiftnav-adam with woodfell for additional reviewers [\#1380](https://github.com/swift-nav/libsbp/pull/1380) ([woodfell](https://github.com/woodfell)) +- Fix incorrect specification of directory contents in read dir resp [\#1379](https://github.com/swift-nav/libsbp/pull/1379) ([woodfell](https://github.com/woodfell)) +- Fix decoding fixed length arrays of struct in python sbp2json [\#1378](https://github.com/swift-nav/libsbp/pull/1378) ([woodfell](https://github.com/woodfell)) +- Increase test coverage of C code [\#1377](https://github.com/swift-nav/libsbp/pull/1377) ([woodfell](https://github.com/woodfell)) +- rust: check more messages for time validity [\#1376](https://github.com/swift-nav/libsbp/pull/1376) ([notoriaga](https://github.com/notoriaga)) +- rust: check time source for MsgGpsTime [\#1375](https://github.com/swift-nav/libsbp/pull/1375) ([notoriaga](https://github.com/notoriaga)) +- Run sonar cloud on C/C++ bindings [\#1374](https://github.com/swift-nav/libsbp/pull/1374) ([woodfell](https://github.com/woodfell)) +- ignore dependabot PRs for additional reviewers action [\#1372](https://github.com/swift-nav/libsbp/pull/1372) ([adrian-kong](https://github.com/adrian-kong)) +- Bon voyage! [\#1370](https://github.com/swift-nav/libsbp/pull/1370) ([pcrumley](https://github.com/pcrumley)) + ## [v5.0.3](https://github.com/swift-nav/libsbp/tree/v5.0.3) (2023-10-19) [Full Changelog](https://github.com/swift-nav/libsbp/compare/v5.0.2...v5.0.3) diff --git a/c/include/libsbp/version.h b/c/include/libsbp/version.h index af764336f8..7446216a9a 100644 --- a/c/include/libsbp/version.h +++ b/c/include/libsbp/version.h @@ -28,7 +28,7 @@ #define SBP_PATCH_VERSION 4 /** Full SBP version string. */ -#define SBP_VERSION "5.0.4" +#define SBP_VERSION "5.0.5-alpha" /** Is this a staging branch? */ #define SBP_STAGING 0 diff --git a/haskell/sbp.cabal b/haskell/sbp.cabal index d019983754..c76ab0fe49 100644 --- a/haskell/sbp.cabal +++ b/haskell/sbp.cabal @@ -1,5 +1,5 @@ name: sbp -version: 5.0.4 +version: 5.0.5-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 553fe87a05..499671933b 100644 --- a/javascript/sbp/RELEASE-VERSION +++ b/javascript/sbp/RELEASE-VERSION @@ -1 +1 @@ -5.0.4 \ No newline at end of file +5.0.5-alpha \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 83a6a96d87..3f8e215637 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sbp", - "version": "5.0.4", + "version": "5.0.5-alpha", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sbp", - "version": "5.0.4", + "version": "5.0.5-alpha", "license": "MIT", "dependencies": { "binary-parser": "^1.7.0", diff --git a/package.json b/package.json index 789abe3257..16188f283e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sbp", - "version": "5.0.4", + "version": "5.0.5-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 e35a435010..4c39803f46 100644 --- a/rust/sbp/Cargo.toml +++ b/rust/sbp/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp" -version = "5.0.4" +version = "5.0.5-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 77c9bef643..5487f56e43 100644 --- a/rust/sbp2json/Cargo.toml +++ b/rust/sbp2json/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp2json" -version = "5.0.4-unreleased" +version = "5.0.5-alpha" repository = "https://github.com/swift-nav/libsbp" description = "Rust native implementation of SBP (Swift Binary Protocol) to JSON conversion tools" authors = ["Swift Navigation "]