Bump versions to 0.6.0

pull/201/head fitnesstrax-0.6.0
Savanni D'Gerinel 2024-02-19 18:47:48 -05:00
parent 9e7350b087
commit a1441f7bb1
4 changed files with 15 additions and 4 deletions

2
Cargo.lock generated
View File

@ -936,7 +936,7 @@ checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6"
[[package]]
name = "fitnesstrax"
version = "0.5.0"
version = "0.6.0"
dependencies = [
"async-channel",
"async-trait",

View File

@ -2989,7 +2989,7 @@ rec {
};
"fitnesstrax" = rec {
crateName = "fitnesstrax";
version = "0.5.0";
version = "0.6.0";
edition = "2021";
crateBin = [
{
@ -3384,6 +3384,13 @@ rec {
crateName = "ft-core";
version = "0.1.0";
edition = "2021";
crateBin = [
{
name = "legacy-importer";
path = "src/bin/legacy-importer.rs";
requiredFeatures = [ ];
}
];
# We can't filter paths with references in Nix 2.4
# See https://github.com/NixOS/nix/issues/5410
src = if ((lib.versionOlder builtins.nixVersion "2.4pre20211007") || (lib.versionOlder "2.5" builtins.nixVersion ))
@ -3412,6 +3419,10 @@ rec {
packageId = "serde 1.0.193";
features = [ "derive" ];
}
{
name = "serde_json";
packageId = "serde_json";
}
];
devDependencies = [
{

View File

@ -1,6 +1,6 @@
[package]
name = "fitnesstrax"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -36,7 +36,7 @@ const RESOURCE_BASE_PATH: &str = "/com/luminescent-dreams/fitnesstrax/";
fn setup_app_about_action(app: &adw::Application) {
let action = ActionEntry::builder("about")
.activate(|app: &adw::Application, _, _| {
.activate(|_app: &adw::Application, _, _| {
let window = about::AboutWindow::default();
window.present();
}).build();