Skip to content

Commit e90c8b8

Browse files
authored
Prep for 1.5 release (#45)
Signed-off-by: Phil Dibowitz <phil@ipom.com>
1 parent 2693030 commit e90c8b8

File tree

7 files changed

+15
-7
lines changed

7 files changed

+15
-7
lines changed

Changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1.5
2+
Released: 04/27/22
3+
swt@techie.net
4+
- Various windows build improvements
5+
- Support (the now-required) HTTPS communication with harmonyremote
6+
- Fix various compiler warnings
7+
- Add CI
8+
19
1.4
210
Released: 11/08/19
311
swt@techie.net

concordance/concordance.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ int set_canon(int flag)
8989
#define DEFAULT_FW_FILENAME_BIN "firmware.bin"
9090
#define DEFAULT_SAFE_FILENAME "safe.bin"
9191

92-
const char * const VERSION = "1.4";
92+
const char * const VERSION = "1.5";
9393

9494
struct options_t {
9595
int binary;

concordance/configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
AC_INIT([concordance], [1.4], [concordance-devel@lists.sourceforge.net])
1+
AC_INIT([concordance], [1.5], [concordance-devel@lists.sourceforge.net])
22
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
33
AM_PROG_CC_C_O
44
AC_CONFIG_MACRO_DIR([m4])
55
AC_PROG_LIBTOOL
66
AC_PROG_CXX
77
AC_CANONICAL_HOST
8-
LIBCONCORD_VERSION="5"
8+
LIBCONCORD_VERSION="6"
99
case $host_os in
1010
darwin*)
1111
LIBCONCORD_LDFLAGS="-lconcord.$LIBCONCORD_VERSION"

libconcord/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ libconcord_la_SOURCES = remote.cpp remote_z.cpp libconcord.cpp binaryfile.cpp \
77
operationfile.cpp remote_mh.cpp libusbhid.cpp libhidapi.cpp
88
include_HEADERS = libconcord.h
99
libconcord_la_CPPFLAGS = -Wall
10-
libconcord_la_LDFLAGS = -version-info 5:0:0 $(LIBCONCORD_LDFLAGS) -lzip -lcurl
10+
libconcord_la_LDFLAGS = -version-info 6:0:0 $(LIBCONCORD_LDFLAGS) -lzip -lcurl
1111
libconcord_la_CXXFLAGS = $(ZIP_CFLAGS)
1212
UDEVROOT ?= /
1313
UDEVLIBDIR ?= $(UDEVROOT)/lib

libconcord/bindings/python/libconcord.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# Define the libconcord ABI this libconcord.py corresponds to
3333
# Bump this when the .so file version gets bumped
3434

35-
ABI_VERSION = 5
35+
ABI_VERSION = 6
3636

3737
# Load the DLL
3838

libconcord/bindings/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
setup(
2323
name='libconcord',
24-
version='1.4',
24+
version='1.5',
2525
py_modules=['libconcord'],
2626
)
2727

libconcord/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
AC_INIT([libconcord], [1.4], [concordance-devel@lists.sourceforge.net])
1+
AC_INIT([libconcord], [1.5], [concordance-devel@lists.sourceforge.net])
22
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
33
AC_CONFIG_MACRO_DIR([m4])
44
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])

0 commit comments

Comments
 (0)