This commit is contained in:
nick black 2021-04-04 14:28:16 -04:00
parent 7865539505
commit 8c78b089e1
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC
6 changed files with 8 additions and 5 deletions

View File

@ -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)

View File

@ -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.

View File

@ -1,6 +1,6 @@
% notcurses-pydemo(1)
% nick black <nickblack@linux.com>
% v2.2.4
% v2.2.5
# NAME

View File

@ -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'},

View File

@ -1,6 +1,6 @@
[package]
name = "libnotcurses-sys"
version = "2.2.4"
version = "2.2.5"
authors = [
"nick black <dankamongmen@gmail.com>",
"José Luis Cruz <joseluis@andamira.net>"

View File

@ -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();