diff --git a/CHANGELOG.md b/CHANGELOG.md index fbcba64..99b6021 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.3.1](https://github.com/Akylas/mbview-rs/compare/v1.3.0...v1.3.1) (2022-03-19) + + +### Bug Fixes + +* bring back tiles cache ([5044028](https://github.com/Akylas/mbview-rs/commit/5044028dee01384974d4e07b2ab68ba5437f4adf)) +* fix white screen on production build ([55945e0](https://github.com/Akylas/mbview-rs/commit/55945e020270a5e03ccdfee3c42af397f36997cb)) + + + ## [1.3.0](https://github.com/Akylas/mbview-rs/compare/v1.2.0...v1.3.0) (2022-03-18) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 8980fd4..9a8f305 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mbview" -version = "1.3.0" +version = "1.3.1" description = "MBtiles inspector" authors = [ "dev@akylasfr" ] license = "MIT" @@ -11,7 +11,7 @@ build = "src/build.rs" include = [ "**/*.rs" ] [build-dependencies] -tauri-build = { version = "1.0.0-rc.4", features = [] } +tauri-build = { version = "1.0.0-rc.4", features = [ ] } [dependencies] r2d2 = "0.8" @@ -25,7 +25,13 @@ hotwatch = "0.4" tokio = { version = "1.17", features = [ "full" ] } hyper = { version = "0.14", features = [ "server", "http1", "http2", "tcp" ] } serde = { version = "1.0", features = [ "derive" ] } -tauri = { version = "1.0.0-rc.4", features = ["dialog-open", "fs-read-file", "path-all", "protocol-asset", "shell-open"] } +tauri = { version = "1.0.0-rc.4", features = [ + "dialog-open", + "fs-read-file", + "path-all", + "protocol-asset", + "shell-open" +] } [dependencies.rusqlite] version = "0.27"