From bce5252b4b7c912a1bc4cc57f52c5c49dc839f76 Mon Sep 17 00:00:00 2001 From: Patrick Crumley Date: Fri, 25 Aug 2023 15:29:13 -0700 Subject: [PATCH] update CHANGELOG.md, prep for next release #no_auto_pr --- CHANGELOG.md | 9 +++++++++ c/include/libsbp/version.h | 2 +- javascript/sbp/RELEASE-VERSION | 2 +- package-lock.json | 4 ++-- package.json | 2 +- rust/sbp/Cargo.toml | 4 ++-- rust/sbp2json/Cargo.toml | 4 ++-- 7 files changed, 18 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3b303a50..53b96b555 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [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) + +**Merged pull requests:** + +- Remove SBP\_SENDER\_ID: it is not used anywhere and can conflict with user code [\#1355](https://github.com/swift-nav/libsbp/pull/1355) ([dgburr](https://github.com/dgburr)) +- update the howto [\#1354](https://github.com/swift-nav/libsbp/pull/1354) ([pcrumley](https://github.com/pcrumley)) + ## [v5.0.0](https://github.com/swift-nav/libsbp/tree/v5.0.0) (2023-08-10) [Full Changelog](https://github.com/swift-nav/libsbp/compare/v4.17.0...v5.0.0) diff --git a/c/include/libsbp/version.h b/c/include/libsbp/version.h index 73fe3ace7..5499d1ef7 100644 --- a/c/include/libsbp/version.h +++ b/c/include/libsbp/version.h @@ -28,7 +28,7 @@ #define SBP_PATCH_VERSION 1 /** Full SBP version string. */ -#define SBP_VERSION "5.0.1" +#define SBP_VERSION "5.0.2-alpha" /** Is this a staging branch? */ #define SBP_STAGING 0 diff --git a/javascript/sbp/RELEASE-VERSION b/javascript/sbp/RELEASE-VERSION index 32f3eaad0..3d62173c4 100644 --- a/javascript/sbp/RELEASE-VERSION +++ b/javascript/sbp/RELEASE-VERSION @@ -1 +1 @@ -5.0.1 \ No newline at end of file +5.0.2-alpha diff --git a/package-lock.json b/package-lock.json index 4f38d414f..a6371d874 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "sbp", - "version": "5.0.1", + "version": "5.0.2-alpha", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "sbp", - "version": "5.0.1", + "version": "5.0.2-alpha", "license": "MIT", "dependencies": { "binary-parser": "^1.7.0", diff --git a/package.json b/package.json index bc1772f33..f1359e7aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sbp", - "version": "5.0.1", + "version": "5.0.2-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 6ba744676..fa9f9bba8 100644 --- a/rust/sbp/Cargo.toml +++ b/rust/sbp/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp" -version = "5.0.1" +version = "5.0.2-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" @@ -71,4 +71,4 @@ serialport = "2.1.0" [package.metadata.docs.rs] # Whether to pass `--all-features` to Cargo when building docs for docs.rs -all-features = true \ No newline at end of file +all-features = true diff --git a/rust/sbp2json/Cargo.toml b/rust/sbp2json/Cargo.toml index cb5ba4e95..0c4924589 100644 --- a/rust/sbp2json/Cargo.toml +++ b/rust/sbp2json/Cargo.toml @@ -7,7 +7,7 @@ [package] name = "sbp2json" -version = "5.0.1-unreleased" +version = "5.0.2-alpha" repository = "https://github.com/swift-nav/libsbp" description = "Rust native implementation of SBP (Swift Binary Protocol) to JSON conversion tools" authors = ["Swift Navigation "] @@ -62,4 +62,4 @@ path = "src/bin/json2sbp.rs" [[bin]] name = "json2json" -path = "src/bin/json2json.rs" \ No newline at end of file +path = "src/bin/json2json.rs"