Skip to content

Commit

Permalink
chore(release): 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Mar 17, 2022
1 parent a1f0154 commit 891d337
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
35 changes: 18 additions & 17 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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
Expand Down

0 comments on commit 891d337

Please sign in to comment.