Skip to content

Commit

Permalink
chore(release): 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
farfromrefug committed Mar 18, 2022
1 parent 2716251 commit 8c5c795
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.0](https://github.com/Akylas/mbview-rs/compare/v1.2.0...v1.3.0) (2022-03-18)


### Features

* basic split map view support (select secondary with fab button) ([dd7b5d0](https://github.com/Akylas/mbview-rs/commit/dd7b5d0b19859d2cfc6b38450edea3f324dd278b))
* watch open mbtiles for changes. Will reload the map when changed! ([d0cf700](https://github.com/Akylas/mbview-rs/commit/d0cf70043c94cc9a160daebac7fc5e19e765f971))

## [1.2.0](https://github.com/Akylas/mbview-rs/compare/v1.1.0...v1.2.0) (2022-03-17)


Expand Down
12 changes: 9 additions & 3 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mbview"
version = "1.2.0"
version = "1.3.0"
description = "MBtiles inspector"
authors = [ "dev@akylasfr" ]
license = "MIT"
Expand All @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit 8c5c795

Please sign in to comment.