Skip to content

Commit 63e0a1e

Browse files
author
Jason Mobarak
committed
Release v4.2.0 of libsbp
1 parent feb7680 commit 63e0a1e

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ gen-javascript:
227227
--javascript
228228
cd $(SWIFTNAV_ROOT)
229229
$(call announce-begin,"Bumping NPM version")
230-
@- npm version "$(shell cat javascript/sbp/RELEASE-VERSION)" --no-git-tag-version >/dev/null 2>&1
230+
@- npm version "$(shell cat javascript/sbp/RELEASE-VERSION)" --no-git-tag-version >/dev/null 2>&1 || :
231231
@- npm run webpack >/dev/null 2>&1
232232
$(call announce-end,"Finished generating JavaScript bindings. Please check $(SWIFTNAV_ROOT)/javascript/sbp")
233233

c/include/libsbp/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
/** Protocol major version. */
2424
#define SBP_MAJOR_VERSION 4
2525
/** Protocol minor version. */
26-
#define SBP_MINOR_VERSION 1
26+
#define SBP_MINOR_VERSION 2
2727
/** Protocol patch version. */
28-
#define SBP_PATCH_VERSION 6
28+
#define SBP_PATCH_VERSION 0
2929

3030
/** Full SBP version string. */
31-
#define SBP_VERSION "4.1.7-alpha"
31+
#define SBP_VERSION "4.2.0"
3232

3333
/** \} */
3434

docs/sbp.pdf

-843 Bytes
Binary file not shown.

haskell/sbp.cabal

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sbp
2-
version: 4.1.7-alpha
2+
version: 4.2.0
33
synopsis: SwiftNav's SBP Library
44
homepage: https://github.com/swift-nav/libsbp
55
license: MIT
@@ -8,7 +8,7 @@ maintainer: Swift Navigation <[email protected]>
88
copyright: Copyright (C) 2015-2021 Swift Navigation, Inc.
99
category: Network
1010
build-type: Simple
11-
cabal-version: >= 1.22
11+
cabal-version: 1.22
1212
extra-source-files: README.md
1313
description:
1414
Haskell bindings for Swift Navigation Binary Protocol (SBP), a fast,
@@ -170,4 +170,4 @@ test-suite test
170170
, tasty
171171
, tasty-hunit
172172
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
173-
default-language: Haskell2010
173+
default-language: Haskell2010

javascript/sbp/RELEASE-VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.7-alpha
1+
4.2.0

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sbp",
3-
"version": "4.1.7-alpha",
3+
"version": "4.2.0",
44
"description": "libsbp bindings for JavaScript. More information here: http://swift-nav.github.io/libsbp/",
55
"files": [
66
"javascript/*",

python/sbp/RELEASE-VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.1.7-alpha
1+
4.2.0

rust/sbp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[package]
99
name = "sbp"
10-
version = "4.1.7-alpha"
10+
version = "4.2.0"
1111
description = "Rust native implementation of SBP (Swift Binary Protocol) for communicating with devices made by Swift Navigation"
1212
authors = ["Swift Navigation <[email protected]>"]
1313
repository = "https://github.com/swift-nav/libsbp"

rust/sbp2json/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[package]
99
name = "sbp2json"
10-
version = "4.1.7-alpha"
10+
version = "4.2.0-unreleased"
1111
description = "Rust native implementation of SBP (Swift Binary Protocol) to JSON conversion tools"
1212
authors = ["Swift Navigation <[email protected]>"]
1313
edition = "2018"

0 commit comments

Comments
 (0)