diff --git a/Cargo.toml b/Cargo.toml index cfd661f1..0b4d5451 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/ihalila/pancurses" readme = "README.md" license = "MIT" keywords = ["pancurses", "curses", "ncurses", "pdcurses"] -version = "0.15.0" +version = "0.16.0" authors = ["Ilkka Halila "] [lib] diff --git a/README.md b/README.md index 1856ec49..2eeb5cae 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Check [pdcurses-sys](https://github.com/ihalila/pdcurses-sys) for more details. Cargo.toml ```toml [dependencies] -pancurses = "0.15" +pancurses = "0.16" ``` main.rs @@ -130,14 +130,14 @@ flags. Simply specify the feature in Cargo.toml like so: ```rust [dependencies.pancurses] -version = "0.15" +version = "0.16" features = ["win32a"] ``` or ```rust [dependencies.pancurses] -version = "0.15" +version = "0.16" features = ["win32"] ```