diff --git a/CHANGELOG.md b/CHANGELOG.md index 38f15d9..064d91c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ upgrades, e.g. `0.6.x` -> `0.7.x`. The config file format and [API](ref/api.md) currently have no stability guarantees, so they may change even on minor releases, e.g. `0.7.5` -> `0.7.6`. -## unreleased +## 0.7.7 (2023-08-03) * fix [#289](https://github.com/scottlamb/moonfire-nvr/issues/289): crash on pressing the `Add` button in the sample file directory dialog diff --git a/README.md b/README.md index e3a398f..db0c8f6 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ There's no support yet for motion detection, no https/TLS support (you'll need a proxy server, as described [here](guide/secure.md)), and only a console-based (rather than web-based) configuration UI. -Moonfire NVR is currently at version 0.7.6. Until version 1.0, there will be no +Moonfire NVR is currently at version 0.7.7. Until version 1.0, there will be no compatibility guarantees: configuration and storage formats may change from version to version. There is an [upgrade procedure](guide/schema.md) but it is not for the faint of heart. diff --git a/guide/install.md b/guide/install.md index f76716f..1500cdd 100644 --- a/guide/install.md +++ b/guide/install.md @@ -85,7 +85,7 @@ ownUidIsPrivileged = true # Set your timezone here. tz="America/Los_Angeles" -image_name="scottlamb/moonfire-nvr:v0.7.6" +image_name="scottlamb/moonfire-nvr:v0.7.7" container_name="moonfire-nvr" common_docker_run_args=( --mount=type=bind,source=/var/lib/moonfire-nvr,destination=/var/lib/moonfire-nvr diff --git a/server/Cargo.lock b/server/Cargo.lock index 4832f8a..0a2b3a2 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -1055,7 +1055,7 @@ dependencies = [ [[package]] name = "moonfire-db" -version = "0.7.6" +version = "0.7.7" dependencies = [ "base64", "blake3", @@ -1092,7 +1092,7 @@ dependencies = [ [[package]] name = "moonfire-nvr" -version = "0.7.6" +version = "0.7.7" dependencies = [ "base64", "blake3", diff --git a/server/Cargo.toml b/server/Cargo.toml index cb639a9..76ceaf4 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moonfire-nvr" -version = "0.7.6" +version = "0.7.7" authors = ["Scott Lamb "] edition = "2021" resolver = "2" diff --git a/server/db/Cargo.toml b/server/db/Cargo.toml index 659078f..a600948 100644 --- a/server/db/Cargo.toml +++ b/server/db/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moonfire-db" -version = "0.7.6" +version = "0.7.7" authors = ["Scott Lamb "] readme = "../README.md" edition = "2021"