diff --git a/Makefile.am b/Makefile.am index 15996ae..4859623 100644 --- a/Makefile.am +++ b/Makefile.am @@ -11,7 +11,7 @@ AM_CFLAGS = $(MAYBE_COVERAGE) check_PROGRAMS = tests/test-shunting-yard tests_test_shunting_yard_SOURCES = src/shunting-yard.c inc/shunting-yard.h \ - src/stack.c inc/stack.h bitwise.h \ + src/stack.c inc/stack.h inc/bitwise.h \ src/misc.c \ tests/test-shunting-yard.c tests_test_shunting_yard_LDADD = -lcunit diff --git a/configure.ac b/configure.ac index 9593222..9bcc994 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) -AC_INIT([bitwise], [v0.21], [rfried.dev@gmail.com]) +AC_INIT([bitwise], [v0.22], [rfried.dev@gmail.com]) AC_CONFIG_SRCDIR([src/misc.c]) AC_CONFIG_HEADERS([inc/config.h]) diff --git a/snapcraft.yaml b/snapcraft.yaml index af2efa6..18d8bfa 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: bitwise -version: "v0.21" +version: "v0.22" summary: Terminal based bitwise calculator in curses description: | Interactively manipulate bits. @@ -12,7 +12,7 @@ apps: parts: bitwise: plugin: autotools - source: https://github.com/mellowcandle/bitwise/releases/download/v0.21/bitwise-v0.21.tar.gz + source: https://github.com/mellowcandle/bitwise/releases/download/v0.22/bitwise-v0.22.tar.gz build-packages: - libncurses5-dev - libreadline-dev