Skip to content

Commit

Permalink
fix version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
seddonm1 committed Jul 17, 2023
1 parent d9f5113 commit e5cc5a9
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 17 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.3.1] - 2023-07-18

## Fixed

- Bump version in `Cargo.toml`.

## [0.3.0] - 2023-07-16

## Changed
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "s3ite"
version = "0.2.0"
version = "0.3.1"
edition = "2021"
description = "An S3 server backed by SQLite"
license = "MIT"
Expand All @@ -18,7 +18,7 @@ async-trait = "0.1.71"
base64-simd = "0.8.0"
bytes = "1.4.0"
chrono = { version = "0.4.26", default-features = false, features = ["std", "clock"] }
clap = { version = "4.3.12", optional = true, features = ["derive"] }
clap = { version = "4.3.14", optional = true, features = ["derive"] }
deadpool-sqlite = { version = "0.5.0", default-features = false, features = ["rt_tokio_1"] }
rusqlite = { version = "0.28.0", features = ["time", "uuid", "bundled"] }
futures = "0.3.28"
Expand All @@ -43,7 +43,7 @@ tracing = "0.1.37"
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.17", optional = true, features = ["env-filter", "time"] }
transform-stream = "0.3.0"
uuid = { version = "1.4.0", features = ["v4"] }
uuid = { version = "1.4.1", features = ["v4"] }

[dev-dependencies]
anyhow = { version = "1.0.72", features = ["backtrace"] }
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.70.0 as build-env
FROM rust:1.71.0 as build-env
WORKDIR /app
COPY . /app
RUN cargo build --release --bin s3ite --features binary
Expand Down

0 comments on commit e5cc5a9

Please sign in to comment.