Skip to content

Commit 824ac91

Browse files
author
Jason Mobarak
committed
Release v3.4.2 #no_auto_pr
1 parent e656768 commit 824ac91

File tree

10 files changed

+21
-8
lines changed

10 files changed

+21
-8
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change Log
22

3+
## [v3.4.2](https://github.com/swift-nav/libsbp/tree/v3.4.2) (2020-09-22)
4+
5+
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v3.4.1...v3.4.2)
6+
7+
**Merged pull requests:**
8+
9+
- rust: add explicit to\_string for SbpString [\#859](https://github.com/swift-nav/libsbp/pull/859)
10+
- fixup font issue \[INFRA-293\] [\#858](https://github.com/swift-nav/libsbp/pull/858)
11+
- Bump cmake \(back\) to most recent. [\#857](https://github.com/swift-nav/libsbp/pull/857)
12+
- Fix java examples so they at least compile [\#855](https://github.com/swift-nav/libsbp/pull/855)
13+
- Add Python 3.5/3.8 to libsbp builder, update ARM [\#854](https://github.com/swift-nav/libsbp/pull/854)
14+
- fix tox tests for Python 3.5 [\#853](https://github.com/swift-nav/libsbp/pull/853)
15+
- Add bits for ins motion state [\#845](https://github.com/swift-nav/libsbp/pull/845)
16+
317
## [v3.4.1](https://github.com/swift-nav/libsbp/tree/v3.4.1) (2020-09-14)
418

519
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v3.4.0...v3.4.1)

c/include/libsbp/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/** Protocol minor version. */
2626
#define SBP_MINOR_VERSION 4
2727
/** Protocol patch version. */
28-
#define SBP_PATCH_VERSION 1
28+
#define SBP_PATCH_VERSION 2
2929

3030
/** \} */
3131

docs/sbp.pdf

8 Bytes
Binary file not shown.

haskell/sbp.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: sbp
2-
version: 3.4.1
2+
version: 3.4.2
33
synopsis: SwiftNav's SBP Library
44
homepage: https://github.com/swift-nav/libsbp
55
license: MIT

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "3.4.1",
3+
"version": "3.4.2",
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-
3.4.1
1+
3.4.2

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 = "3.4.1"
10+
version = "3.4.2"
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/sbp/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,6 @@ mod tests {
330330

331331
#[test]
332332
fn sbp_string() {
333-
334333
use crate::SbpString;
335334

336335
let sbp_str = SbpString(b"1234".to_vec());

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 = "3.4.1"
10+
version = "3.4.2"
1111
authors = ["Swift Navigation <[email protected]>"]
1212
edition = "2018"
1313

0 commit comments

Comments
 (0)