Browse Source

Bump version, update docs

asonix 10 months ago
parent
commit
7a00229508
5 changed files with 8 additions and 8 deletions
  1. 1 1
      Cargo.lock
  2. 1 1
      Cargo.toml
  3. 4 4
      README.md
  4. 1 1
      docker/prod/docker-compose.yml
  5. 1 1
      relay.nix

+ 1 - 1
Cargo.lock

@@ -376,7 +376,7 @@ checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
 
 [[package]]
 name = "ap-relay"
-version = "0.3.84"
+version = "0.3.85"
 dependencies = [
  "activitystreams",
  "activitystreams-ext",

+ 1 - 1
Cargo.toml

@@ -1,7 +1,7 @@
 [package]
 name = "ap-relay"
 description = "A simple activitypub relay"
-version = "0.3.84"
+version = "0.3.85"
 authors = ["asonix <asonix@asonix.dog>"]
 license = "AGPL-3.0"
 readme = "README.md"

+ 4 - 4
README.md

@@ -10,7 +10,7 @@ $ sudo docker run --rm -it \
     -e ADDR=0.0.0.0 \
     -e SLED_PATH=/mnt/sled/db-0.34 \
     -p 8080:8080 \
-    asonix/relay:0.3.84
+    asonix/relay:0.3.85
 ```
 This will launch the relay with the database stored in "./sled/db-0.34" and listening on port 8080
 #### Cargo
@@ -157,9 +157,9 @@ Optional - Address to bind to for serving the prometheus scrape endpoint
 Optional - Port to bind to for serving the prometheus scrape endpoint
 ##### `CLIENT_POOL_SIZE`
 Optional - How many connections the relay should maintain per thread. This value will be multiplied
-by two times the number of cores available to the relay. This defaults to 20, so a 4-core machine
-will have a maximum of 160 simultaneous outbound connections. If you run into problems related to
-"Too many open files", you can either decrease this number or increase the ulimit for your system.
+by the number of cores available to the relay. This defaults to 20, so a 4-core machine will have a
+maximum of 160 simultaneous outbound connections. If you run into problems related to "Too many open
+files", you can either decrease this number or increase the ulimit for your system.
 
 ### Subscribing
 Mastodon admins can subscribe to this relay by adding the `/inbox` route to their relay settings.

+ 1 - 1
docker/prod/docker-compose.yml

@@ -2,7 +2,7 @@ version: '3.3'
 
 services:
   relay:
-    image: asonix/relay:0.3.84
+    image: asonix/relay:0.3.85
     ports:
       - "8079:8079"
     restart: always

+ 1 - 1
relay.nix

@@ -6,7 +6,7 @@
 
 rustPlatform.buildRustPackage {
   pname = "relay";
-  version = "0.3.84";
+  version = "0.3.85";
   src = ./.;
   cargoLock.lockFile = ./Cargo.lock;