Robin Mueller
de4e6183b3
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good
- Add new shared subcrate satrs-shared to split off some shared components not expected to change very often. - Renmame `satrs-core` to `satrs`. It is expected that sat-rs will remain the primary crate, so the core information is superfluous, and core also implies stability, which will not be the case for some time.
857 B
857 B
Checklist for new releases
Pre-Release
- Make sure any new modules are documented sufficiently enough and check docs with
cargo +nightly doc --all-features --config 'rustdocflags=["--cfg", "doc_cfg"]' --open
. - Bump version specifier in
Cargo.toml
. - Update
CHANGELOG.md
: Convertunreleased
section into version section with date and add newunreleased
section. - Run
cargo test --all-features
. - Run
cargo fmt
andcargo clippy
. Checkcargo msrv
against MSRV inCargo.toml
. - Wait for CI/CD results for EGit and Github. These also check cross-compilation for bare-metal targets.
Release
cargo publish
Post-Release
- Create a new annotaged tag and push it with
git tag -a satrs-core-<version>
andgit push -u origin satrs-core-<version>
- Create a new release on
EGit
based on the tag.