prepare version 0.6.2
This commit is contained in:
parent
54aef17731
commit
d5320302a3
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -6,13 +6,15 @@ 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).
|
||||
|
||||
## `v0.6.2` (in progress)
|
||||
## `v0.6.2`
|
||||
|
||||
* Fix panics when a stream's PTS has extreme jumps (#113)
|
||||
* Fix panics when a stream's PTS has extreme jumps
|
||||
([#113](https://github.com/scottlamb/moonfire-nvr/issues/113))
|
||||
* Improve logging. Console log output is now color-coded. ffmpeg errors
|
||||
and panics are now logged in the same way as other messages.
|
||||
* Fix an error that could prevent the `moonfire-nvr check --delete-orphan-rows`
|
||||
command from actually deleting rows.
|
||||
* Fix an error that could prevent the
|
||||
`moonfire-nvr check --delete-orphan-rows` command from actually deleting
|
||||
rows.
|
||||
|
||||
## `v0.6.1`
|
||||
|
||||
|
@ -23,7 +25,8 @@ Each release is tagged in Git and on the Docker repository
|
|||
can be caused by filesystem corruption.
|
||||
* Set the page size to 16 KiB on `moonfire-nvr init` and
|
||||
`moonfire-nvr upgrade`. This improves performance.
|
||||
* Fix mangled favicons (#105)
|
||||
* Fix mangled favicons
|
||||
([#105](https://github.com/scottlamb/moonfire-nvr/issues/105))
|
||||
|
||||
## `v0.6.0`
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ console-based (rather than web-based) configuration UI.
|
|||
|
||||
![screenshot](screenshot.png)
|
||||
|
||||
Moonfire NVR is currently at version 0.6.1. Until version 1.0, there will be no
|
||||
Moonfire NVR is currently at version 0.6.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.
|
||||
|
|
|
@ -121,9 +121,10 @@ Releases are currently a bit manual. From a completely clean git work tree,
|
|||
1. manually verify the current commit is pushed to github's master branch and
|
||||
has a green checkmark indicating CI passed.
|
||||
2. update versions:
|
||||
* update `server/Cargo.toml` version by hand; run `cargo test --workspace`
|
||||
to update `Cargo.lock`.
|
||||
* ensure `README.md` and `CHANGELOG.md` refer to the new version.
|
||||
* update `server/Cargo.toml` version by hand; run `cargo test --workspace`
|
||||
to update `Cargo.lock`.
|
||||
* ensure `README.md`, `CHANGELOG.md`, and `guide/install.md` refer to the
|
||||
new version.
|
||||
3. run commands:
|
||||
```bash
|
||||
VERSION=x.y.z
|
||||
|
|
|
@ -10,7 +10,7 @@ and verify you can run the container.
|
|||
|
||||
```
|
||||
$ docker run --rm -it scottlamb/moonfire-nvr:latest
|
||||
moonfire-nvr 0.6.1
|
||||
moonfire-nvr 0.6.2
|
||||
security camera network video recorder
|
||||
|
||||
USAGE:
|
||||
|
|
|
@ -1215,7 +1215,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "moonfire-nvr"
|
||||
version = "0.6.2-dev"
|
||||
version = "0.6.2"
|
||||
dependencies = [
|
||||
"base64",
|
||||
"blake3",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "moonfire-nvr"
|
||||
version = "0.6.2-dev"
|
||||
version = "0.6.2"
|
||||
authors = ["Scott Lamb <slamb@slamb.org>"]
|
||||
edition = "2018"
|
||||
license-file = "../LICENSE.txt"
|
||||
|
|
Loading…
Reference in New Issue