prepare version 0.6.6

This commit is contained in:
Scott Lamb 2021-09-23 18:18:50 -07:00
parent 19faa0f028
commit 0c0c0692f3
6 changed files with 7 additions and 7 deletions

View File

@ -6,7 +6,7 @@ changes, see Git history.
Each release is tagged in Git and on the Docker repository
[`scottlamb/moonfire-nvr`](https://hub.docker.com/r/scottlamb/moonfire-nvr).
## unreleased
## `v0.6.6` (2021-09-23)
* fix [#146](https://github.com/scottlamb/moonfire-nvr/issues/146): "init
segment fetch error" when browsers have cached data from `v0.6.4` and

View File

@ -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.6.5. Until version 1.0, there will be no
Moonfire NVR is currently at version 0.6.6. 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.

View File

@ -66,7 +66,7 @@ $ sudo chmod a+rx /usr/local/bin/nvr
# Set your timezone here.
tz="America/Los_Angeles"
# or eg "scottlamb/moonfire-nvr:v0.6.5" to specify a particular version.
# or eg "scottlamb/moonfire-nvr:v0.6.6" to specify a particular version.
image_name="scottlamb/moonfire-nvr:latest"
container_name="moonfire-nvr"
common_docker_run_args=(

4
server/Cargo.lock generated
View File

@ -1210,7 +1210,7 @@ dependencies = [
[[package]]
name = "moonfire-db"
version = "0.6.5"
version = "0.6.6"
dependencies = [
"base64",
"blake3",
@ -1261,7 +1261,7 @@ dependencies = [
[[package]]
name = "moonfire-nvr"
version = "0.6.5"
version = "0.6.6"
dependencies = [
"base64",
"blake3",

View File

@ -1,6 +1,6 @@
[package]
name = "moonfire-nvr"
version = "0.6.5"
version = "0.6.6"
authors = ["Scott Lamb <slamb@slamb.org>"]
edition = "2018"
license-file = "../LICENSE.txt"

View File

@ -1,6 +1,6 @@
[package]
name = "moonfire-db"
version = "0.6.5"
version = "0.6.6"
authors = ["Scott Lamb <slamb@slamb.org>"]
readme = "../README.md"
edition = "2018"