Compare commits

...

4 Commits

Author SHA1 Message Date
phoenix 97853a42c1 Merge pull request 'workflow_tag_fix (#33)' (#34) from devel into main
Reviewed-on: #34
2025-04-07 01:09:43 +00:00
phoenix 6467521a02 Changed expiration field of LoginResult to i64 (#36)
Reviewed-on: #36
Co-authored-by: phoenix <kundeng00@pm.me>
Co-committed-by: phoenix <kundeng00@pm.me>
2025-04-07 00:47:51 +00:00
phoenix 6411133c95 workflow_tag_fix (#35)
Reviewed-on: #35
Co-authored-by: phoenix <kundeng94@gmail.com>
Co-committed-by: phoenix <kundeng94@gmail.com>
2025-04-05 21:59:26 +00:00
phoenix 8a08672423 workflow_tag_fix (#33)
Reviewed-on: #33
Co-authored-by: phoenix <kundeng94@gmail.com>
Co-committed-by: phoenix <kundeng94@gmail.com>
2025-04-05 21:27:50 +00:00
3 changed files with 4 additions and 4 deletions
+1 -2
View File
@@ -3,9 +3,8 @@ name: Release Tagging
on: on:
push: push:
branches: branches:
- main
- devel - devel
tags:
- 'v*' # Trigger on tags matching v*
jobs: jobs:
release: release:
+2 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "icarus_models" name = "icarus_models"
version = "0.4.0" version = "0.4.1"
edition = "2024" edition = "2024"
rust-version = "1.86" rust-version = "1.86"
description = "models used for the icarus project" description = "models used for the icarus project"
@@ -12,5 +12,6 @@ serde_json = { version = "1.0.139" }
rand = { version = "0.9" } rand = { version = "0.9" }
time = { version = "0.3.41", features = ["formatting", "macros", "parsing", "serde"] } time = { version = "0.3.41", features = ["formatting", "macros", "parsing", "serde"] }
uuid = { version = "1.16.0", features = ["v4", "serde"] } uuid = { version = "1.16.0", features = ["v4", "serde"] }
[dev-dependencies] [dev-dependencies]
tempfile = { version = "3.19.1" } tempfile = { version = "3.19.1" }
+1 -1
View File
@@ -9,7 +9,7 @@ pub struct LoginResult {
pub token: String, pub token: String,
#[serde(alias = "token_type")] #[serde(alias = "token_type")]
pub token_type: String, pub token_type: String,
pub expiration: i32, pub expiration: i64,
} }
impl Default for LoginResult { impl Default for LoginResult {