From d5320302a3d6b804cb64ec7c6390ebbb707cc7ab Mon Sep 17 00:00:00 2001 From: Scott Lamb Date: Fri, 12 Mar 2021 12:36:20 -0800 Subject: [PATCH] prepare version 0.6.2 --- CHANGELOG.md | 13 ++++++++----- README.md | 2 +- guide/build.md | 7 ++++--- guide/install.md | 2 +- server/Cargo.lock | 2 +- server/Cargo.toml | 2 +- 6 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b336435..6e49053 100644 --- a/CHANGELOG.md +++ b/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` diff --git a/README.md b/README.md index 103af7e..8319f61 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/guide/build.md b/guide/build.md index 74da9a6..cd10cf0 100644 --- a/guide/build.md +++ b/guide/build.md @@ -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 diff --git a/guide/install.md b/guide/install.md index cc8c48a..80a5ca8 100644 --- a/guide/install.md +++ b/guide/install.md @@ -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: diff --git a/server/Cargo.lock b/server/Cargo.lock index 0ad01ea..173fd40 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -1215,7 +1215,7 @@ dependencies = [ [[package]] name = "moonfire-nvr" -version = "0.6.2-dev" +version = "0.6.2" dependencies = [ "base64", "blake3", diff --git a/server/Cargo.toml b/server/Cargo.toml index 5866974..b0ee0e8 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "moonfire-nvr" -version = "0.6.2-dev" +version = "0.6.2" authors = ["Scott Lamb "] edition = "2018" license-file = "../LICENSE.txt"