Skip to content

Commit 7c170be

Browse files
committed
v0.2.0
1 parent 968bb30 commit 7c170be

3 files changed

Lines changed: 22 additions & 2 deletions

File tree

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[registries]
2+
cube-os = { index = "https://github.com/Cube-OS/crates.git" }

.github/workflows/release.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- main # Trigger workflow on push to the main branch
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
# Run ktra action
14+
- name: Run ktra
15+
uses: patrickoppel/ktra/.github/actions@develop
16+
with:
17+
github_token: ${{ secrets.GITHUB_TOKEN }}

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[package]
22
name = "kubos-system"
3-
version = "0.1.0"
4-
authors = ["Marshall Culpepper <marshall@kubos.com>"]
3+
version = "0.2.0"
4+
authors = ["Marshall Culpepper <marshall@kubos.com>, Patrick Oppel <patrick.oppel@sydney.edu.au"]
55
edition = "2018"
6+
repository = "https://github.com/Cube-OS/kubos-system"
67

78
[dependencies]
89
failure = "0.1.2"

0 commit comments

Comments
 (0)