Merge pull request 'workflow_tag_fix (#33)' (#34) from devel into main
All checks were successful
Release Tagging / release (push) Successful in 32s
Rust Build / Check (push) Successful in 28s
Rust Build / Test Suite (push) Successful in 32s
Rust Build / Rustfmt (push) Successful in 32s
Rust Build / Clippy (push) Successful in 30s
Rust Build / build (push) Successful in 33s

Reviewed-on: #34
This commit is contained in:
2025-04-07 01:09:43 +00:00
3 changed files with 4 additions and 4 deletions

View File

@@ -3,9 +3,8 @@ name: Release Tagging
on:
push:
branches:
- main
- devel
tags:
- 'v*' # Trigger on tags matching v*
jobs:
release:

View File

@@ -1,6 +1,6 @@
[package]
name = "icarus_models"
version = "0.4.0"
version = "0.4.1"
edition = "2024"
rust-version = "1.86"
description = "models used for the icarus project"
@@ -12,5 +12,6 @@ serde_json = { version = "1.0.139" }
rand = { version = "0.9" }
time = { version = "0.3.41", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.16.0", features = ["v4", "serde"] }
[dev-dependencies]
tempfile = { version = "3.19.1" }

View File

@@ -9,7 +9,7 @@ pub struct LoginResult {
pub token: String,
#[serde(alias = "token_type")]
pub token_type: String,
pub expiration: i32,
pub expiration: i64,
}
impl Default for LoginResult {