From cd1da33fa1335fa3b743999ae1f2ad2a645a9c84 Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Fri, 28 Feb 2025 14:33:44 +0100 Subject: [PATCH] Version 1.0.0-alpha.2 --- Cargo.toml | 20 ++++++++++---------- crates/utils/translations | 2 +- scripts/release.sh | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5999af917..eb72aae1d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" edition = "2021" description = "A link aggregator for the fediverse" license = "AGPL-3.0" @@ -80,15 +80,15 @@ map_err_ignore = "deny" expect_used = "deny" [workspace.dependencies] -lemmy_api = { version = "=1.0.0-alpha.1", path = "./crates/api" } -lemmy_api_crud = { version = "=1.0.0-alpha.1", path = "./crates/api_crud" } -lemmy_apub = { version = "=1.0.0-alpha.1", path = "./crates/apub" } -lemmy_utils = { version = "=1.0.0-alpha.1", path = "./crates/utils", default-features = false } -lemmy_db_schema = { version = "=1.0.0-alpha.1", path = "./crates/db_schema" } -lemmy_api_common = { version = "=1.0.0-alpha.1", path = "./crates/api_common" } -lemmy_routes = { version = "=1.0.0-alpha.1", path = "./crates/routes" } -lemmy_db_views = { version = "=1.0.0-alpha.1", path = "./crates/db_views" } -lemmy_federate = { version = "=1.0.0-alpha.1", path = "./crates/federate" } +lemmy_api = { version = "=1.0.0-alpha.2", path = "./crates/api" } +lemmy_api_crud = { version = "=1.0.0-alpha.2", path = "./crates/api_crud" } +lemmy_apub = { version = "=1.0.0-alpha.2", path = "./crates/apub" } +lemmy_utils = { version = "=1.0.0-alpha.2", path = "./crates/utils", default-features = false } +lemmy_db_schema = { version = "=1.0.0-alpha.2", path = "./crates/db_schema" } +lemmy_api_common = { version = "=1.0.0-alpha.2", path = "./crates/api_common" } +lemmy_routes = { version = "=1.0.0-alpha.2", path = "./crates/routes" } +lemmy_db_views = { version = "=1.0.0-alpha.2", path = "./crates/db_views" } +lemmy_federate = { version = "=1.0.0-alpha.2", path = "./crates/federate" } activitypub_federation = { version = "0.6.2", default-features = false, features = [ "actix-web", ] } diff --git a/crates/utils/translations b/crates/utils/translations index 0dbd25377..825c31b56 160000 --- a/crates/utils/translations +++ b/crates/utils/translations @@ -1 +1 @@ -Subproject commit 0dbd253775ada2484b8d85f0d09e82780790740c +Subproject commit 825c31b562318d4b2cef6eea777ef9625f12717f diff --git a/scripts/release.sh b/scripts/release.sh index 79209f3b4..b29cce5d9 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -27,12 +27,12 @@ old_tag=$(grep version Cargo.toml | head -1 | cut -d'"' -f 2) sed -i "s/{ version = \"=$old_tag\", path/{ version = \"=$new_tag\", path/g" Cargo.toml sed -i "s/version = \"$old_tag\"/version = \"$new_tag\"/g" Cargo.toml git add Cargo.toml -cargo check git add Cargo.lock # Update the submodules git submodule update --remote git add crates/utils/translations +cargo check # The commit git commit -m"Version $new_tag"