Skip to content

Commit bd8e555

Browse files
v1.34.0
1 parent e3f945c commit bd8e555

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bloom-server"
3-
version = "1.33.0"
3+
version = "1.34.0"
44
description = "HTTP REST API caching middleware, to be used between load balancers and REST API workers."
55
readme = "README.md"
66
license = "MPL-2.0"

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,13 @@ You might find it convenient to run Bloom via Docker. You can find the pre-built
105105
First, pull the `valeriansaliou/bloom` image:
106106

107107
```bash
108-
docker pull valeriansaliou/bloom:v1.33.0
108+
docker pull valeriansaliou/bloom:v1.34.0
109109
```
110110

111111
Then, seed it a configuration file and run it (replace `/path/to/your/bloom/config.cfg` with the path to your configuration file):
112112

113113
```bash
114-
docker run -p 8080:8080 -p 8811:8811 -v /path/to/your/bloom/config.cfg:/etc/bloom.cfg valeriansaliou/bloom:v1.33.0
114+
docker run -p 8080:8080 -p 8811:8811 -v /path/to/your/bloom/config.cfg:/etc/bloom.cfg valeriansaliou/bloom:v1.34.0
115115
```
116116

117117
In the configuration file, ensure that:
@@ -323,9 +323,9 @@ By default, a cached response has no tag, thus it cannot be purged via Bloom Con
323323

324324
Bloom provides [pre-built packages](https://packagecloud.io/valeriansaliou/bloom) for Debian-based systems (Debian, Ubuntu, etc.).
325325

326-
**Important: Bloom only provides Debian 12 64 bits packages for now (Debian Bookworm). You will still be able to use them on other Debian versions, as well as Ubuntu.**
326+
**Important: Bloom only provides 64 bits packages targeting Debian 10, 11 & 12 for now (codenames: `buster`, `bullseye` & `bookworm`). You will still be able to use them on other Debian versions, as well as Ubuntu.**
327327

328-
**1️⃣ Add the Bloom APT repository (eg. for Debian Bookworm):**
328+
**1️⃣ Add the Bloom APT repository (eg. for Debian `bookworm`):**
329329

330330
```bash
331331
echo "deb https://packagecloud.io/valeriansaliou/bloom/debian/ bookworm main" > /etc/apt/sources.list.d/valeriansaliou_bloom.list

debian/rules

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/make -f
22

33
DISTRIBUTION = $(shell lsb_release -sr)
4-
VERSION = 1.33
4+
VERSION = 1.34
55
PACKAGEVERSION = $(VERSION)-0~$(DISTRIBUTION)0
66
URL = https://github.com/valeriansaliou/bloom/releases/download/$(VERSION)/
77

0 commit comments

Comments
 (0)