Skip to content

Commit

Permalink
bump 0.9.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MoAlyousef committed Oct 5, 2020
1 parent fe0b0cd commit b7c285d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## [0.9.4] - Unreleased
## [0.9.4] - 2020-10-05
### Changes
- Move threads initialization to occur on App initialization.
- Pull NSOpenPanel fix from FLTK.
Expand Down
4 changes: 2 additions & 2 deletions fltk-derive/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fltk-derive"
version = "0.9.3"
version = "0.9.4"
authors = ["MoAlyousef <mohammed.alyousef@neurosrg.com>"]
edition = "2018"
description = "Rust bindings for the FLTK GUI library"
Expand All @@ -14,5 +14,5 @@ path = "src/lib.rs"
proc-macro = true

[dependencies]
syn = "^1.0.41"
syn = "^1.0.42"
quote = "^1.0.7"
4 changes: 2 additions & 2 deletions fltk-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fltk-sys"
version = "0.9.3"
version = "0.9.4"
authors = ["MoAlyousef <mohammed.alyousef@neurosrg.com>"]
build = "build.rs"
edition = "2018"
Expand All @@ -14,7 +14,7 @@ name = "fltk_sys"
path = "src/lib.rs"

[dependencies]
libc = "0.2.77"
libc = "0.2.79"

[build-dependencies]
cmake = "^0.1.44"
Expand Down
1 change: 1 addition & 0 deletions fltk-sys/examples/sys_simple.rs
Expand Up @@ -10,6 +10,7 @@ fn main() {
unsafe {
fl::Fl_init_all();
image::Fl_register_images();
fl::Fl_lock();
let win = window::Fl_Window_new(100, 100, 400, 300, "Window\0".as_ptr() as *const _);
let frame = frame::Fl_Box_new(0, 0, 400, 200, std::ptr::null());
let but = button::Fl_Button_new(160, 220, 80, 40, "Click\0".as_ptr() as *const _);
Expand Down
6 changes: 3 additions & 3 deletions fltk/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "fltk"
version = "0.9.3"
version = "0.9.4"
authors = ["MoAlyousef <mohammed.alyousef@neurosrg.com>"]
edition = "2018"
description = "Rust bindings for the FLTK GUI library"
Expand All @@ -17,8 +17,8 @@ name = "fltk"
path = "src/lib.rs"

[dependencies]
fltk-sys = { path = "../fltk-sys", version = "^0.9.3" }
fltk-derive = { path = "../fltk-derive", version = "^0.9.3" }
fltk-sys = { path = "../fltk-sys", version = "^0.9.4" }
fltk-derive = { path = "../fltk-derive", version = "^0.9.4" }

[features]
default = []
Expand Down

0 comments on commit b7c285d

Please sign in to comment.