diff --git a/CHANGELOG.md b/CHANGELOG.md index 0549fd8..06bfb65 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ Sonic Changelog =============== +## 1.4.6 (2023-12-14) + +### New Features + +* 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)]. + ## 1.4.5 (2023-12-11) ### Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index ab14b16..02a43b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sonic-server" -version = "1.4.5" +version = "1.4.6" description = "Fast, lightweight and schema-less search backend." readme = "README.md" license = "MPL-2.0" diff --git a/README.md b/README.md index cb405a8..c9bc270 100644 --- a/README.md +++ b/README.md @@ -134,13 +134,13 @@ You might find it convenient to run Sonic via Docker. You can find the pre-built First, pull the `valeriansaliou/sonic` image: ```bash -docker pull valeriansaliou/sonic:v1.4.5 +docker pull valeriansaliou/sonic:v1.4.6 ``` Then, seed it a configuration file and run it (replace `/path/to/your/sonic/config.cfg` with the path to your configuration file): ```bash -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 +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 ``` In the configuration file, ensure that: diff --git a/debian/rules b/debian/rules index 67b910c..ed94765 100644 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f DISTRIBUTION = $(shell lsb_release -sr) -VERSION = 1.4.5 +VERSION = 1.4.6 PACKAGEVERSION = $(VERSION)-0~$(DISTRIBUTION)0 URL = https://github.com/valeriansaliou/sonic/releases/download/v$(VERSION)/