prepare v0.7.2
This commit is contained in:
parent
319d7c3e1d
commit
be3a5b200e
|
@ -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.7.2` (2022-03-16)
|
||||
|
||||
* introduce a configuration file `/etc/moonfire-nvr.toml`; you will need
|
||||
to create one when upgrading.
|
||||
|
|
|
@ -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.1. Until version 1.0, there will be no
|
||||
Moonfire NVR is currently at version 0.7.2. 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.
|
||||
|
|
|
@ -85,8 +85,7 @@ own_uid_is_privileged = true
|
|||
# Set your timezone here.
|
||||
tz="America/Los_Angeles"
|
||||
|
||||
# or e.g. "scottlamb/moonfire-nvr:v0.7.1" to specify a particular version.
|
||||
image_name="scottlamb/moonfire-nvr:latest"
|
||||
image_name="scottlamb/moonfire-nvr:v0.7.2"
|
||||
container_name="moonfire-nvr"
|
||||
common_docker_run_args=(
|
||||
--mount=type=bind,source=/var/lib/moonfire-nvr,destination=/var/lib/moonfire-nvr
|
||||
|
|
|
@ -1040,7 +1040,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "moonfire-db"
|
||||
version = "0.7.1"
|
||||
version = "0.7.2"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"blake3",
|
||||
|
@ -1093,7 +1093,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "moonfire-nvr"
|
||||
version = "0.7.1"
|
||||
version = "0.7.2"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"blake3",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "moonfire-nvr"
|
||||
version = "0.7.1"
|
||||
version = "0.7.2"
|
||||
authors = ["Scott Lamb <slamb@slamb.org>"]
|
||||
edition = "2018"
|
||||
resolver = "2"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "moonfire-db"
|
||||
version = "0.7.1"
|
||||
version = "0.7.2"
|
||||
authors = ["Scott Lamb <slamb@slamb.org>"]
|
||||
readme = "../README.md"
|
||||
edition = "2018"
|
||||
|
|
Loading…
Reference in New Issue