Skip to content

Commit

Permalink
Version 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Sep 3, 2021
1 parent 83a0350 commit df997df
Show file tree
Hide file tree
Showing 18 changed files with 102 additions and 102 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_server"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
homepage = "https://join-lemmy.org/"
Expand Down Expand Up @@ -32,18 +32,18 @@ members = [
]

[dependencies]
lemmy_api = { version = "=0.12.0-rc.2", path = "./crates/api" }
lemmy_api_crud = { version = "=0.12.0-rc.2", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.12.0-rc.2", path = "./crates/apub" }
lemmy_utils = { version = "=0.12.0-rc.2", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.12.0-rc.2", path = "./crates/db_schema" }
lemmy_db_queries = { version = "=0.12.0-rc.2", path = "./crates/db_queries" }
lemmy_db_views = { version = "=0.12.0-rc.2", path = "./crates/db_views" }
lemmy_db_views_moderator = { version = "=0.12.0-rc.2", path = "./crates/db_views_moderator" }
lemmy_db_views_actor = { version = "=0.12.0-rc.2", path = "./crates/db_views_actor" }
lemmy_api_common = { version = "=0.12.0-rc.2", path = "crates/api_common" }
lemmy_websocket = { version = "=0.12.0-rc.2", path = "./crates/websocket" }
lemmy_routes = { version = "=0.12.0-rc.2", path = "./crates/routes" }
lemmy_api = { version = "=0.12.0", path = "./crates/api" }
lemmy_api_crud = { version = "=0.12.0", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.12.0", path = "./crates/apub" }
lemmy_utils = { version = "=0.12.0", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.12.0", path = "./crates/db_schema" }
lemmy_db_queries = { version = "=0.12.0", path = "./crates/db_queries" }
lemmy_db_views = { version = "=0.12.0", path = "./crates/db_views" }
lemmy_db_views_moderator = { version = "=0.12.0", path = "./crates/db_views_moderator" }
lemmy_db_views_actor = { version = "=0.12.0", path = "./crates/db_views_actor" }
lemmy_api_common = { version = "=0.12.0", path = "crates/api_common" }
lemmy_websocket = { version = "=0.12.0", path = "./crates/websocket" }
lemmy_routes = { version = "=0.12.0", path = "./crates/routes" }
diesel = "1.4.7"
diesel_migrations = "1.4.0"
chrono = { version = "0.4.19", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion ansible/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.3
0.12.0
20 changes: 10 additions & 10 deletions crates/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_api"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -11,15 +11,15 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_apub = { version = "=0.12.0-rc.2", path = "../apub" }
lemmy_utils = { version = "=0.12.0-rc.2", path = "../utils" }
lemmy_db_queries = { version = "=0.12.0-rc.2", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0-rc.2", path = "../db_schema" }
lemmy_db_views = { version = "=0.12.0-rc.2", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.12.0-rc.2", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.12.0-rc.2", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.12.0-rc.2", path = "../api_common" }
lemmy_websocket = { version = "=0.12.0-rc.2", path = "../websocket" }
lemmy_apub = { version = "=0.12.0", path = "../apub" }
lemmy_utils = { version = "=0.12.0", path = "../utils" }
lemmy_db_queries = { version = "=0.12.0", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0", path = "../db_schema" }
lemmy_db_views = { version = "=0.12.0", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.12.0", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.12.0", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.12.0", path = "../api_common" }
lemmy_websocket = { version = "=0.12.0", path = "../websocket" }
diesel = "1.4.7"
bcrypt = "0.10.1"
chrono = { version = "0.4.19", features = ["serde"] }
Expand Down
14 changes: 7 additions & 7 deletions crates/api_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_api_common"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -11,12 +11,12 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_db_queries = { version = "=0.12.0-rc.2", path = "../db_queries" }
lemmy_db_views = { version = "=0.12.0-rc.2", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.12.0-rc.2", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.12.0-rc.2", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.12.0-rc.2", path = "../db_schema" }
lemmy_utils = { version = "=0.12.0-rc.2", path = "../utils" }
lemmy_db_queries = { version = "=0.12.0", path = "../db_queries" }
lemmy_db_views = { version = "=0.12.0", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.12.0", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.12.0", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.12.0", path = "../db_schema" }
lemmy_utils = { version = "=0.12.0", path = "../utils" }
serde = { version = "1.0.129", features = ["derive"] }
log = "0.4.14"
diesel = "1.4.7"
Expand Down
20 changes: 10 additions & 10 deletions crates/api_crud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[package]
name = "lemmy_api_crud"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"

[dependencies]
lemmy_apub = { version = "=0.12.0-rc.2", path = "../apub" }
lemmy_utils = { version = "=0.12.0-rc.2", path = "../utils" }
lemmy_db_queries = { version = "=0.12.0-rc.2", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0-rc.2", path = "../db_schema" }
lemmy_db_views = { version = "=0.12.0-rc.2", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.12.0-rc.2", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.12.0-rc.2", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.12.0-rc.2", path = "../api_common" }
lemmy_websocket = { version = "=0.12.0-rc.2", path = "../websocket" }
lemmy_apub = { version = "=0.12.0", path = "../apub" }
lemmy_utils = { version = "=0.12.0", path = "../utils" }
lemmy_db_queries = { version = "=0.12.0", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0", path = "../db_schema" }
lemmy_db_views = { version = "=0.12.0", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.12.0", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.12.0", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.12.0", path = "../api_common" }
lemmy_websocket = { version = "=0.12.0", path = "../websocket" }
diesel = "1.4.7"
bcrypt = "0.10.1"
chrono = { version = "0.4.19", features = ["serde"] }
Expand Down
18 changes: 9 additions & 9 deletions crates/apub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_apub"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -11,14 +11,14 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_utils = { version = "=0.12.0-rc.2", path = "../utils" }
lemmy_apub_lib = { version = "=0.12.0-rc.2", path = "../apub_lib" }
lemmy_db_queries = { version = "=0.12.0-rc.2", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0-rc.2", path = "../db_schema" }
lemmy_db_views = { version = "=0.12.0-rc.2", path = "../db_views" }
lemmy_db_views_actor = { version = "=0.12.0-rc.2", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.12.0-rc.2", path = "../api_common" }
lemmy_websocket = { version = "=0.12.0-rc.2", path = "../websocket" }
lemmy_utils = { version = "=0.12.0", path = "../utils" }
lemmy_apub_lib = { version = "=0.12.0", path = "../apub_lib" }
lemmy_db_queries = { version = "=0.12.0", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0", path = "../db_schema" }
lemmy_db_views = { version = "=0.12.0", path = "../db_views" }
lemmy_db_views_actor = { version = "=0.12.0", path = "../db_views_actor" }
lemmy_api_common = { version = "=0.12.0", path = "../api_common" }
lemmy_websocket = { version = "=0.12.0", path = "../websocket" }
diesel = "1.4.7"
activitystreams = "0.7.0-alpha.11"
bcrypt = "0.10.1"
Expand Down
8 changes: 4 additions & 4 deletions crates/apub_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "lemmy_apub_lib"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"

[dependencies]
lemmy_utils = { version = "=0.12.0-rc.2", path = "../utils" }
lemmy_websocket = { version = "=0.12.0-rc.2", path = "../websocket" }
lemmy_apub_lib_derive = { version = "=0.12.0-rc.2", path = "../apub_lib_derive" }
lemmy_utils = { version = "=0.12.0", path = "../utils" }
lemmy_websocket = { version = "=0.12.0", path = "../websocket" }
lemmy_apub_lib_derive = { version = "=0.12.0", path = "../apub_lib_derive" }
activitystreams = "0.7.0-alpha.11"
serde = { version = "1.0.129", features = ["derive"] }
async-trait = "0.1.51"
Expand Down
2 changes: 1 addition & 1 deletion crates/apub_lib_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_apub_lib_derive"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/db_queries/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_queries"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -11,8 +11,8 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_utils = { version = "=0.12.0-rc.2", path = "../utils" }
lemmy_db_schema = { version = "=0.12.0-rc.2", path = "../db_schema" }
lemmy_utils = { version = "=0.12.0", path = "../utils" }
lemmy_db_schema = { version = "=0.12.0", path = "../db_schema" }
diesel = { version = "1.4.7", features = ["postgres","chrono","r2d2","serde_json"] }
diesel_migrations = "1.4.0"
chrono = { version = "0.4.19", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/db_schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_schema"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/db_views/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -9,8 +9,8 @@ license = "AGPL-3.0"
doctest = false

[dependencies]
lemmy_db_queries = { version = "=0.12.0-rc.2", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0-rc.2", path = "../db_schema" }
lemmy_db_queries = { version = "=0.12.0", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0", path = "../db_schema" }
diesel = { version = "1.4.7", features = ["postgres","chrono","r2d2","serde_json"] }
serde = { version = "1.0.129", features = ["derive"] }
log = "0.4.14"
Expand Down
6 changes: 3 additions & 3 deletions crates/db_views_actor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views_actor"
version = "0.12.0-rc.2"
version = "0.12.0"
edition = "2018"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -9,7 +9,7 @@ license = "AGPL-3.0"
doctest = false

[dependencies]
lemmy_db_queries = { version = "=0.12.0-rc.2", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0-rc.2", path = "../db_schema" }
lemmy_db_queries = { version = "=0.12.0", path = "../db_queries" }
lemmy_db_schema = { version = "=0.12.0", path = "../db_schema" }
diesel = { version = "1.4.7", features = ["postgres","chrono","r2d2","serde_json"] }
serde = { version = "1.0.129", features = ["derive"] }

0 comments on commit df997df

Please sign in to comment.