Skip to content

Commit

Permalink
v1.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriansaliou committed Aug 13, 2023
1 parent e3f945c commit bd8e555
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bloom-server"
version = "1.33.0"
version = "1.34.0"
description = "HTTP REST API caching middleware, to be used between load balancers and REST API workers."
readme = "README.md"
license = "MPL-2.0"
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,13 @@ You might find it convenient to run Bloom via Docker. You can find the pre-built
First, pull the `valeriansaliou/bloom` image:

```bash
docker pull valeriansaliou/bloom:v1.33.0
docker pull valeriansaliou/bloom:v1.34.0
```

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

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

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

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

**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.**
**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.**

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

```bash
echo "deb https://packagecloud.io/valeriansaliou/bloom/debian/ bookworm main" > /etc/apt/sources.list.d/valeriansaliou_bloom.list
Expand Down
2 changes: 1 addition & 1 deletion debian/rules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/make -f

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

Expand Down

0 comments on commit bd8e555

Please sign in to comment.