Skip to content

Commit d2c3f1a

Browse files
committed
Merge branch 'master' into fix-generated-artifacts
2 parents 3e3efb0 + 717cc36 commit d2c3f1a

File tree

13 files changed

+41
-24
lines changed

13 files changed

+41
-24
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## [v6.3.1](https://github.com/swift-nav/libsbp/tree/v6.3.1)
4+
5+
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v6.3.0...v6.3.1)
6+
7+
**Merged pull requests:**
8+
9+
- Update to kaitaistruct 0.11 [\#1518](https://github.com/swift-nav/libsbp/pull/1518) ([dgburr](https://github.com/dgburr))
10+
- Fix dependabot SONAR\_TOKEN [\#1517](https://github.com/swift-nav/libsbp/pull/1517) ([sbmueller](https://github.com/sbmueller))
11+
- Update rules\_swiftnav [\#1516](https://github.com/swift-nav/libsbp/pull/1516) ([martin4861](https://github.com/martin4861))
12+
- Update to Bazel 8 [\#1515](https://github.com/swift-nav/libsbp/pull/1515) ([martin4861](https://github.com/martin4861))
13+
- Auto submodule update: cmake - Fix compiler errors from check third-party dependency on Windows \(\#188\) [\#1514](https://github.com/swift-nav/libsbp/pull/1514) ([swiftnav-svc-jenkins](https://github.com/swiftnav-svc-jenkins))
14+
- Update check [\#1513](https://github.com/swift-nav/libsbp/pull/1513) ([martin4861](https://github.com/martin4861))
15+
- Update to C++17 \[\#1512](https://github.com/swift-nav/libsbp/pull/1512) ([sbmueller](https://github.com/sbmueller))
16+
- Update rules\_foreign\_cc [\#1511](https://github.com/swift-nav/libsbp/pull/1511) ([martin4861](https://github.com/martin4861))
17+
- Auto submodule update: cmake - Default C++/C version for all swift targets \(\#187\) [\#1510](https://github.com/swift-nav/libsbp/pull/1510) ([swiftnav-svc-jenkins](https://github.com/swiftnav-svc-jenkins))
18+
- Apply new cargo fmt rules & remove deprecated actions [\#1509](https://github.com/swift-nav/libsbp/pull/1509) ([pcrumley](https://github.com/pcrumley))
19+
- rust: add Frome\<Frame\> impls for Bytes/BytesMut [\#1508](https://github.com/swift-nav/libsbp/pull/1508) ([notoriaga](https://github.com/notoriaga))
20+
- Add clone to sbp frame in rust [\#1507](https://github.com/swift-nav/libsbp/pull/1507) ([tzilist](https://github.com/tzilist))
21+
- update rust deps [\#1505](https://github.com/swift-nav/libsbp/pull/1505) ([tzilist](https://github.com/tzilist))
22+
323
## [v6.3.0](https://github.com/swift-nav/libsbp/tree/v6.3.0)
424

525
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v6.2.2...v6.3.0)

c/include/libsbp/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
/** Protocol minor version. */
2626
#define SBP_MINOR_VERSION 3
2727
/** Protocol patch version. */
28-
#define SBP_PATCH_VERSION 0
28+
#define SBP_PATCH_VERSION 1
2929

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

3333
/** Is this a staging branch? */
3434
#define SBP_STAGING 0

docs/sbp.pdf

-16 Bytes
Binary file not shown.

generator/sbpg/targets/resources/rust/sbp2json_cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ categories = ["parsing"]
1818
keywords = ["encoding", "parsing"]
1919

2020
[dependencies.sbp]
21-
path = "../sbp" # TODO: replace with published `sbp` crate version
21+
path = "../sbp" # TODO: replace with published `sbp` crate version
2222
features = ["json", "float_roundtrip"]
2323

2424
[dependencies]
@@ -44,9 +44,6 @@ predicates-core = "=1.0.3"
4444
serde_json = "1.0.82"
4545
assert-json-diff = "2.0"
4646

47-
[profile.release]
48-
lto = true
49-
codegen-units = 1
5047

5148
[lib]
5249
name = "converters"

generator/sbpg/targets/resources/rust/sbp_cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = ["Swift Navigation <[email protected]>"]
1313
repository = "https://github.com/swift-nav/libsbp"
1414
license = "MIT"
1515
categories = ["parsing"]
16-
edition = "2018"
16+
edition = "2024"
1717
keywords = ["encoding", "parsing"]
1818
readme = "../../README.md"
1919

@@ -29,37 +29,37 @@ link = ["slotmap"]
2929
path = "src/lib.rs"
3030

3131
[dependencies]
32-
bytes = "1"
32+
bytes = "1.10.1"
3333
crc16 = "0.4"
34-
log = "0.4"
34+
log = "0.4.28"
3535

3636
[dependencies.swiftnav]
3737
version = "0.10"
3838
optional = true
3939

4040
[dependencies.slotmap]
41-
version = "1"
41+
version = "1.0.7"
4242
optional = true
4343

4444
[dependencies.serde]
45-
version = "1"
45+
version = "1.0.228"
4646
features = ["derive"]
4747
optional = true
4848

4949
[dependencies.serde_json]
50-
version = "1"
50+
version = "1.0.145"
5151
optional = true
5252

5353
[dependencies.serde-big-array]
54-
version = "0.4"
54+
version = "0.5.1"
5555
optional = true
5656

5757
[dependencies.base64]
58-
version = "0.13"
58+
version = "0.22.1"
5959
optional = true
6060

6161
[dependencies.futures]
62-
version = "0.3"
62+
version = "0.3.31"
6363
optional = true
6464

6565
[dependencies.dencode]

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: 6.3.1-alpha
2+
version: 6.3.2-alpha
33
synopsis: SwiftNav's SBP Library
44
homepage: https://github.com/swift-nav/libsbp
55
license: MIT

javascript/sbp/RELEASE-VERSION

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

kaitai/ksy/sbp.ksy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
99
# WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
1010
#
11-
# Kaitai Struct definition file for Swift Binary Protocol 6.3.1-alpha
11+
# Kaitai Struct definition file for Swift Binary Protocol 6.3.2-alpha
1212
#
1313
# Automatically generated with generate.py. Do not hand edit!
1414

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": "6.3.1-alpha",
3+
"version": "6.3.2-alpha",
44
"description": "libsbp bindings for JavaScript. More information here: http://swift-nav.github.io/libsbp/",
55
"files": [
66
"javascript/*",

0 commit comments

Comments
 (0)