Compare commits

...

5 Commits

Author SHA1 Message Date
github-actions[bot]
154f9c624a chore: release v0.1.1 2024-10-30 22:02:50 +00:00
f310db6722 Final dependency update 2024-10-30 16:02:09 -06:00
1433ca24cc Updated serde version to get minimal_versions job to pass 2024-10-30 15:55:28 -06:00
fa8aefe049 Updated strum_macros dependency 2024-10-30 15:52:31 -06:00
88f16f63c2 Updated all dependencies for alpha release 2024-10-30 15:48:29 -06:00
4 changed files with 533 additions and 323 deletions
+16
View File
@@ -0,0 +1,16 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
## [0.1.1](https://github.com/Dark-Alex-17/managarr/compare/v0.1.0...v0.1.1) - 2024-10-30
### Other
- Final dependency update
- Updated serde version to get minimal_versions job to pass
- Updated strum_macros dependency
Generated
+508 -317
View File
File diff suppressed because it is too large Load Diff
+6 -6
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "managarr" name = "managarr"
version = "0.1.0" version = "0.1.1"
authors = ["Alex Clarke <alex.j.tusa@gmail.com>"] authors = ["Alex Clarke <alex.j.tusa@gmail.com>"]
description = "A TUI and CLI to manage your Servarrs" description = "A TUI and CLI to manage your Servarrs"
keywords = ["managarr", "tui-rs", "dashboard", "servarr", "tui"] keywords = ["managarr", "tui-rs", "dashboard", "servarr", "tui"]
@@ -17,7 +17,7 @@ exclude = [".github", "CONTRIBUTING.md", "*.log", "tags"]
anyhow = "1.0.68" anyhow = "1.0.68"
backtrace = "0.3.67" backtrace = "0.3.67"
bimap = { version = "0.6.3", features = ["serde"] } bimap = { version = "0.6.3", features = ["serde"] }
chrono = { version = "0.4", features = ["serde"] } chrono = { version = "0.4.38", features = ["serde"] }
confy = { version = "0.6.0", default-features = false, features = [ confy = { version = "0.6.0", default-features = false, features = [
"yaml_conf", "yaml_conf",
] } ] }
@@ -27,13 +27,13 @@ human-panic = "1.1.3"
indoc = "2.0.0" indoc = "2.0.0"
log = "0.4.17" log = "0.4.17"
log4rs = { version = "1.2.0", features = ["file_appender"] } log4rs = { version = "1.2.0", features = ["file_appender"] }
regex = "1.7.1" regex = "1.11.1"
reqwest = { version = "0.11.14", features = ["json"] } reqwest = { version = "0.11.14", features = ["json"] }
serde_yaml = "0.9.16" serde_yaml = "0.9.16"
serde_json = "1.0.91" serde_json = "1.0.91"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0.214", features = ["derive"] }
strum = { version = "0.26.1", features = ["derive"] } strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.1" strum_macros = "0.26.4"
tokio = { version = "1.36.0", features = ["full"] } tokio = { version = "1.36.0", features = ["full"] }
tokio-util = "0.7.8" tokio-util = "0.7.8"
ratatui = { version = "0.28.0", features = ["all-widgets"] } ratatui = { version = "0.28.0", features = ["all-widgets"] }
+3
View File
@@ -32,6 +32,9 @@ lint-fix:
fmt: fmt:
@cargo fmt @cargo fmt
minimal-versions:
@cargo +nightly update -Zdirect-minimal-versions
## Analyze for unsafe usage - `cargo install cargo-geiger` ## Analyze for unsafe usage - `cargo install cargo-geiger`
analyze: analyze:
@cargo geiger @cargo geiger