Skip to content

Commit 125731b

Browse files
author
Jason Mobarak
authored
Release 2.7.3 (#757)
1 parent fa878ab commit 125731b

File tree

83 files changed

+211
-285
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+211
-285
lines changed

CHANGELOG.md

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

3+
## [v2.7.3](https://github.com/swift-nav/libsbp/tree/v2.7.3)
4+
5+
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v2.7.1...v2.7.3)
6+
7+
**Closed issues:**
8+
9+
- sbp2rinex does not generate valid rinex when using toJson\(\) method from SBPMessage.java [\#720](https://github.com/swift-nav/libsbp/issues/720)
10+
11+
**Merged pull requests:**
12+
13+
- Allow max reconnects to be specified as a parameter \[ESD-1603\] \[TTI-2\] [\#756](https://github.com/swift-nav/libsbp/pull/756)
14+
- Miscellaneous clean up of Rust bindings [\#754](https://github.com/swift-nav/libsbp/pull/754)
15+
- Get rust example building [\#753](https://github.com/swift-nav/libsbp/pull/753)
16+
- Cannot compare int and NoneType in python3 [\#752](https://github.com/swift-nav/libsbp/pull/752)
17+
- Added check for a couple of needed commands to build rust. [\#750](https://github.com/swift-nav/libsbp/pull/750)
18+
- Added typescript module declaration file [\#749](https://github.com/swift-nav/libsbp/pull/749)
19+
- Changed C++ wrapper to not require non-const access to the buffer when sending [\#748](https://github.com/swift-nav/libsbp/pull/748)
20+
- Added optional serialize feature to rust crate [\#747](https://github.com/swift-nav/libsbp/pull/747)
21+
- Update check [\#746](https://github.com/swift-nav/libsbp/pull/746)
22+
- Add unit tests for Rust [\#745](https://github.com/swift-nav/libsbp/pull/745)
23+
- Fix compiler warnings found in libsettings build [\#743](https://github.com/swift-nav/libsbp/pull/743)
24+
- Import libcheck as submodule [\#742](https://github.com/swift-nav/libsbp/pull/742)
25+
- Use common test targets module [\#740](https://github.com/swift-nav/libsbp/pull/740)
26+
- Add C++ support [\#739](https://github.com/swift-nav/libsbp/pull/739)
27+
- Fix Rust generation to generate in the same order [\#738](https://github.com/swift-nav/libsbp/pull/738)
28+
- \[STAR-789\] Add proposed Protection Level message [\#737](https://github.com/swift-nav/libsbp/pull/737)
29+
- Star 833 [\#736](https://github.com/swift-nav/libsbp/pull/736)
30+
- Generate JSON schema definitions for web clients [\#735](https://github.com/swift-nav/libsbp/pull/735)
31+
- Update libsbp ARM builders [\#733](https://github.com/swift-nav/libsbp/pull/733)
32+
- Modify to work with Rust's bindgen [\#706](https://github.com/swift-nav/libsbp/pull/706)
33+
334
## [v2.7.1](https://github.com/swift-nav/libsbp/tree/v2.7.1)
435

536
[Full Changelog](https://github.com/swift-nav/libsbp/compare/v2.7.0...v2.7.1)

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -395,6 +395,7 @@ release:
395395
github_changelog_generator --no-author \
396396
--max-issues $(CHANGELOG_MAX_ISSUES) \
397397
-t $(CHANGELOG_GITHUB_TOKEN)$ \
398+
--user swift-nav --project libsbp \
398399
-o DRAFT_CHANGELOG.md \
399400
swift-nav/libsbp
400401
$(call announce-end,"Added CHANGELOG details to DRAFT_CHANGELOG.md!")

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 7
2727
/** Protocol patch version. */
28-
#define SBP_PATCH_VERSION 1
28+
#define SBP_PATCH_VERSION 3
2929

3030
/** \} */
3131

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: 2.7.1
2+
version: 2.7.3
33
synopsis: SwiftNav's SBP Library
44
homepage: https://github.com/swift-nav/libsbp
55
license: LGPL-3

package-lock.json

Lines changed: 31 additions & 12 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": "2.7.1",
3+
"version": "2.7.3",
44
"description": "libsbp bindings for JavaScript. More information here: http://swift-nav.github.io/libsbp/",
55
"files": [
66
"javascript/*",

python/deploy.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
else:
4949
DASHDASH = []
5050

51+
os.environ['IS_RELEASED'] = 'y'
5152

5253
def twine_upload(conda_dir, wheel, py_version="3.7", use_conda=True):
5354

@@ -185,10 +186,10 @@ def run_bdist(conda_dir,
185186
for dirent in glob.glob("module/build/*"):
186187
shutil.rmtree(dirent) if os.path.isdir(dirent) else os.unlink(dirent)
187188

188-
with open("module/setup.py", "rb") as fp:
189-
data = fp.read()
190-
with open("module/setup.py", "wb") as fp:
191-
fp.write(data.replace(b"IS_RELEASED = False", b"IS_RELEASED = True"))
189+
# with open("module/setup.py", "rb") as fp:
190+
# data = fp.read()
191+
# with open("module/setup.py", "wb") as fp:
192+
# fp.write(data.replace(b"IS_RELEASED = False", b"IS_RELEASED = True"))
192193

193194
os.chdir("module")
194195

python/sbp/RELEASE-VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.7.1
1+
2.7.3

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def read_release_version():
5959

6060

6161
MAJOR, MINOR, PATCH = read_release_version()
62-
IS_RELEASED = False
62+
IS_RELEASED = os.environ.get('IS_RELEASED', '') != ''
6363

6464
VERSION = '%d.%d.%d' % (MAJOR, MINOR, PATCH)
6565

rust/sbp/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
pub mod messages;
66
pub mod parser;
77

8-
use std::result;
98
use std::error;
109
use std::fmt;
10+
use std::result;
1111

1212
pub type Result<T> = result::Result<T, Error>;
1313

0 commit comments

Comments
 (0)