Skip to content

Commit

Permalink
bump version, update release instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Mobarak committed Jun 9, 2023
1 parent ed62d51 commit e1f36ae
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 10 deletions.
28 changes: 19 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,28 +15,38 @@ communicate with receivers using Swift Binary Protocol (SBP).

# Publishing a new release

Releases are done against the master branch. Use the
[`cargo-release`](https://github.com/sunng87/cargo-release) tool. First
Releases are done against the master branch. Use the `cargo publish` tool. First
release the `swiftnav-sys` crate:

Update the `swiftnav-sys` crate version:

```
cd swiftnav-sys
cargo release <major|minor|patch>
sed -i 's@version = "0.8.1"@version = "0.8.2"@' Cargo.toml
```

Then release the package:

# If things look good
cargo release <major|minor|patch> --execute
```
cd swiftnav-sys
cargo publish
```

Then release the `swiftnav` crate:
Update the `swiftnav` crate version:

```
cd swiftnav
cargo release <major|minor|patch>
sed -i 's@version = "0.8.1"@version = "0.8.2"@' Cargo.toml
```

Then release the `swiftnav` crate:

# If things look good
cargo release <major|minor|patch> --execute
```
cd swiftnav
cargo publish
```

# License

This crate is distributed under the terms of the LGPLv3, full details are
available in the [LICENSE](./LICENSE) file.
2 changes: 1 addition & 1 deletion swiftnav-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "swiftnav-sys"
version = "0.8.0"
version = "0.8.1"
authors = ["Swift Navigation <[email protected]>"]
edition = "2018"
description = "FFI bindings for libswiftnav"
Expand Down

0 comments on commit e1f36ae

Please sign in to comment.