]> Untitled Git - lemmy.git/commitdiff
Version 0.16.3-rc.1
authorDessalines <tyhou13@gmx.com>
Fri, 8 Apr 2022 13:17:00 +0000 (09:17 -0400)
committerDessalines <tyhou13@gmx.com>
Fri, 8 Apr 2022 13:17:00 +0000 (09:17 -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 e2efe8d68df1e44ed1aabd130b82addb7b0bda6f..d98bb4b01bdc5a5391bff2e709e582647887faa4 100644 (file)
@@ -1802,7 +1802,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1845,7 +1845,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1865,7 +1865,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1908,7 +1908,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1955,7 +1955,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -1982,7 +1982,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "proc-macro2 1.0.36",
  "quote 1.0.17",
@@ -1992,7 +1992,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -2014,7 +2014,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2026,7 +2026,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2035,7 +2035,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2044,7 +2044,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "actix",
  "actix-web",
@@ -2074,7 +2074,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -2121,7 +2121,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2164,7 +2164,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 dependencies = [
  "actix",
  "actix-web",
index 93ac2939397839ca8680d8ad148d132afab2d619..9d1320199f031d2571885bd6621ef7d7068d86e1 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.16.2", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.16.2", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.16.2", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.16.2", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.16.2", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.16.2", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.16.2", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.2", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.16.2", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.16.2", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.16.2", path = "./crates/routes" }
+lemmy_api = { version = "=0.16.3-rc.1", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.16.3-rc.1", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.16.3-rc.1", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.16.3-rc.1", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.16.3-rc.1", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.16.3-rc.1", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.16.3-rc.1", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.16.3-rc.1", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.16.3-rc.1", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.16.3-rc.1", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index caf604281887f847dd944026f942fa6d37e4f20d..308221e327b5503a82abee7ef7befafb4ace7381 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.2", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.2", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.2", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.2", path = "../websocket" }
+lemmy_apub = { version = "=0.16.3-rc.1", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.3-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.3-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.3-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.12.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index f3e1c800e483f9cbb3e4d1527b7cad7a4b4a4f1f..8f76a1b457be53acd6980f6fd8eb3fd1700652ba 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.2", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
-lemmy_utils = { version = "=0.16.2", path = "../utils" }
+lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.3-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
+lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
 serde = { version = "1.0.136", features = ["derive"] }
 diesel = "1.4.8"
 actix-web = { version = "4.0.1", default-features = false, features = ["cookies"] }
index ff2eb6c519a1f4ad83aa894249809738f03b0221..07611329536d24d9ba823b52b0962a96eef2e50e 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../apub" }
-lemmy_apub_lib = { version = "=0.16.2", path = "../apub_lib" }
-lemmy_utils = { version = "=0.16.2", path = "../utils" }
-lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.16.2", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.2", path = "../websocket" }
+lemmy_apub = { version = "=0.16.3-rc.1", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.3-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.3-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.3-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.12.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 5521b3a40ac886ce0244ac46d0956453b48511e8..e5f59bb99c0e786ae433737de1f3c02a3819d207 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.2", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
-lemmy_websocket = { version = "=0.16.2", path = "../websocket" }
+lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.3-rc.1", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.3-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.2.1"
 bcrypt = "0.12.1"
index 411ae9bdf2e6d8aec23b8d98770a55578e982c21..cbedb075590c9fcf2bf39bc89ce0fbdc1833f263 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.16.2", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.16.3-rc.1", path = "../apub_lib_derive" }
 chrono = "0.4.19"
 serde = { version = "1.0.136", features = ["derive"] }
 async-trait = "0.1.53"
index 73ec5320c9754fd02f4a54330def623995344394..0ca0d72d8b27baa0c5f4a476ec452166f9206ee4 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index b416f59640c3c5c96b98e4b3256f9f7680860ecb..2543118305895fe035ee3c2770edf221d1cf2b59 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../utils" }
-lemmy_apub_lib = { version = "=0.16.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.3-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 70ce064d00c2740ca50cbb65e1c333564295f2cb..7efd509d7bed747cda81dc1ecf2f2e566baa8745 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.136", features = ["derive"] }
 tracing = "0.1.32"
index a54124e789e65ebfa5c8bd1e8361e8062a362602..4ea415b7b42b56c45d74404d8fcca826ce88acd9 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.136", features = ["derive"] }
index 7b9d99ec502c9fae085911a9606b7b43ae3b0698..59fb0c51b11e795811bd07db451e98687b1b0b09 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.136", features = ["derive"] }
index fa1763f27baaf74fc65244cd4eaefff01944b587..009be0a5352d4e6460e1ff7189ec39310a5a7f52 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../utils" }
-lemmy_websocket = { version = "=0.16.2", path = "../websocket" }
-lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
-lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
-lemmy_apub = { version = "=0.16.2", path = "../apub" }
+lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
+lemmy_websocket = { version = "=0.16.3-rc.1", path = "../websocket" }
+lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
+lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
+lemmy_apub = { version = "=0.16.3-rc.1", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.13.0"
 actix-web = { version = "4.0.1", default-features = false, features = ["rustls"] }
index 2489cc3574912df4be37fe8dc947a8d740e2ac6f..7ab0b966847dfc20c6df0e067064866e0111669d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.16.2"
+version = "0.16.3-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 738b56a26fd0702213376dfb121dcc118583a6b3..21ea3d6f99998ab921a842af99344f22622fd964 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.16.2"
+version = "0.16.3-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.2", path = "../utils" }
-lemmy_api_common = { version = "=0.16.2", path = "../api_common" }
-lemmy_db_schema = { version = "=0.16.2", path = "../db_schema" }
-lemmy_db_views = { version = "=0.16.2", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.16.2", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.16.3-rc.1", path = "../utils" }
+lemmy_api_common = { version = "=0.16.3-rc.1", path = "../api_common" }
+lemmy_db_schema = { version = "=0.16.3-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.3-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.3-rc.1", path = "../db_views_actor" }
 reqwest = { version = "0.11.10", features = ["json"] }
 reqwest-middleware = "0.1.5"
 tracing = "0.1.32"