mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-03-13 23:12:40 +00:00
Version 1.0.0-alpha.2
This commit is contained in:
parent
0ad8466f06
commit
cd1da33fa1
3 changed files with 12 additions and 12 deletions
20
Cargo.toml
20
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",
|
||||
] }
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 0dbd253775ada2484b8d85f0d09e82780790740c
|
||||
Subproject commit 825c31b562318d4b2cef6eea777ef9625f12717f
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue