Skip to content

Commit

Permalink
version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mauke committed Feb 8, 2018
1 parent 6f0037b commit e3b16d6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2.0.0 2018-02-08
- rewrite unibi_var_t internals (now the only official access is via
the helper functions)
- numeric capabilities are stored as ints now (used to be shorts)
- add support for the ncurses 6.1 "wide integer" 32-bit file format
- try ncursesw6-config, ncurses6-config, ncursesw5-config, and
ncurses5-config to get the list of terminfo directories
(TERMINFO_DIRS) when building
- improve README.md with build instructions and prerequisites

1.2.1 2017-08-28
- deprecate direct access to unibi_var_t members
- better support for building on Windows
Expand Down
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ CFLAGS_DEBUG=

PACKAGE=unibilium

PKG_MAJOR=1
PKG_MINOR=2
PKG_REVISION=1
PKG_MAJOR=2
PKG_MINOR=0
PKG_REVISION=0

PKG_VERSION=$(PKG_MAJOR).$(PKG_MINOR).$(PKG_REVISION)

# I am implementation $LT_REVISION of binary interface $LT_CURRENT, which is
# a superset of all interfaces back to $LT_CURRENT - $LT_AGE.
LT_REVISION=1
LT_CURRENT=3
LT_AGE=3
LT_REVISION=0
LT_CURRENT=4
LT_AGE=0

PREFIX=/usr/local
LIBDIR=$(PREFIX)/lib
Expand Down

0 comments on commit e3b16d6

Please sign in to comment.