mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-20 11:21:14 +00:00
Bump version
This commit is contained in:
parent
8f428cb7c6
commit
e10cb1401d
6 changed files with 6 additions and 6 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -1642,7 +1642,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "pict-rs"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
dependencies = [
|
||||
"actix-form-data",
|
||||
"actix-rt",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "pict-rs"
|
||||
description = "A simple image hosting service"
|
||||
version = "0.4.0"
|
||||
version = "0.4.1"
|
||||
authors = ["asonix <asonix@asonix.dog>"]
|
||||
license = "AGPL-3.0"
|
||||
readme = "README.md"
|
||||
|
|
|
@ -2,7 +2,7 @@ version: '3.3'
|
|||
|
||||
services:
|
||||
pictrs:
|
||||
image: asonix/pictrs:0.4.0
|
||||
image: asonix/pictrs:0.4.1
|
||||
ports:
|
||||
- "127.0.0.1:8080:8080"
|
||||
restart: always
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "pict-rs";
|
||||
version = "0.4.0";
|
||||
version = "0.4.1";
|
||||
src = ./.;
|
||||
|
||||
cargoLock = {
|
||||
|
|
|
@ -69,7 +69,7 @@ targets = 'warn,tracing_actix_web=info,actix_server=info,actix_web=info'
|
|||
#
|
||||
# services:
|
||||
# pictrs:
|
||||
# image: asonix/pictrs:0.4.0
|
||||
# image: asonix/pictrs:0.4.1
|
||||
# ports:
|
||||
# - "127.0.0.1:8080:8080"
|
||||
# - "127.0.0.1:6669:6669" # this is the line that exposes console
|
||||
|
|
|
@ -1101,7 +1101,7 @@ fn build_client() -> awc::Client {
|
|||
Client::builder()
|
||||
.connector(connector)
|
||||
.wrap(Tracing)
|
||||
.add_default_header(("User-Agent", "pict-rs v0.4.0-main"))
|
||||
.add_default_header(("User-Agent", "pict-rs v0.4.1"))
|
||||
.timeout(Duration::from_secs(30))
|
||||
.finish()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue