Skip to content

Commit

Permalink
v2.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dankamongmen committed Apr 4, 2021
1 parent 7865539 commit 8c78b08
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 3.14.0 introduced NAME_WLE
cmake_minimum_required(VERSION 3.14.0)
project(notcurses VERSION 2.2.4
project(notcurses VERSION 2.2.5
DESCRIPTION "Blingful UI for modern terminal emulators"
HOMEPAGE_URL "https://nick-black.com/dankwiki/index.php/notcurses"
LANGUAGES C CXX)
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
This document attempts to list user-visible changes and any major internal
rearrangements of Notcurses.

* 2.2.5 (2021-04-04)
* Bugfix release, no user-visible changes.

* 2.2.4 (2021-03-29)
* Implemented **EXPERIMENTAL** `NCBLIT_PIXEL` for terminals reporting the
Kitty pixel graphics protocol.
Expand Down
2 changes: 1 addition & 1 deletion cffi/notcurses-pydemo.1.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
% notcurses-pydemo(1)
% nick black <[email protected]>
% v2.2.4
% v2.2.5

# NAME

Expand Down
2 changes: 1 addition & 1 deletion cffi/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def read(fname):

setup(
name="notcurses",
version="2.2.4",
version="2.2.5",
packages=['notcurses'],
scripts=['notcurses-pydemo', 'ncdirect-pydemo'],
package_dir={'': 'src'},
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libnotcurses-sys"
version = "2.2.4"
version = "2.2.5"
authors = [
"nick black <[email protected]>",
"José Luis Cruz <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion rust/build/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::path::PathBuf;
// largely taken from https://rust-lang.github.io/rust-bindgen/tutorial-3.html
fn main() {
let plib = pkg_config::Config::new()
.atleast_version("2.2.4")
.atleast_version("2.2.5")
.probe("notcurses")
.unwrap();

Expand Down

0 comments on commit 8c78b08

Please sign in to comment.