]> Untitled Git - lemmy.git/commitdiff
Version 0.16.2-rc.1
authorDessalines <tyhou13@gmx.com>
Thu, 24 Mar 2022 22:25:21 +0000 (18:25 -0400)
committerDessalines <tyhou13@gmx.com>
Thu, 24 Mar 2022 22:25:21 +0000 (18:25 -0400)
15 files changed:
Cargo.lock
Cargo.toml
crates/api/Cargo.toml
crates/api_common/Cargo.toml
crates/api_crud/Cargo.toml
crates/apub/Cargo.toml
crates/apub_lib/Cargo.toml
crates/apub_lib_derive/Cargo.toml
crates/db_schema/Cargo.toml
crates/db_views/Cargo.toml
crates/db_views_actor/Cargo.toml
crates/db_views_moderator/Cargo.toml
crates/routes/Cargo.toml
crates/utils/Cargo.toml
crates/websocket/Cargo.toml

index 1c9e75c3cee1f0c252949c4eedf03ba023b04fee..430f18d137f75143abb82c5a35eec2e3891e2611 100644 (file)
@@ -1830,7 +1830,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1873,7 +1873,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1893,7 +1893,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1936,7 +1936,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1982,7 +1982,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -2009,7 +2009,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "proc-macro2 1.0.33",
  "quote 1.0.10",
@@ -2019,7 +2019,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -2041,7 +2041,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2053,7 +2053,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2062,7 +2062,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2071,7 +2071,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "actix",
  "actix-web",
@@ -2101,7 +2101,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -2147,7 +2147,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2189,7 +2189,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 dependencies = [
  "actix",
  "actix-web",
index 658424ae70096a2abf7163d384f7569f28d51017..90fe4658ff4096a2f312017cc6ef789a505479b6 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -35,18 +35,18 @@ members = [
 ]
 
 [dependencies]
-lemmy_api = { version = "=0.16.1", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.16.1", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.16.1", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.16.1", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.16.1", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.16.1", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.16.1", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.16.1", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.1", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.16.1", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.16.1", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.16.1", path = "./crates/routes" }
+lemmy_api = { version = "=0.16.2-rc.1", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.16.2-rc.1", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.16.2-rc.1", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.16.2-rc.1", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.16.2-rc.1", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.16.2-rc.1", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.16.2-rc.1", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.2-rc.1", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.16.2-rc.1", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.16.2-rc.1", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.16.2-rc.1", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 3d85747f6afea528df8b24b7d86ad4361cccff31..bb1a92b5e78c7e26e8801596ac050bf2d539c0b3 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,15 +13,15 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_apub = { version = "=0.16.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.1", path = "../websocket" }
+lemmy_apub = { version = "=0.16.2-rc.1", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.2-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.2-rc.1", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.2-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.2-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.2-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.2-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.2-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 7d239a64dabd91ecdb61381f5c7c427b49db58af..1b5cd440b52e8ff4ef6e3c2b9a8d47a37aceda03 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,11 +13,11 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_db_views = { version = "=0.16.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.1", path = "../db_schema" }
-lemmy_utils = { version = "=0.16.1", path = "../utils" }
+lemmy_db_views = { version = "=0.16.2-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.2-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.2-rc.1", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "../db_schema" }
+lemmy_utils = { version = "=0.16.2-rc.1", path = "../utils" }
 serde = { version = "1.0.131", features = ["derive"] }
 diesel = "1.4.8"
 actix-web = { version = "4.0.0", default-features = false, features = ["cookies"] }
index 136f2978e30314c26fc24b5f7d8a8e5f19394f25..06e417df1f2712b652b1fb336ad59046bb749031 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -8,15 +8,15 @@ homepage = "https://join-lemmy.org/"
 documentation = "https://join-lemmy.org/docs/en/index.html"
 
 [dependencies]
-lemmy_apub = { version = "=0.16.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.1", path = "../websocket" }
+lemmy_apub = { version = "=0.16.2-rc.1", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.2-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.2-rc.1", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.2-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.2-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.2-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.2-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.2-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index a2cbbefebaec45471d7434f1dfdcf76ca12e5f7a..cc640c512178a196dac478edfe22d9b36c292770 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,13 +13,13 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.16.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.1", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.16.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.1", path = "../websocket" }
+lemmy_utils = { version = "=0.16.2-rc.1", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.2-rc.1", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.2-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.2-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.2-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.2-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.1.2"
 bcrypt = "0.10.1"
index 883fccda02233e02226624d14a969396dbf467af..9001217a59f659892f04b35790d934080ad7d615 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -8,8 +8,8 @@ homepage = "https://join-lemmy.org/"
 documentation = "https://join-lemmy.org/docs/en/index.html"
 
 [dependencies]
-lemmy_utils = { version = "=0.16.1", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.16.1", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.16.2-rc.1", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.16.2-rc.1", path = "../apub_lib_derive" }
 chrono = "0.4.19"
 serde = { version = "1.0.131", features = ["derive"] }
 async-trait = "0.1.52"
index c0c94aabd535687a366d9984ba3ad674b0fc439d..af312d06e82d303c269fc7ac2e5ba5221ec7c6a1 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index d005bbe23cf1e9ea16a09375c0e7b05064555c9b..0b9b92008faddfc2cc37574253fdb2a84fd4a1ab 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,8 +13,8 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.16.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.2-rc.1", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.2-rc.1", path = "../apub_lib" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 19ed1e501acf07e75ce1c66735c358b78cc8270a..27cb8831793145f67860dfe806248330a8bde4fd 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,7 +11,7 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_db_schema = { version = "=0.16.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
 tracing = "0.1.29"
index ccd7f9eaf1ef98a8d3b95b3f5935a2a7588fc914..6daa6d9c6556ce3fad27c437400ac55749b4f546 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,6 +11,6 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_db_schema = { version = "=0.16.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index 5f5895605c7173569d3771e0f1d2d14ac5f61728..75f64610b9b413c10a5c4c815a6b1b4de65e135d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,6 +11,6 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_db_schema = { version = "=0.16.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index c041800437d7ec77a1da87821baf62bdc89abde4..9e7663284947752a0aa2b2bc3e1788cc78a936d8 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,13 +11,13 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.16.1", path = "../utils" }
-lemmy_websocket = { version = "=0.16.1", path = "../websocket" }
-lemmy_db_views = { version = "=0.16.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.1", path = "../db_schema" }
-lemmy_api_common = { version = "=0.16.1", path = "../api_common" }
-lemmy_apub = { version = "=0.16.1", path = "../apub" }
+lemmy_utils = { version = "=0.16.2-rc.1", path = "../utils" }
+lemmy_websocket = { version = "=0.16.2-rc.1", path = "../websocket" }
+lemmy_db_views = { version = "=0.16.2-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.2-rc.1", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "../db_schema" }
+lemmy_api_common = { version = "=0.16.2-rc.1", path = "../api_common" }
+lemmy_apub = { version = "=0.16.2-rc.1", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.13.0"
 actix-web = { version = "4.0.0", default-features = false, features = ["rustls"] }
index 3aa96d970d7b4f2adb3af4945a5ad009ad55f614..0a2519517664c513ac9c5286552acb0b3b6d0096 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 277934dee3d0573ff344b9eddf43c70d3e901a36..fd10a746285f8b1fa55bfaef046ae4d3d001afc0 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.16.1"
+version = "0.16.2-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -13,11 +13,11 @@ path = "src/lib.rs"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.16.1", path = "../utils" }
-lemmy_api_common = { version = "=0.16.1", path = "../api_common" }
-lemmy_db_schema = { version = "=0.16.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.1", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.16.2-rc.1", path = "../utils" }
+lemmy_api_common = { version = "=0.16.2-rc.1", path = "../api_common" }
+lemmy_db_schema = { version = "=0.16.2-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.2-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.2-rc.1", path = "../db_views_actor" }
 reqwest = { version = "0.11.7", features = ["json"] }
 reqwest-middleware = "0.1.3"
 tracing = "0.1.29"