bump version

This commit is contained in:
asonix 2023-11-13 17:10:43 -06:00
parent 53f95a6206
commit ec1d1d7ba4
4 changed files with 4 additions and 7 deletions

2
Cargo.lock generated
View file

@ -1556,7 +1556,7 @@ checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
[[package]]
name = "pict-rs-aggregator"
version = "0.5.0-beta.1"
version = "0.5.0-beta.2"
dependencies = [
"actix-rt",
"actix-web",

View file

@ -1,7 +1,7 @@
[package]
name = "pict-rs-aggregator"
description = "A simple image aggregation service for pict-rs"
version = "0.5.0-beta.1"
version = "0.5.0-beta.2"
authors = ["asonix <asonix@asonix.dog>"]
license = "AGPL-3.0"
readme = "README.md"

View file

@ -6,13 +6,10 @@
rustPlatform.buildRustPackage {
pname = "pict-rs-aggregator";
version = "0.5.0-alpha.1";
version = "0.5.0-beta.2";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
PROTOC = "${protobuf}/bin/protoc";
PROTOC_INCLUDE = "${protobuf}/include";
nativeBuildInputs = [ ];
passthru.tests = { inherit (nixosTests) pict-rs-aggregator; };

View file

@ -41,7 +41,7 @@ async fn main() -> color_eyre::Result<()> {
let client = Client::builder()
.wrap(Tracing)
.timeout(Duration::from_secs(30))
.add_default_header(("User-Agent", "pict_rs_aggregator-v0.5.0-beta.1"))
.add_default_header(("User-Agent", "pict_rs_aggregator-v0.5.0-beta.2"))
.disable_redirects()
.finish();