From 76db8a8b138a205dfd053da12f742d650cbbca6e Mon Sep 17 00:00:00 2001 From: KD Date: Sun, 30 Mar 2025 12:50:05 -0400 Subject: [PATCH 1/4] Version bump v0.1.16 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2e6113e..32273ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icarus-models" -version = "0.1.14" +version = "0.1.16" edition = "2024" description = "models used for the icarus project" license = "MIT" -- 2.43.0 From 15d4e7e1303671d602acfe8a2ce17b1bccfacaba Mon Sep 17 00:00:00 2001 From: KD Date: Sun, 30 Mar 2025 12:51:22 -0400 Subject: [PATCH 2/4] Targeting ubuntu-24.04 for workflows and removing main from tag release --- .gitea/workflows/tag_release.yaml | 3 +-- .gitea/workflows/workflow.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/tag_release.yaml b/.gitea/workflows/tag_release.yaml index 287ac4f..6a11acb 100644 --- a/.gitea/workflows/tag_release.yaml +++ b/.gitea/workflows/tag_release.yaml @@ -3,14 +3,13 @@ name: Release Tagging on: push: branches: - - main - devel tags: - 'v*' # Trigger on tags matching v* jobs: release: - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout code uses: actions/checkout@v3 diff --git a/.gitea/workflows/workflow.yaml b/.gitea/workflows/workflow.yaml index c3640b8..cf14ef2 100644 --- a/.gitea/workflows/workflow.yaml +++ b/.gitea/workflows/workflow.yaml @@ -13,7 +13,7 @@ on: jobs: check: name: Check - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 @@ -23,7 +23,7 @@ jobs: test: name: Test Suite - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 @@ -33,7 +33,7 @@ jobs: fmt: name: Rustfmt - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 @@ -44,7 +44,7 @@ jobs: clippy: name: Clippy - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 @@ -55,7 +55,7 @@ jobs: build: name: build - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 - uses: actions-rust-lang/setup-rust-toolchain@v1 -- 2.43.0 From b4960fea6129065f1e5fb7ac4e602ea60313e88c Mon Sep 17 00:00:00 2001 From: KD Date: Sun, 30 Mar 2025 12:54:15 -0400 Subject: [PATCH 3/4] Bumping version due to name change --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 32273ca..7e860e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icarus-models" -version = "0.1.16" +version = "0.2.0" edition = "2024" description = "models used for the icarus project" license = "MIT" -- 2.43.0 From 64858f3aaa859b1064cc2c175cce0dbcbef307b2 Mon Sep 17 00:00:00 2001 From: KD Date: Sun, 30 Mar 2025 13:03:46 -0400 Subject: [PATCH 4/4] Corrected tag release workflow --- .gitea/workflows/tag_release.yaml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitea/workflows/tag_release.yaml b/.gitea/workflows/tag_release.yaml index 92d2f6e..6a11acb 100644 --- a/.gitea/workflows/tag_release.yaml +++ b/.gitea/workflows/tag_release.yaml @@ -9,11 +9,7 @@ on: jobs: release: -<<<<<<< HEAD runs-on: ubuntu-24.04 -======= - runs-on: ubuntu-22.04 ->>>>>>> f6fdb717e962116f790b33d960d6fde4abe17710 steps: - name: Checkout code uses: actions/checkout@v3 -- 2.43.0