Skip to content

Commit e1f36ae

Browse files
author
Jason Mobarak
committed
bump version, update release instructions
1 parent ed62d51 commit e1f36ae

File tree

2 files changed

+20
-10
lines changed

2 files changed

+20
-10
lines changed

README.md

+19-9
Original file line numberDiff line numberDiff 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
2019
release the `swiftnav-sys` crate:
2120

21+
Update the `swiftnav-sys` crate version:
22+
2223
```
2324
cd 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
```
3338
cd 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+
4151
This crate is distributed under the terms of the LGPLv3, full details are
4252
available in the [LICENSE](./LICENSE) file.

swiftnav-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "swiftnav-sys"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
authors = ["Swift Navigation <[email protected]>"]
55
edition = "2018"
66
description = "FFI bindings for libswiftnav"

0 commit comments

Comments
 (0)