Skip to content

Commit

Permalink
Version 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Dec 15, 2023
1 parent a7ba5c9 commit aab3ca4
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 27 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

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

24 changes: 12 additions & 12 deletions Cargo.toml
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.19.0-rc.16"
version = "0.19.0"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand Down Expand Up @@ -84,16 +84,16 @@ unused_self = "deny"
unwrap_used = "deny"

[workspace.dependencies]
lemmy_api = { version = "=0.19.0-rc.16", path = "./crates/api" }
lemmy_api_crud = { version = "=0.19.0-rc.16", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.19.0-rc.16", path = "./crates/apub" }
lemmy_utils = { version = "=0.19.0-rc.16", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.19.0-rc.16", path = "./crates/db_schema" }
lemmy_api_common = { version = "=0.19.0-rc.16", path = "./crates/api_common" }
lemmy_routes = { version = "=0.19.0-rc.16", path = "./crates/routes" }
lemmy_db_views = { version = "=0.19.0-rc.16", path = "./crates/db_views" }
lemmy_db_views_actor = { version = "=0.19.0-rc.16", path = "./crates/db_views_actor" }
lemmy_db_views_moderator = { version = "=0.19.0-rc.16", path = "./crates/db_views_moderator" }
lemmy_api = { version = "=0.19.0", path = "./crates/api" }
lemmy_api_crud = { version = "=0.19.0", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.19.0", path = "./crates/apub" }
lemmy_utils = { version = "=0.19.0", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.19.0", path = "./crates/db_schema" }
lemmy_api_common = { version = "=0.19.0", path = "./crates/api_common" }
lemmy_routes = { version = "=0.19.0", path = "./crates/routes" }
lemmy_db_views = { version = "=0.19.0", path = "./crates/db_views" }
lemmy_db_views_actor = { version = "=0.19.0", path = "./crates/db_views_actor" }
lemmy_db_views_moderator = { version = "=0.19.0", path = "./crates/db_views_moderator" }
activitypub_federation = { version = "0.5.0-beta.6", default-features = false, features = [
"actix-web",
] }
Expand Down Expand Up @@ -164,7 +164,7 @@ lemmy_utils = { workspace = true }
lemmy_db_schema = { workspace = true }
lemmy_api_common = { workspace = true }
lemmy_routes = { workspace = true }
lemmy_federate = { version = "0.19.0-rc.16", path = "crates/federate" }
lemmy_federate = { version = "0.19.0", path = "crates/federate" }
activitypub_federation = { workspace = true }
diesel = { workspace = true }
diesel-async = { workspace = true }
Expand Down
4 changes: 2 additions & 2 deletions docker/docker-compose.yml
Expand Up @@ -25,7 +25,7 @@ services:

lemmy:
# use "image" to pull down an already compiled lemmy. make sure to comment out "build".
# image: dessalines/lemmy:0.18.4
# image: dessalines/lemmy:0.19.0
# platform: linux/x86_64 # no arm64 support. uncomment platform if using m1.
# use "build" to build your local lemmy server image for development. make sure to comment out "image".
# run: docker compose up --build
Expand Down Expand Up @@ -55,7 +55,7 @@ services:

lemmy-ui:
# use "image" to pull down an already compiled lemmy-ui. make sure to comment out "build".
image: dessalines/lemmy-ui:0.19.0-rc.14
image: dessalines/lemmy-ui:0.19.0
# platform: linux/x86_64 # no arm64 support. uncomment platform if using m1.
# use "build" to build your local lemmy ui image for development. make sure to comment out "image".
# run: docker compose up --build
Expand Down
2 changes: 1 addition & 1 deletion docker/federation/docker-compose.yml
Expand Up @@ -2,7 +2,7 @@ version: "3.7"

x-ui-default: &ui-default
init: true
image: dessalines/lemmy-ui:0.19.0-rc.3
image: dessalines/lemmy-ui:0.19.0
# assuming lemmy-ui is cloned besides lemmy directory
# build:
# context: ../../../lemmy-ui
Expand Down

0 comments on commit aab3ca4

Please sign in to comment.