Compare commits

..
3 changed files with 4 additions and 4 deletions
+2 -1
View File
@@ -3,8 +3,9 @@ name: Release Tagging
on:
push:
branches:
- main
- devel
tags:
- 'v*' # Trigger on tags matching v*
jobs:
release:
+1 -2
View File
@@ -1,6 +1,6 @@
[package]
name = "icarus_models"
version = "0.4.1"
version = "0.4.0"
edition = "2024"
rust-version = "1.86"
description = "models used for the icarus project"
@@ -12,6 +12,5 @@ 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" }
+1 -1
View File
@@ -9,7 +9,7 @@ pub struct LoginResult {
pub token: String,
#[serde(alias = "token_type")]
pub token_type: String,
pub expiration: i64,
pub expiration: i32,
}
impl Default for LoginResult {