Skip to content

Commit 86ae539

Browse files
v1.4.6
1 parent c1f6edb commit 86ae539

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Sonic Changelog
22
===============
33

4+
## 1.4.6 (2023-12-14)
5+
6+
### New Features
7+
8+
* The Docker image is now also available for the `arm64` platform, in addition to `amd64` [[@PovilasID](https://github.com/PovilasID), [#310](https://github.com/valeriansaliou/sonic/pull/310)].
9+
410
## 1.4.5 (2023-12-11)
511

612
### Bug Fixes

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sonic-server"
3-
version = "1.4.5"
3+
version = "1.4.6"
44
description = "Fast, lightweight and schema-less search backend."
55
readme = "README.md"
66
license = "MPL-2.0"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,13 +134,13 @@ You might find it convenient to run Sonic via Docker. You can find the pre-built
134134
First, pull the `valeriansaliou/sonic` image:
135135

136136
```bash
137-
docker pull valeriansaliou/sonic:v1.4.5
137+
docker pull valeriansaliou/sonic:v1.4.6
138138
```
139139

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

142142
```bash
143-
docker run -p 1491:1491 -v /path/to/your/sonic/config.cfg:/etc/sonic.cfg -v /path/to/your/sonic/store/:/var/lib/sonic/store/ valeriansaliou/sonic:v1.4.5
143+
docker run -p 1491:1491 -v /path/to/your/sonic/config.cfg:/etc/sonic.cfg -v /path/to/your/sonic/store/:/var/lib/sonic/store/ valeriansaliou/sonic:v1.4.6
144144
```
145145

146146
In the configuration file, ensure that:

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.4.5
4+
VERSION = 1.4.6
55
PACKAGEVERSION = $(VERSION)-0~$(DISTRIBUTION)0
66
URL = https://github.com/valeriansaliou/sonic/releases/download/v$(VERSION)/
77

0 commit comments

Comments
 (0)