]> Untitled Git - lemmy.git/commitdiff
Version 0.16.1-rc.1
authorDessalines <tyhou13@gmx.com>
Tue, 15 Mar 2022 20:52:37 +0000 (16:52 -0400)
committerDessalines <tyhou13@gmx.com>
Tue, 15 Mar 2022 20:52:37 +0000 (16:52 -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 a6890d8879d1106234933fc2a108decb06a7b754..40f0518bae5d1cb2fddca5860ea74c2403106814 100644 (file)
@@ -1830,7 +1830,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1873,7 +1873,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1892,7 +1892,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1935,7 +1935,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1981,7 +1981,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -2008,7 +2008,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "proc-macro2 1.0.33",
  "quote 1.0.10",
@@ -2018,7 +2018,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -2040,7 +2040,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2052,7 +2052,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2061,7 +2061,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2070,7 +2070,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "actix",
  "actix-web",
@@ -2100,7 +2100,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -2146,7 +2146,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2186,7 +2186,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 dependencies = [
  "actix",
  "actix-web",
index 9da8ce25b61edc64423b0ae24acf042071358e5a..0e479646af80e417079056ecb233e90a082bb841 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.16.0", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.16.0", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.16.0", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.16.0", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.16.0", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.16.0", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.16.0", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.0", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.16.0", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.16.0", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.16.0", path = "./crates/routes" }
+lemmy_api = { version = "=0.16.1-rc.1", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.16.1-rc.1", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.16.1-rc.1", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.16.1-rc.1", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.16.1-rc.1", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.16.1-rc.1", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.16.1-rc.1", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.16.1-rc.1", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.1-rc.1", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.16.1-rc.1", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.16.1-rc.1", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.16.1-rc.1", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index b342ef495594ed2273cf2ece66e721418d920d63..402a0c43cfd38ad7ed7d99eaf9b575c5139cfdd7 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.0", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.0", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.0", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.0", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.0", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.0", path = "../websocket" }
+lemmy_apub = { version = "=0.16.1-rc.1", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.1-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.1-rc.1", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.1-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.1-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.1-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.1-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.1-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.1-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 2747752aab36100c38a85a1ccd1bc013350e0e88..85ddab575ec495e3de64ff26251b96b4293e0908 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.0", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
-lemmy_utils = { version = "=0.16.0", path = "../utils" }
+lemmy_db_views = { version = "=0.16.1-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.1-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.1-rc.1", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.1-rc.1", path = "../db_schema" }
+lemmy_utils = { version = "=0.16.1-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 9cbd6eeef4b00650a9babd47233e00012b51926c..a227574227673570e9884c76e66d8f569de16ffd 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.0", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.0", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.0", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.0", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.0", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.0", path = "../websocket" }
+lemmy_apub = { version = "=0.16.1-rc.1", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.1-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.1-rc.1", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.1-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.1-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.1-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.1-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.1-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.1-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 49108bcf11910218181792678af4fb85b0b2c633..4d1aad4c94b625bcfbcc2589d4a486d000b3ac19 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.0", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.0", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.0", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.0", path = "../websocket" }
+lemmy_utils = { version = "=0.16.1-rc.1", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.1-rc.1", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.16.1-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.1-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.1-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.1-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.1-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.1.2"
 bcrypt = "0.10.1"
index b95c8e60523118887ac2618b9d6e3b9c402f2b6d..5bb2c568b354fd828c1669e08e8ddc5f323e7203 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.16.0", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.16.1-rc.1", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.16.1-rc.1", path = "../apub_lib_derive" }
 chrono = "0.4.19"
 serde = { version = "1.0.131", features = ["derive"] }
 async-trait = "0.1.52"
index a79486ba7f48d1c7d66fe5c0f89767a5783d0091..c139f1b0fca2f3a37597aa6794612e3688bfc48b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index c347c83a19e389361b268d67c07057d234e2e6ab..b7f86d4354f88fe53b16987269955b8c44fcd0dc 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.0", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.1-rc.1", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.1-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 a837b85e705bfc4faf093eabedf9741e512d5529..97b9aac8d718ff9860bcffa5073595cbd7243f19 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.1-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 2e341c8077658fe5ae5c445817b3c22f4fc249c5..cf5578767156694309e0f5d01c21b4fb65f07320 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.1-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index ef72d7f80674fd301bcd300d2b78296a35cb3990..402b6b4fe8c11a4d066ba2206c7340dd59d822ce 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.1-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index 56c4420c62eb95636c7be22612f7f7fdd549907c..ded7c954cb3f9a3499606e4f2c93d01c1927177d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../utils" }
-lemmy_websocket = { version = "=0.16.0", path = "../websocket" }
-lemmy_db_views = { version = "=0.16.0", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
-lemmy_api_common = { version = "=0.16.0", path = "../api_common" }
-lemmy_apub = { version = "=0.16.0", path = "../apub" }
+lemmy_utils = { version = "=0.16.1-rc.1", path = "../utils" }
+lemmy_websocket = { version = "=0.16.1-rc.1", path = "../websocket" }
+lemmy_db_views = { version = "=0.16.1-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.1-rc.1", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.1-rc.1", path = "../db_schema" }
+lemmy_api_common = { version = "=0.16.1-rc.1", path = "../api_common" }
+lemmy_apub = { version = "=0.16.1-rc.1", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.13.0"
 actix-web = { version = "4.0.0", default-features = false, features = ["rustls"] }
index 632640e8c81e7d173561ee2859248c01e0026f83..d0370fd9b3002b84d9908218ac5e8dba49eb637c 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.16.0"
+version = "0.16.1-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 6993131ec77e68ffa520cbd4dfcccf7c38186c21..b8e8faf7b2fe59420c37cad9b84fc3a63f87b429 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.16.0"
+version = "0.16.1-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.0", path = "../utils" }
-lemmy_api_common = { version = "=0.16.0", path = "../api_common" }
-lemmy_db_schema = { version = "=0.16.0", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.0", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.0", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.16.1-rc.1", path = "../utils" }
+lemmy_api_common = { version = "=0.16.1-rc.1", path = "../api_common" }
+lemmy_db_schema = { version = "=0.16.1-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.1-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.1-rc.1", path = "../db_views_actor" }
 reqwest = { version = "0.11.7", features = ["json"] }
 reqwest-middleware = "0.1.3"
 tracing = "0.1.29"