Skip to content

Commit

Permalink
Merge pull request #11 from tauri-apps/release
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasfernog authored Nov 20, 2022
2 parents cfc5fde + 6e04d3d commit 92c5f05
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
5 changes: 0 additions & 5 deletions .changes/deps.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changes/export-window.md

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## \[0.1.1]

- Update dependencies.
- [0b22da7](https://www.github.com/tauri-apps/tauri-egui/commit/0b22da7280105fc4fdf3747f7a432065ab0124cf) chore(deps): update dependencies on 2022-11-12
- Export the `Window` type.
- [1b1de76](https://www.github.com/tauri-apps/tauri-egui/commit/1b1de76724cfca9981b99a125452f7d2321602a8) add change file \[skip ci] on 2022-10-06

## \[0.1.0]

- Initial release.
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "tauri-egui"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
license = "Apache-2.0 OR MIT"
readme = "README.md"
homepage = "https://tauri.app"
categories = ["gui", "tauri"]
categories = [ "gui", "tauri" ]
description = "A Tauri plugin for the egui library"

[dependencies]
Expand All @@ -23,15 +23,15 @@ rand = "0.8"
raw-window-handle = "0.5"

[dev-dependencies]
tauri = { version = "1.2", features = ["dialog-message"] }
tauri = { version = "1.2", features = [ "dialog-message" ] }
egui_demo_app = { path = "examples/egui_demo_app" }

[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\"))".dependencies]
gtk = { version = "0.15", features = ["v3_20"] }
gtk = { version = "0.15", features = [ "v3_20" ] }

[[example]]
name = "demo"
path = "examples/demo/main.rs"

[workspace]
members = ["examples/egui_demo_app", "examples/egui_demo_lib"]
members = [ "examples/egui_demo_app", "examples/egui_demo_lib" ]

0 comments on commit 92c5f05

Please sign in to comment.