Skip to content

Commit 9e7bfa1

Browse files
v1.4.7
1 parent 04f5c91 commit 9e7bfa1

File tree

5 files changed

+19
-13
lines changed

5 files changed

+19
-13
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.7 (2023-12-14)
5+
6+
### Bug Fixes
7+
8+
* Fixed non-working `arm64` builds due to hardcoded `x86_64-unknown-linux-gnu` Rust target in the `Dockerfile` [[@valeriansaliou](https://github.com/valeriansaliou)].
9+
410
## 1.4.6 (2023-12-14)
511

612
### New Features

Cargo.lock

+9-9
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 = "sonic-server"
3-
version = "1.4.6"
3+
version = "1.4.7"
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.6
137+
docker pull valeriansaliou/sonic:v1.4.7
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.6
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.7
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.6
4+
VERSION = 1.4.7
55
PACKAGEVERSION = $(VERSION)-0~$(DISTRIBUTION)0
66
URL = https://github.com/valeriansaliou/sonic/releases/download/v$(VERSION)/
77

0 commit comments

Comments
 (0)