File tree 2 files changed +20
-10
lines changed
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).
15
15
16
16
# Publishing a new release
17
17
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
20
19
release the ` swiftnav-sys ` crate:
21
20
21
+ Update the ` swiftnav-sys ` crate version:
22
+
22
23
```
23
24
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:
25
29
26
- # If things look good
27
- cargo release <major|minor|patch> --execute
30
+ ```
31
+ cd swiftnav-sys
32
+ cargo publish
28
33
```
29
34
30
- Then release the ` swiftnav ` crate:
35
+ Update the ` swiftnav ` crate version :
31
36
32
37
```
33
38
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:
35
43
36
- # If things look good
37
- cargo release <major|minor|patch> --execute
44
+ ```
45
+ cd swiftnav
46
+ cargo publish
38
47
```
39
48
40
49
# License
50
+
41
51
This crate is distributed under the terms of the LGPLv3, full details are
42
52
available in the [ LICENSE] ( ./LICENSE ) file.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " swiftnav-sys"
3
- version = " 0.8.0 "
3
+ version = " 0.8.1 "
4
4
authors = [
" Swift Navigation <[email protected] >" ]
5
5
edition = " 2018"
6
6
description = " FFI bindings for libswiftnav"
You can’t perform that action at this time.
0 commit comments