Bump version
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
asonix 2023-06-23 14:32:14 -05:00
parent d40db33eb5
commit e005adfcf8
5 changed files with 5 additions and 7 deletions

2
Cargo.lock generated
View file

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

View file

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

View file

@ -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.83
asonix/relay:0.3.84
```
This will launch the relay with the database stored in "./sled/db-0.34" and listening on port 8080
#### Cargo

View file

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

View file

@ -1,14 +1,12 @@
{ lib
, makeWrapper
, nixosTests
, protobuf
, rustPlatform
, stdenv
}:
rustPlatform.buildRustPackage {
pname = "relay";
version = "0.3.83";
version = "0.3.84";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;