]> Untitled Git - lemmy.git/commitdiff
Version 0.14.0
authorDessalines <tyhou13@gmx.com>
Wed, 17 Nov 2021 16:28:16 +0000 (11:28 -0500)
committerDessalines <tyhou13@gmx.com>
Wed, 17 Nov 2021 16:28:16 +0000 (11:28 -0500)
16 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
docker/prod/docker-compose.yml

index af298a5f352009e1b803d28de7b759112d548fd1..5f2bbb3266cf3afbf0b0ac3119ae6d228355fc10 100644 (file)
@@ -1707,7 +1707,7 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
 
 [[package]]
 name = "lemmy_api"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1752,7 +1752,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_common"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "actix-web",
  "chrono",
@@ -1770,7 +1770,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_api_crud"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "actix",
  "actix-rt",
@@ -1815,7 +1815,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "activitystreams",
  "actix",
@@ -1861,7 +1861,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "activitystreams",
  "actix-web",
@@ -1887,7 +1887,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_apub_lib_derive"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "proc-macro2 1.0.29",
  "quote 1.0.10",
@@ -1897,7 +1897,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_schema"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "bcrypt",
  "chrono",
@@ -1920,7 +1920,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1932,7 +1932,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_actor"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1941,7 +1941,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_db_views_moderator"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "diesel",
  "lemmy_db_schema",
@@ -1950,7 +1950,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_routes"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "actix",
  "actix-http",
@@ -1978,7 +1978,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_server"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "activitystreams",
  "actix",
@@ -2017,7 +2017,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_utils"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "actix-rt",
  "actix-web",
@@ -2053,7 +2053,7 @@ dependencies = [
 
 [[package]]
 name = "lemmy_websocket"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 dependencies = [
  "actix",
  "actix-web",
index 17962fd427427c4849af99363f20eb069713149b..f160fb58b7d0a6b3de01184043fe7a75148b3092 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_server"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -31,18 +31,18 @@ members = [
 ]
 
 [dependencies]
-lemmy_api = { version = "=0.14.0-rc.2", path = "./crates/api" }
-lemmy_api_crud = { version = "=0.14.0-rc.2", path = "./crates/api_crud" }
-lemmy_apub = { version = "=0.14.0-rc.2", path = "./crates/apub" }
-lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "./crates/apub_lib" }
-lemmy_utils = { version = "=0.14.0-rc.2", path = "./crates/utils" }
-lemmy_db_schema = { version = "=0.14.0-rc.2", path = "./crates/db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.2", path = "./crates/db_views" }
-lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "./crates/db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "./crates/db_views_actor" }
-lemmy_api_common = { version = "=0.14.0-rc.2", path = "crates/api_common" }
-lemmy_websocket = { version = "=0.14.0-rc.2", path = "./crates/websocket" }
-lemmy_routes = { version = "=0.14.0-rc.2", path = "./crates/routes" }
+lemmy_api = { version = "=0.14.0", path = "./crates/api" }
+lemmy_api_crud = { version = "=0.14.0", path = "./crates/api_crud" }
+lemmy_apub = { version = "=0.14.0", path = "./crates/apub" }
+lemmy_apub_lib = { version = "=0.14.0", path = "./crates/apub_lib" }
+lemmy_utils = { version = "=0.14.0", path = "./crates/utils" }
+lemmy_db_schema = { version = "=0.14.0", path = "./crates/db_schema" }
+lemmy_db_views = { version = "=0.14.0", path = "./crates/db_views" }
+lemmy_db_views_moderator = { version = "=0.14.0", path = "./crates/db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.0", path = "./crates/db_views_actor" }
+lemmy_api_common = { version = "=0.14.0", path = "crates/api_common" }
+lemmy_websocket = { version = "=0.14.0", path = "./crates/websocket" }
+lemmy_routes = { version = "=0.14.0", path = "./crates/routes" }
 diesel = "1.4.8"
 diesel_migrations = "1.4.0"
 chrono = { version = "0.4.19", features = ["serde"] }
index 980d247bbcfa533b8305082c58641c96eca3195d..8bed9c24363c1e6a55dc0321436de09f74841689 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../apub" }
-lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
-lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
-lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
+lemmy_apub = { version = "=0.14.0", path = "../apub" }
+lemmy_apub_lib = { version = "=0.14.0", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.0", path = "../utils" }
+lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.0", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.0", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.0", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 8b276b48c793bc694258c2cfa44b64b2c430cd04..5e69ab493d6ba5b3e01b150ed58556ee167a777f 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_common"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
-lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
+lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.0", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
+lemmy_utils = { version = "=0.14.0", path = "../utils" }
 serde = { version = "1.0.130", features = ["derive"] }
 log = "0.4.14"
 diesel = "1.4.8"
index 50656cfb825af808a450a12319d93630f297a9ba..6390df5a68542da190edcdaa73e54a2a6cd27860 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_api_crud"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../apub" }
-lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
-lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
-lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
-lemmy_db_views_moderator = { version = "=0.14.0-rc.2", path = "../db_views_moderator" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
+lemmy_apub = { version = "=0.14.0", path = "../apub" }
+lemmy_apub_lib = { version = "=0.14.0", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.0", path = "../utils" }
+lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
+lemmy_db_views_moderator = { version = "=0.14.0", path = "../db_views_moderator" }
+lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.0", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.0", path = "../websocket" }
 diesel = "1.4.8"
 bcrypt = "0.10.1"
 chrono = { version = "0.4.19", features = ["serde"] }
index 3643ae52acc95d8cbeaf0f9cc914b4ca0ed3d541..a8a7a83c886d05ecdb4356483748f5f7ea6aa9ac 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../utils" }
-lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
-lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
-lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
-lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
+lemmy_utils = { version = "=0.14.0", path = "../utils" }
+lemmy_apub_lib = { version = "=0.14.0", path = "../apub_lib" }
+lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
+lemmy_api_common = { version = "=0.14.0", path = "../api_common" }
+lemmy_websocket = { version = "=0.14.0", path = "../websocket" }
 diesel = "1.4.8"
 activitystreams = "0.7.0-alpha.11"
 bcrypt = "0.10.1"
index f21905c75e733971c398fb5dd0a8ca3e167a73ce..2cc661e24564457c938df52b09cb40e6fdc3944a 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../utils" }
-lemmy_apub_lib_derive = { version = "=0.14.0-rc.2", path = "../apub_lib_derive" }
+lemmy_utils = { version = "=0.14.0", path = "../utils" }
+lemmy_apub_lib_derive = { version = "=0.14.0", path = "../apub_lib_derive" }
 activitystreams = "0.7.0-alpha.11"
 serde = { version = "1.0.130", features = ["derive"] }
 async-trait = "0.1.51"
index 2365d359cc67a4cfc0b4e91f4c5ab52f0d1c4bde..a1c7c8ac702ca74da338507a19c4658a194597b0 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_apub_lib_derive"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 91ce4cd023db424b64b07dca4e1fda4ee5474e06..44b49c82c76e96490bc826c26a456f6d25ea496d 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_schema"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
@@ -11,8 +11,8 @@ documentation = "https://join-lemmy.org/docs/en/index.html"
 doctest = false
 
 [dependencies]
-lemmy_utils = { version = "=0.14.0-rc.2", path = "../utils" }
-lemmy_apub_lib = { version = "=0.14.0-rc.2", path = "../apub_lib" }
+lemmy_utils = { version = "=0.14.0", path = "../utils" }
+lemmy_apub_lib = { version = "=0.14.0", 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 6241dadf2fbb48803384e181f071035a0e9ba71c..e6af5258db8a7da03af9d716107b236adab46397 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
 log = "0.4.14"
index ecbd7b99ebf80d2b276d398ebf33f889ace071c1..6b84a657ffddfaa5b88589cedddfaf001f376d20 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_actor"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
index 77c89d6f235da7fcaf71f7fa1ca750ecf07ac223..e142e4616ca7cda093462119352a138036ad41eb 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_db_views_moderator"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../db_schema" }
+lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
 diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"] }
 serde = { version = "1.0.130", features = ["derive"] }
index d6adebd35b4a23d8f7ff95abd5ae2c35eee536d0..4eebcb5ed20525dbcbf56e2ebe98164d8e4127e9 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_routes"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../utils" }
-lemmy_websocket = { version = "=0.14.0-rc.2", path = "../websocket" }
-lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
-lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
-lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
-lemmy_apub = { version = "=0.14.0-rc.2", path = "../apub" }
+lemmy_utils = { version = "=0.14.0", path = "../utils" }
+lemmy_websocket = { version = "=0.14.0", path = "../websocket" }
+lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
+lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
+lemmy_api_common = { version = "=0.14.0", path = "../api_common" }
+lemmy_apub = { version = "=0.14.0", path = "../apub" }
 diesel = "1.4.8"
 actix = "0.12.0"
 actix-web = { version = "4.0.0-beta.9", default-features = false, features = ["rustls"] }
index d24055a6772d6f2324480f684ab44f7e51183062..99b8c02dd4bf617dd64433ba05eec67057021dc6 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_utils"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 description = "A link aggregator for the fediverse"
 license = "AGPL-3.0"
index 59b9413ee8fa48606b37aa1a4efa568985e13c0e..c1d8995ae78161c97dd9d9c4226f79ce17436b72 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lemmy_websocket"
-version = "0.14.0-rc.2"
+version = "0.14.0"
 edition = "2018"
 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.14.0-rc.2", path = "../utils" }
-lemmy_api_common = { version = "=0.14.0-rc.2", path = "../api_common" }
-lemmy_db_schema = { version = "=0.14.0-rc.2", path = "../db_schema" }
-lemmy_db_views = { version = "=0.14.0-rc.2", path = "../db_views" }
-lemmy_db_views_actor = { version = "=0.14.0-rc.2", path = "../db_views_actor" }
+lemmy_utils = { version = "=0.14.0", path = "../utils" }
+lemmy_api_common = { version = "=0.14.0", path = "../api_common" }
+lemmy_db_schema = { version = "=0.14.0", path = "../db_schema" }
+lemmy_db_views = { version = "=0.14.0", path = "../db_views" }
+lemmy_db_views_actor = { version = "=0.14.0", path = "../db_views_actor" }
 reqwest = { version = "0.11.4", features = ["json"] }
 log = "0.4.14"
 rand = "0.8.4"
index 2b39ab18a69c59580c6b08d428ec0078dd2c048b..895b49693675169932393c148b4036934171f026 100644 (file)
@@ -12,7 +12,7 @@ services:
     restart: always
 
   lemmy:
-    image: dessalines/lemmy:0.13.0
+    image: dessalines/lemmy:0.14.0
     ports:
       - "127.0.0.1:8536:8536"
     restart: always
@@ -25,7 +25,7 @@ services:
       - pictrs
 
   lemmy-ui:
-    image: dessalines/lemmy-ui:0.13.0
+    image: dessalines/lemmy-ui:0.14.0
     ports:
       - "127.0.0.1:1235:1234"
     restart: always