]> Untitled Git - lemmy.git/commitdiff
Version 0.16.0-rc.1
authorDessalines <tyhou13@gmx.com>
Wed, 2 Mar 2022 17:41:11 +0000 (12:41 -0500)
committerDessalines <tyhou13@gmx.com>
Wed, 2 Mar 2022 17:41:11 +0000 (12:41 -0500)
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 299a18667de3c28431bfb42fd25594c8de061ac7..9ea8afb7b6df4e904e8c4564e72de6cfe99d3f3a 100644 (file)
@@ -1804,7 +1804,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1847,7 +1847,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1866,7 +1866,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1909,7 +1909,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "activitystreams-kinds",
  "actix",
@@ -1955,7 +1955,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "actix-web",
  "anyhow",
@@ -1982,7 +1982,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "proc-macro2 1.0.33",
  "quote 1.0.10",
@@ -1992,7 +1992,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -2014,7 +2014,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2026,7 +2026,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2035,7 +2035,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -2044,7 +2044,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "actix",
  "actix-http",
@@ -2075,7 +2075,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "actix",
  "actix-rt",
@@ -2121,7 +2121,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2161,7 +2161,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 dependencies = [
  "actix",
  "actix-web",
index 898a8ceb2384b6b6d51e871a1daf8014eb2b1095..4699cd64ff650514c4b1215324c61018bef1de3b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.15.1", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.15.1", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.15.1", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.15.1", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.15.1", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.15.1", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.15.1", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.15.1", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.15.1", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.15.1", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.15.1", path = "./crates/routes" }
+lemmy_api = { version = "=0.16.0-rc.1", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.16.0-rc.1", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.16.0-rc.1", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.16.0-rc.1", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.16.0-rc.1", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.16.0-rc.1", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.1", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.16.0-rc.1", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.16.0-rc.1", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.16.0-rc.1", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.16.0-rc.1", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 2ea72e2c9f67d5458f9eac73801f0d2280af40fe..5f55e07e75e93c5c9c4e0e58bfa34b02c68b2714 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.15.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.15.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.15.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.15.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.15.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.15.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.15.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.15.1", path = "../websocket" }
+lemmy_apub = { version = "=0.16.0-rc.1", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.0-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.0-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.0-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 74fe6ab94b7aed468f7102cd48d34fe52ad9c624..b18bbe25f86e4bba34364d5b8d87f72257fda04a 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.15.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.15.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.15.1", path = "../db_schema" }
-lemmy_utils = { version = "=0.15.1", path = "../utils" }
+lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.0-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
+lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
 serde = { version = "1.0.131", features = ["derive"] }
 diesel = "1.4.8"
 actix-web = { version = "4.0.0-beta.18", default-features = false, features = ["cookies"] }
index 7cefb59a0a706df13e9bf2f8c0ccac351ae98cf4..8ea126131bc3633e40fcfef8897169c3979e48b9 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../apub" }
-lemmy_apub_lib = { version = "=0.15.1", path = "../apub_lib" }
-lemmy_utils = { version = "=0.15.1", path = "../utils" }
-lemmy_db_schema = { version = "=0.15.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.15.1", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.15.1", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.15.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.15.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.15.1", path = "../websocket" }
+lemmy_apub = { version = "=0.16.0-rc.1", path = "../apub" }
+lemmy_apub_lib = { version = "=0.16.0-rc.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
+lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.16.0-rc.1", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.0-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 0c65ebf3a40a934d6299d4914f8da79b23a073f2..e043a6ce7daa2e60d49f2b2fb447e73be48b7e69 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.15.1", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.15.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.15.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.15.1", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.15.1", path = "../api_common" }
-lemmy_websocket = { version = "=0.15.1", path = "../websocket" }
+lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.0-rc.1", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
+lemmy_websocket = { version = "=0.16.0-rc.1", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams-kinds = "0.1.2"
 bcrypt = "0.10.1"
index 4ec408f5eef110e245c2206637ae44e2b6a96c1e..0650485f6648d52a5565c96cf4fcb7d388ad0dab 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.15.1", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.16.0-rc.1", path = "../apub_lib_derive" }
 chrono = "0.4.19"
 serde = { version = "1.0.131", features = ["derive"] }
 async-trait = "0.1.52"
index 0f3f6a2d22c5ac46e3e570aa418ca2e7e154ef6c..c807d1eb0dbcc12aa26e8a32f7ae82dca9f4f18e 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 514195bb8b877372a15f6ba2437b9195ddea1e0b..0ecd78702001305ceea4d3a7673825eed8c16a75 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../utils" }
-lemmy_apub_lib = { version = "=0.15.1", path = "../apub_lib" }
+lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
+lemmy_apub_lib = { version = "=0.16.0-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 a019b93c20e1ddbfed734f576a3aaf0ef297970f..ccdbf34758845ce9ddd4d70b59459297aa642e2a 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.0-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 daf5cf5c227f860fc07440a097e7fbac930c690a..a69334782c98914d622c1c6f0a3be74ab8a40f6e 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index 75d53fe7ddecccb5ab7d7f8a590a3ccedbc66a8a..205e11af4887a80b812498fa347dacd85987a33b 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.131", features = ["derive"] }
index fa16b30957d01f7127ef840cb66e8eb949331fc7..6bbefc6a2a2f2f16db6c4bd7889f992c182e5adb 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../utils" }
-lemmy_websocket = { version = "=0.15.1", path = "../websocket" }
-lemmy_db_views = { version = "=0.15.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.15.1", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.15.1", path = "../db_schema" }
-lemmy_api_common = { version = "=0.15.1", path = "../api_common" }
-lemmy_apub = { version = "=0.15.1", path = "../apub" }
+lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
+lemmy_websocket = { version = "=0.16.0-rc.1", path = "../websocket" }
+lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
+lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
+lemmy_apub = { version = "=0.16.0-rc.1", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.12.0"
 actix-web = { version = "4.0.0-beta.18", default-features = false, features = ["rustls"] }
index 4f9e68f1693639eeacdc9aab9a182ddf1af1bb55..f9400fb9834a1091967447261634f7f15546c274 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.15.1"
+version = "0.16.0-rc.1"
 edition = "2021"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index e9def8eb16d403ec13e85dff6c4a607fe5e0949d..f6c7539ea4466be2214c178ce96c85e03db4515d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.15.1"
+version = "0.16.0-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.15.1", path = "../utils" }
-lemmy_api_common = { version = "=0.15.1", path = "../api_common" }
-lemmy_db_schema = { version = "=0.15.1", path = "../db_schema" }
-lemmy_db_views = { version = "=0.15.1", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.15.1", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.16.0-rc.1", path = "../utils" }
+lemmy_api_common = { version = "=0.16.0-rc.1", path = "../api_common" }
+lemmy_db_schema = { version = "=0.16.0-rc.1", path = "../db_schema" }
+lemmy_db_views = { version = "=0.16.0-rc.1", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.16.0-rc.1", path = "../db_views_actor" }
 reqwest = { version = "0.11.7", features = ["json"] }
 reqwest-middleware = "0.1.3"
 tracing = "0.1.29"