Skip to content

Commit

Permalink
Version 0.17.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dessalines committed Feb 3, 2023
1 parent ed95c61 commit 5ae409d
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 33 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

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

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.17.0"
version = "0.17.1"
edition = "2021"
description = "A link aggregator for the fediverse"
license = "AGPL-3.0"
Expand Down Expand Up @@ -49,16 +49,16 @@ members = [
]

[workspace.dependencies]
lemmy_api = { version = "=0.17.0", path = "./crates/api" }
lemmy_api_crud = { version = "=0.17.0", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.17.0", path = "./crates/apub" }
lemmy_utils = { version = "=0.17.0", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.17.0", path = "./crates/db_schema" }
lemmy_api_common = { version = "=0.17.0", path = "./crates/api_common" }
lemmy_routes = { version = "=0.17.0", path = "./crates/routes" }
lemmy_db_views = { version = "=0.17.0", path = "./crates/db_views" }
lemmy_db_views_actor = { version = "=0.17.0", path = "./crates/db_views_actor" }
lemmy_db_views_moderator = { version = "=0.17.0", path = "./crates/db_views_moderator" }
lemmy_api = { version = "=0.17.1", path = "./crates/api" }
lemmy_api_crud = { version = "=0.17.1", path = "./crates/api_crud" }
lemmy_apub = { version = "=0.17.1", path = "./crates/apub" }
lemmy_utils = { version = "=0.17.1", path = "./crates/utils" }
lemmy_db_schema = { version = "=0.17.1", path = "./crates/db_schema" }
lemmy_api_common = { version = "=0.17.1", path = "./crates/api_common" }
lemmy_routes = { version = "=0.17.1", path = "./crates/routes" }
lemmy_db_views = { version = "=0.17.1", path = "./crates/db_views" }
lemmy_db_views_actor = { version = "=0.17.1", path = "./crates/db_views_actor" }
lemmy_db_views_moderator = { version = "=0.17.1", path = "./crates/db_views_moderator" }
activitypub_federation = "0.3.4"
diesel = "2.0.2"
diesel_migrations = "2.0.0"
Expand Down
6 changes: 2 additions & 4 deletions docker/dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:
- pictrs

lemmy-ui:
image: dessalines/lemmy-ui:0.17.0
image: dessalines/lemmy-ui:0.17.1
# use this to build your local lemmy ui image for development
# run docker compose up --build
# assuming lemmy-ui is cloned besides lemmy directory
Expand Down Expand Up @@ -97,8 +97,7 @@ services:
"postgres",
"-c", "session_preload_libraries=auto_explain",
"-c", "auto_explain.log_min_duration=5ms",
"-c", "auto_explain.log_analyze=true",
"-c", "config_file=/etc/postgresql.conf"
"-c", "auto_explain.log_analyze=true"
]
networks:
- lemmyinternal
Expand All @@ -113,7 +112,6 @@ services:
- POSTGRES_DB=lemmy
volumes:
- ./volumes/postgres:/var/lib/postgresql/data
- ./customPostgresql.conf:/etc/postgresql.conf
restart: always

otel:
Expand Down
10 changes: 5 additions & 5 deletions docker/federation/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ services:
- ./volumes/pictrs_alpha:/mnt

lemmy-alpha-ui:
image: dessalines/lemmy-ui:0.17.0
image: dessalines/lemmy-ui:0.17.1
environment:
- LEMMY_INTERNAL_HOST=lemmy-alpha:8541
- LEMMY_EXTERNAL_HOST=localhost:8541
Expand Down Expand Up @@ -56,7 +56,7 @@ services:
- ./volumes/postgres_alpha:/var/lib/postgresql/data

lemmy-beta-ui:
image: dessalines/lemmy-ui:0.17.0
image: dessalines/lemmy-ui:0.17.1
environment:
- LEMMY_INTERNAL_HOST=lemmy-beta:8551
- LEMMY_EXTERNAL_HOST=localhost:8551
Expand Down Expand Up @@ -84,7 +84,7 @@ services:
- ./volumes/postgres_beta:/var/lib/postgresql/data

lemmy-gamma-ui:
image: dessalines/lemmy-ui:0.17.0
image: dessalines/lemmy-ui:0.17.1
environment:
- LEMMY_INTERNAL_HOST=lemmy-gamma:8561
- LEMMY_EXTERNAL_HOST=localhost:8561
Expand Down Expand Up @@ -113,7 +113,7 @@ services:

# An instance with only an allowlist for beta
lemmy-delta-ui:
image: dessalines/lemmy-ui:0.17.0
image: dessalines/lemmy-ui:0.17.1
environment:
- LEMMY_INTERNAL_HOST=lemmy-delta:8571
- LEMMY_EXTERNAL_HOST=localhost:8571
Expand Down Expand Up @@ -142,7 +142,7 @@ services:

# An instance who has a blocklist, with lemmy-alpha blocked
lemmy-epsilon-ui:
image: dessalines/lemmy-ui:0.17.0
image: dessalines/lemmy-ui:0.17.1
environment:
- LEMMY_INTERNAL_HOST=lemmy-epsilon:8581
- LEMMY_EXTERNAL_HOST=localhost:8581
Expand Down
4 changes: 2 additions & 2 deletions docker/prod/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ services:
- lemmy-ui

lemmy:
image: dessalines/lemmy:0.17.0
image: dessalines/lemmy:0.17.1
hostname: lemmy
networks:
- lemmyinternal
Expand All @@ -43,7 +43,7 @@ services:
- pictrs

lemmy-ui:
image: dessalines/lemmy-ui:0.17.0
image: dessalines/lemmy-ui:0.17.1
networks:
- lemmyinternal
environment:
Expand Down

0 comments on commit 5ae409d

Please sign in to comment.