Skip to content

Commit 7cde448

Browse files
author
Tobias Kaupat
committed
script for simple publishing
1 parent d5beecc commit 7cde448

File tree

5 files changed

+13
-8
lines changed

5 files changed

+13
-8
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

freertos-cargo-build/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "freertos-cargo-build"
33
description = """
44
Utility lib for building & using FreeRTOS in rust projects inside the build.rs.
55
"""
6-
version = "0.1.0"
6+
version = "0.1.1"
77
authors = ["Tobias Kaupat <[email protected]>"]
88
edition = "2018"
99
license = "MIT"

freertos-rust-examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "freertos-rust-examples"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Tobias Kaupat <[email protected]>"]
55
edition = "2018"
66
description = """

freertos-rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "freertos-rust"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Tobias Kaupat <[email protected]>"]
55
edition = "2018"
66
description = """

publish-all.sh

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
3+
cargo publish --manifest-path freertos-cargo-build/Cargo.toml
4+
5+
cargo publish --manifest-path freertos-rust/Cargo.toml

0 commit comments

Comments
 (0)