Compare commits

...

3 Commits

Author SHA1 Message Date
Paul van Tilburg ff12875a08
Bump the version to 0.3.2
Check and lint using Cargo / Check and lint (push) Successful in 2m41s Details
Release / Release (push) Successful in 1m20s Details
Release / Release Rust crate (push) Successful in 3m46s Details
Release / Release Docker image (push) Successful in 8m18s Details
2023-08-27 13:30:11 +02:00
Paul van Tilburg 1bf6a4e772
Update the changelog 2023-08-27 13:29:48 +02:00
Paul van Tilburg c6f7511fc7
Switch to Debian bookworm Docker image for runtime
The Rust Docker build image is also based on Bookworm and would lead to
a binary that is linked against OpenSSL 3 which would then not be
available in the bullseye runtime Docker image.
2023-08-27 13:28:28 +02:00
4 changed files with 12 additions and 5 deletions

View File

@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.3.2]
### Fixed
* Switch to Debian bookworm Docker image for runtime; fixes Docker image
## [0.3.1]
### Changed
@ -91,8 +97,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Rename Autarco Scraper project to Solar Grabber.
[Unreleased]: https://git.luon.net/paul/solar-grabber/compare/v0.3.1...HEAD
[0.3.1]: https://git.luon.net/paul/solar-grabber/compare/v0.2.2...v0.3.0
[Unreleased]: https://git.luon.net/paul/solar-grabber/compare/v0.3.2...HEAD
[0.3.2]: https://git.luon.net/paul/solar-grabber/compare/v0.3.1...v0.3.2
[0.3.1]: https://git.luon.net/paul/solar-grabber/compare/v0.3.0...v0.3.1
[0.3.0]: https://git.luon.net/paul/solar-grabber/compare/v0.2.2...v0.3.0
[0.2.2]: https://git.luon.net/paul/solar-grabber/compare/v0.2.1...v0.2.2
[0.2.1]: https://git.luon.net/paul/solar-grabber/compare/v0.2.0...v0.2.1

2
Cargo.lock generated
View File

@ -1557,7 +1557,7 @@ dependencies = [
[[package]]
name = "solar-grabber"
version = "0.3.1"
version = "0.3.2"
dependencies = [
"chrono",
"color-eyre",

View File

@ -1,6 +1,6 @@
[package]
name = "solar-grabber"
version = "0.3.1"
version = "0.3.2"
authors = ["Paul van Tilburg <paul@luon.net>"]
edition = "2021"
description = """"

View File

@ -24,7 +24,7 @@ RUN cargo build --release
########################## RUNTIME IMAGE ##########################
# Create new stage with a minimal image for the actual runtime image/container
FROM docker.io/debian:bullseye-slim
FROM docker.io/debian:bookworm-slim
# Install CA certificates
RUN apt-get update && \