Skip to content

Commit e5cc5a9

Browse files
committed
fix version bump
1 parent d9f5113 commit e5cc5a9

4 files changed

Lines changed: 23 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.1] - 2023-07-18
9+
10+
## Fixed
11+
12+
- Bump version in `Cargo.toml`.
13+
814
## [0.3.0] - 2023-07-16
915

1016
## Changed

Cargo.lock

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "s3ite"
3-
version = "0.2.0"
3+
version = "0.3.1"
44
edition = "2021"
55
description = "An S3 server backed by SQLite"
66
license = "MIT"
@@ -18,7 +18,7 @@ async-trait = "0.1.71"
1818
base64-simd = "0.8.0"
1919
bytes = "1.4.0"
2020
chrono = { version = "0.4.26", default-features = false, features = ["std", "clock"] }
21-
clap = { version = "4.3.12", optional = true, features = ["derive"] }
21+
clap = { version = "4.3.14", optional = true, features = ["derive"] }
2222
deadpool-sqlite = { version = "0.5.0", default-features = false, features = ["rt_tokio_1"] }
2323
rusqlite = { version = "0.28.0", features = ["time", "uuid", "bundled"] }
2424
futures = "0.3.28"
@@ -43,7 +43,7 @@ tracing = "0.1.37"
4343
tracing-error = "0.2.0"
4444
tracing-subscriber = { version = "0.3.17", optional = true, features = ["env-filter", "time"] }
4545
transform-stream = "0.3.0"
46-
uuid = { version = "1.4.0", features = ["v4"] }
46+
uuid = { version = "1.4.1", features = ["v4"] }
4747

4848
[dev-dependencies]
4949
anyhow = { version = "1.0.72", features = ["backtrace"] }

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM rust:1.70.0 as build-env
1+
FROM rust:1.71.0 as build-env
22
WORKDIR /app
33
COPY . /app
44
RUN cargo build --release --bin s3ite --features binary

0 commit comments

Comments
 (0)