Skip to content

Commit

Permalink
Version 0.16.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed May 26, 2022
1 parent a7074c8 commit 00bf9b4
Show file tree
Hide file tree
Showing 20 changed files with 98 additions and 98 deletions.
28 changes: 14 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_server"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand Down Expand Up @@ -36,15 +36,15 @@ members = [
]

[dependencies]
lemmy_api = { version = "=0.16.4-rc.10", path = "./crates/api" }
lemmy_api_crud = { version = "=0.16.4-rc.10", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.16.4-rc.10", path = "./crates/apub" }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "./crates/apub_lib" }
lemmy_utils = { version = "=0.16.4-rc.10", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "./crates/db_schema" }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "crates/api_common" }
lemmy_websocket = { version = "=0.16.4-rc.10", path = "./crates/websocket" }
lemmy_routes = { version = "=0.16.4-rc.10", path = "./crates/routes" }
lemmy_api = { version = "=0.16.4", path = "./crates/api" }
lemmy_api_crud = { version = "=0.16.4", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.16.4", path = "./crates/apub" }
lemmy_apub_lib = { version = "=0.16.4", path = "./crates/apub_lib" }
lemmy_utils = { version = "=0.16.4", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.16.4", path = "./crates/db_schema" }
lemmy_api_common = { version = "=0.16.4", path = "crates/api_common" }
lemmy_websocket = { version = "=0.16.4", path = "./crates/websocket" }
lemmy_routes = { version = "=0.16.4", path = "./crates/routes" }
diesel = "1.4.8"
diesel_migrations = "1.4.0"
serde = { version = "1.0.136", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion api_tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"eslint": "^7.30.0",
"eslint-plugin-jane": "^9.0.3",
"jest": "^27.0.6",
"lemmy-js-client": "0.16.0-rc.1",
"lemmy-js-client": "0.16.4",
"node-fetch": "^2.6.1",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
Expand Down
8 changes: 4 additions & 4 deletions api_tests/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3076,10 +3076,10 @@ language-tags@^1.0.5:
dependencies:
language-subtag-registry "~0.3.2"

[email protected].0-rc.1:
version "0.16.0-rc.1"
resolved "https://registry.yarnpkg.com/lemmy-js-client/-/lemmy-js-client-0.16.0-rc.1.tgz#14c4a526abf4b171c8afe4efbe2a62dcaf6a6f17"
integrity sha512-0hR/gHHsokp46whIHGMBQO2zBKWM7bT6mwKNMZxPvyJo+YW9EbKTO5edjF5E4v8nf3FuIE+gFtm5NFAjCaeWJg==
[email protected].4:
version "0.16.4"
resolved "https://registry.yarnpkg.com/lemmy-js-client/-/lemmy-js-client-0.16.4.tgz#d24bae2b0d93c4d13eb4a5e5ddceaa2999f94740"
integrity sha512-EFHl6tbFZ0jk8VE68bgZOXoWuNHVzfcsyoAEZeHP6f8PkQ1g9zjxB/e3b5cIG2fFzOLsYIDh2w/SJy21WkFiiA==

leven@^3.1.0:
version "3.1.0"
Expand Down
20 changes: 10 additions & 10 deletions crates/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_api"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -13,15 +13,15 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_apub = { version = "=0.16.4-rc.10", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views", features = ["full"] }
lemmy_db_views_moderator = { version = "=0.16.4-rc.10", path = "../db_views_moderator", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4-rc.10", path = "../websocket" }
lemmy_apub = { version = "=0.16.4", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.4", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4", path = "../db_views", features = ["full"] }
lemmy_db_views_moderator = { version = "=0.16.4", path = "../db_views_moderator", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4", path = "../websocket" }
diesel = "1.4.8"
bcrypt = "0.12.1"
chrono = { version = "0.4.19", features = ["serde"], default-features = false }
Expand Down
12 changes: 6 additions & 6 deletions crates/api_common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_api_common"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -18,11 +18,11 @@ full = ["diesel", "tracing", "rosetta-i18n", "chrono", "actix-web", "lemmy_utils
"percent-encoding", "encoding", "reqwest-middleware", "webpage"]

[dependencies]
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.4-rc.10", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema", default-features = false }
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils", optional = true }
lemmy_db_views = { version = "=0.16.4", path = "../db_views" }
lemmy_db_views_moderator = { version = "=0.16.4", path = "../db_views_moderator" }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema", default-features = false }
lemmy_utils = { version = "=0.16.4", path = "../utils", optional = true }
serde = { version = "1.0.136", features = ["derive"] }
url = "2.2.2"
actix-web = { version = "4.0.1", default-features = false, features = ["cookies"], optional = true }
Expand Down
18 changes: 9 additions & 9 deletions crates/api_crud/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
[package]
name = "lemmy_api_crud"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
homepage = "https://join-lemmy.org/"
documentation = "https://join-lemmy.org/docs/en/index.html"

[dependencies]
lemmy_apub = { version = "=0.16.4-rc.10", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4-rc.10", path = "../websocket" }
lemmy_apub = { version = "=0.16.4", path = "../apub" }
lemmy_apub_lib = { version = "=0.16.4", path = "../apub_lib" }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4", path = "../websocket" }
bcrypt = "0.12.1"
serde_json = { version = "1.0.79", features = ["preserve_order"] }
serde = { version = "1.0.136", features = ["derive"] }
Expand Down
16 changes: 8 additions & 8 deletions crates/apub/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_apub"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -13,13 +13,13 @@ path = "src/lib.rs"
doctest = false

[dependencies]
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils" }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "../apub_lib" }
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4-rc.10", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4-rc.10", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4-rc.10", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4-rc.10", path = "../websocket" }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_apub_lib = { version = "=0.16.4", path = "../apub_lib" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema", features = ["full"] }
lemmy_db_views = { version = "=0.16.4", path = "../db_views", features = ["full"] }
lemmy_db_views_actor = { version = "=0.16.4", path = "../db_views_actor", features = ["full"] }
lemmy_api_common = { version = "=0.16.4", path = "../api_common", features = ["full"] }
lemmy_websocket = { version = "=0.16.4", path = "../websocket" }
diesel = "1.4.8"
activitystreams-kinds = "0.2.1"
chrono = { version = "0.4.19", features = ["serde"], default-features = false }
Expand Down
6 changes: 3 additions & 3 deletions crates/apub_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "lemmy_apub_lib"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
homepage = "https://join-lemmy.org/"
documentation = "https://join-lemmy.org/docs/en/index.html"

[dependencies]
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils" }
lemmy_apub_lib_derive = { version = "=0.16.4-rc.10", path = "../apub_lib_derive" }
lemmy_utils = { version = "=0.16.4", path = "../utils" }
lemmy_apub_lib_derive = { version = "=0.16.4", path = "../apub_lib_derive" }
chrono = { version = "0.4.19", default-features = false }
serde = { version = "1.0.136", features = ["derive"] }
async-trait = "0.1.53"
Expand Down
2 changes: 1 addition & 1 deletion crates/apub_lib_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_apub_lib_derive"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand Down
6 changes: 3 additions & 3 deletions crates/db_schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_schema"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -23,8 +23,8 @@ url = { version = "2.2.2", features = ["serde"] }
strum = "0.24.0"
strum_macros = "0.24.0"
serde_json = { version = "1.0.79", features = ["preserve_order"], optional = true }
lemmy_apub_lib = { version = "=0.16.4-rc.10", path = "../apub_lib", optional = true }
lemmy_utils = { version = "=0.16.4-rc.10", path = "../utils", optional = true }
lemmy_apub_lib = { version = "=0.16.4", path = "../apub_lib", optional = true }
lemmy_utils = { version = "=0.16.4", path = "../utils", optional = true }
bcrypt = { version = "0.12.1", optional = true }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
diesel-derive-newtype = { version = "0.1.2", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/db_views/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -14,7 +14,7 @@ doctest = false
full = ["lemmy_db_schema/full", "diesel", "tracing"]

[dependencies]
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema" }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
serde = { version = "1.0.136", features = ["derive"] }
tracing = { version = "0.1.32", optional = true }
Expand Down
4 changes: 2 additions & 2 deletions crates/db_views_actor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views_actor"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -14,6 +14,6 @@ doctest = false
full = ["lemmy_db_schema/full", "diesel"]

[dependencies]
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema" }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
serde = { version = "1.0.136", features = ["derive"] }
4 changes: 2 additions & 2 deletions crates/db_views_moderator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lemmy_db_views_moderator"
version = "0.16.4-rc.10"
version = "0.16.4"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand All @@ -14,6 +14,6 @@ doctest = false
full = ["lemmy_db_schema/full", "diesel"]

[dependencies]
lemmy_db_schema = { version = "=0.16.4-rc.10", path = "../db_schema" }
lemmy_db_schema = { version = "=0.16.4", path = "../db_schema" }
diesel = { version = "1.4.8", features = ["postgres","chrono","r2d2","serde_json"], optional = true }
serde = { version = "1.0.136", features = ["derive"] }
Loading

0 comments on commit 00bf9b4

Please sign in to comment.