From 891d337269b66da19bdd1744e53c608f87b13e38 Mon Sep 17 00:00:00 2001 From: Martin Guillon Date: Thu, 17 Mar 2022 13:51:28 +0100 Subject: [PATCH] chore(release): 1.2.0 --- CHANGELOG.md | 7 +++++++ src-tauri/Cargo.toml | 35 ++++++++++++++++++----------------- 2 files changed, 25 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53d067d..d10f13a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ 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.2.0](https://github.com/Akylas/mbview-rs/compare/v1.1.0...v1.2.0) (2022-03-17) + + +### Features + +* localised app (en/fr) ([5fce561](https://github.com/Akylas/mbview-rs/commit/5fce5611f98a9d671c8b143f652b3c8d9033de59)) + ## [1.1.0](https://github.com/farfromrefug/mbview-rs/compare/v1.0.0...v1.1.0) (2022-03-16) diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 5364f07..1bb6a42 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,21 +1,17 @@ [package] name = "mbview" -version = "1.1.0" +version = "1.2.0" description = "MBtiles inspector" -authors = ["dev@akylasfr"] +authors = [ "dev@akylasfr" ] license = "MIT" repository = "https://github.com/farfromrefug/mbview" default-run = "mbview" edition = "2018" build = "src/build.rs" -include = [ - "**/*.rs" -] - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +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" @@ -26,20 +22,25 @@ lazy_static = "1.4" serde_json = "1.0" libsqlite3-sys = "0.24" notify = "4.0.17" -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 = { git = "https://github.com/tauri-apps/tauri", rev = "543e6bd", features = ["fs-read-text-file", "shell-execute"] } +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" +] } + + [dependencies.rusqlite] + version = "0.27" + features = [ "bundled" ] [features] default = [ "custom-protocol" ] custom-protocol = [ "tauri/custom-protocol" ] -[dependencies.rusqlite] -version = "0.27" -features = ["bundled"] - [profile.release] panic = "abort" codegen-units = 1