diff --git a/README.md b/README.md index a0b6dec..e42b270 100644 --- a/README.md +++ b/README.md @@ -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 +sed -i 's@version = "0.8.1"@version = "0.8.2"@' Cargo.toml +``` + +Then release the package: -# If things look good -cargo release --execute +``` +cd swiftnav-sys +cargo publish ``` -Then release the `swiftnav` crate: +Update the `swiftnav` crate version: ``` cd swiftnav -cargo release +sed -i 's@version = "0.8.1"@version = "0.8.2"@' Cargo.toml +``` + +Then release the `swiftnav` crate: -# If things look good -cargo release --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. diff --git a/swiftnav-sys/Cargo.toml b/swiftnav-sys/Cargo.toml index 71c35ce..26eea78 100644 --- a/swiftnav-sys/Cargo.toml +++ b/swiftnav-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "swiftnav-sys" -version = "0.8.0" +version = "0.8.1" authors = ["Swift Navigation "] edition = "2018" description = "FFI bindings for libswiftnav"