diff --git a/CHANGELOG.md b/CHANGELOG.md index bc3048d6..ea530132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Sonic Changelog =============== +## 1.4.4 (2023-12-08) + +### Bug Fixes + +* Fixed `rocksdb` not building due to a `rust-bindgen` version which was not compatible with `clang` version 16 [[@anthonyroussel](https://github.com/anthonyroussel), [#316](https://github.com/valeriansaliou/sonic/pull/316)]. + +### Changes + +* Dependencies have been bumped to latest versions (namely: `rocksdb`, `toml`, `regex-syntax`, `hashbrown`, `lindera-core`, `lindera-dictionary`, `lindera-tokenizer`) [[@valeriansaliou](https://github.com/valeriansaliou)]. + ## 1.4.3 (2023-09-04) ### Changes diff --git a/Cargo.lock b/Cargo.lock index aac468e8..489ab342 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1359,7 +1359,7 @@ checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" [[package]] name = "sonic-server" -version = "1.4.3" +version = "1.4.4" dependencies = [ "byteorder", "clap", diff --git a/Cargo.toml b/Cargo.toml index 9203b4d2..72ead0ac 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sonic-server" -version = "1.4.3" +version = "1.4.4" description = "Fast, lightweight and schema-less search backend." readme = "README.md" license = "MPL-2.0" diff --git a/README.md b/README.md index 24c1e9b6..41dcae34 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.3 +docker pull valeriansaliou/sonic:v1.4.4 ``` 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.3 +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.4 ``` In the configuration file, ensure that: diff --git a/debian/rules b/debian/rules index 866e9933..3337887f 100644 --- a/debian/rules +++ b/debian/rules @@ -1,7 +1,7 @@ #!/usr/bin/make -f DISTRIBUTION = $(shell lsb_release -sr) -VERSION = 1.4.3 +VERSION = 1.4.4 PACKAGEVERSION = $(VERSION)-0~$(DISTRIBUTION)0 URL = https://github.com/valeriansaliou/sonic/releases/download/v$(VERSION)/