Merge pull request 'prepare sat-rs release' (#116) from prepare-satrs-v0.1.0 into main
All checks were successful
Rust/sat-rs/pipeline/head This commit looks good

Reviewed-on: #116
This commit is contained in:
Robin Müller 2024-02-12 17:12:18 +01:00
commit 445fdfe066
6 changed files with 14 additions and 19 deletions

View File

@ -15,7 +15,9 @@ RUN rustup install nightly && \
rustup component add rustfmt clippy rustup component add rustfmt clippy
WORKDIR "/tmp" WORKDIR "/tmp"
# RUN cargo install mdbook --no-default-features --features search --vers "^0.4" --locked # Install cargo-nextest
RUN curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C ${CARGO_HOME:-~/.cargo}/bin
# Install mdbook and mdbook-linkcheck
RUN curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.37/mdbook-v0.4.37-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory /usr/local/bin RUN curl -sSL https://github.com/rust-lang/mdBook/releases/download/v0.4.37/mdbook-v0.4.37-x86_64-unknown-linux-gnu.tar.gz | tar -xz --directory /usr/local/bin
RUN curl -sSL https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/latest/download/mdbook-linkcheck.x86_64-unknown-linux-gnu.zip -o mdbook-linkcheck.zip && \ RUN curl -sSL https://github.com/Michael-F-Bryan/mdbook-linkcheck/releases/latest/download/mdbook-linkcheck.x86_64-unknown-linux-gnu.zip -o mdbook-linkcheck.zip && \
unzip mdbook-linkcheck.zip && \ unzip mdbook-linkcheck.zip && \

View File

@ -32,7 +32,7 @@ pipeline {
} }
stage('Test') { stage('Test') {
steps { steps {
sh 'cargo test --all-features' sh 'cargo nextest r --all-features'
} }
} }
stage('Check with all features') { stage('Check with all features') {

View File

@ -19,7 +19,4 @@ Checklist for new releases
# Post-Release # Post-Release
1. Create a new annotaged tag and push it with `git tag -a satrs-mib-<version>` and 1. Create a new release on `EGit` with the name `satrs-mib-<version>`.
`git push -u origin satrs-mib-<version>`
2. Create a new release on `EGit` based on the tag.

View File

@ -7,3 +7,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/). and this project adheres to [Semantic Versioning](http://semver.org/).
# [unreleased] # [unreleased]
# [v0.1.0] 2024-02-12
Initial release.

View File

@ -15,17 +15,14 @@ categories = ["aerospace", "aerospace::space-protocols", "no-std", "hardware-sup
[dependencies] [dependencies]
delegate = ">0.7, <=0.10" delegate = ">0.7, <=0.10"
paste = "1" paste = "1"
smallvec = "1"
[dependencies.smallvec] crc = "3"
version = "1" satrs-shared = "0.1.1"
[dependencies.num_enum] [dependencies.num_enum]
version = ">0.5, <=0.7" version = ">0.5, <=0.7"
default-features = false default-features = false
[dependencies.crc]
version = "3"
[dependencies.dyn-clone] [dependencies.dyn-clone]
version = "1" version = "1"
optional = true optional = true
@ -70,9 +67,6 @@ version = "0.5.4"
features = ["all"] features = ["all"]
optional = true optional = true
[dependencies.satrs-shared]
version = "0.1.1"
[dependencies.spacepackets] [dependencies.spacepackets]
version = "0.9" version = "0.9"
default-features = false default-features = false
@ -115,7 +109,7 @@ alloc = [
"dyn-clone", "dyn-clone",
"downcast-rs" "downcast-rs"
] ]
serde = ["dep:serde", "spacepackets/serde"] serde = ["dep:serde", "spacepackets/serde", "satrs-shared/serde"]
crossbeam = ["crossbeam-channel"] crossbeam = ["crossbeam-channel"]
heapless = ["dep:heapless"] heapless = ["dep:heapless"]
doc-images = [] doc-images = []

View File

@ -19,7 +19,5 @@ Checklist for new releases
# Post-Release # Post-Release
1. Create a new annotaged tag and push it with `git tag -a satrs-core-<version>` and 1. Create a new release on `EGit` with the name `satrs-<version>`.
`git push -u origin satrs-core-<version>`
2. Create a new release on `EGit` based on the tag.