File tree Expand file tree Collapse file tree 2 files changed +20
-10
lines changed Expand file tree Collapse file tree 2 files changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -15,28 +15,38 @@ communicate with receivers using Swift Binary Protocol (SBP).
1515
1616# Publishing a new release
1717
18- Releases are done against the master branch. Use the
19- [ ` cargo-release ` ] ( https://github.com/sunng87/cargo-release ) tool. First
18+ Releases are done against the master branch. Use the ` cargo publish ` tool. First
2019release the ` swiftnav-sys ` crate:
2120
21+ Update the ` swiftnav-sys ` crate version:
22+
2223```
2324cd swiftnav-sys
24- cargo release <major|minor|patch>
25+ sed -i 's@version = "0.8.1"@version = "0.8.2"@' Cargo.toml
26+ ```
27+
28+ Then release the package:
2529
26- # If things look good
27- cargo release <major|minor|patch> --execute
30+ ```
31+ cd swiftnav-sys
32+ cargo publish
2833```
2934
30- Then release the ` swiftnav ` crate:
35+ Update the ` swiftnav ` crate version :
3136
3237```
3338cd swiftnav
34- cargo release <major|minor|patch>
39+ sed -i 's@version = "0.8.1"@version = "0.8.2"@' Cargo.toml
40+ ```
41+
42+ Then release the ` swiftnav ` crate:
3543
36- # If things look good
37- cargo release <major|minor|patch> --execute
44+ ```
45+ cd swiftnav
46+ cargo publish
3847```
3948
4049# License
50+
4151This crate is distributed under the terms of the LGPLv3, full details are
4252available in the [ LICENSE] ( ./LICENSE ) file.
Original file line number Diff line number Diff line change 11[package ]
22name = " swiftnav-sys"
3- version = " 0.8.0 "
3+ version = " 0.8.1 "
44authors = [
" Swift Navigation <[email protected] >" ]
55edition = " 2018"
66description = " FFI bindings for libswiftnav"
You can’t perform that action at this time.
0 commit comments