Skip to content

Commit

Permalink
Prep for 1.5 release (#45)
Browse files Browse the repository at this point in the history
Signed-off-by: Phil Dibowitz <[email protected]>
  • Loading branch information
jaymzh authored Apr 27, 2022
1 parent 2693030 commit e90c8b8
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
1.5
Released: 04/27/22
[email protected]
- Various windows build improvements
- Support (the now-required) HTTPS communication with harmonyremote
- Fix various compiler warnings
- Add CI

1.4
Released: 11/08/19
[email protected]
Expand Down
2 changes: 1 addition & 1 deletion concordance/concordance.c
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ int set_canon(int flag)
#define DEFAULT_FW_FILENAME_BIN "firmware.bin"
#define DEFAULT_SAFE_FILENAME "safe.bin"

const char * const VERSION = "1.4";
const char * const VERSION = "1.5";

struct options_t {
int binary;
Expand Down
4 changes: 2 additions & 2 deletions concordance/configure.ac
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
AC_INIT([concordance], [1.4], [[email protected]])
AC_INIT([concordance], [1.5], [[email protected]])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AM_PROG_CC_C_O
AC_CONFIG_MACRO_DIR([m4])
AC_PROG_LIBTOOL
AC_PROG_CXX
AC_CANONICAL_HOST
LIBCONCORD_VERSION="5"
LIBCONCORD_VERSION="6"
case $host_os in
darwin*)
LIBCONCORD_LDFLAGS="-lconcord.$LIBCONCORD_VERSION"
Expand Down
2 changes: 1 addition & 1 deletion libconcord/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ libconcord_la_SOURCES = remote.cpp remote_z.cpp libconcord.cpp binaryfile.cpp \
operationfile.cpp remote_mh.cpp libusbhid.cpp libhidapi.cpp
include_HEADERS = libconcord.h
libconcord_la_CPPFLAGS = -Wall
libconcord_la_LDFLAGS = -version-info 5:0:0 $(LIBCONCORD_LDFLAGS) -lzip -lcurl
libconcord_la_LDFLAGS = -version-info 6:0:0 $(LIBCONCORD_LDFLAGS) -lzip -lcurl
libconcord_la_CXXFLAGS = $(ZIP_CFLAGS)
UDEVROOT ?= /
UDEVLIBDIR ?= $(UDEVROOT)/lib
Expand Down
2 changes: 1 addition & 1 deletion libconcord/bindings/python/libconcord.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
# Define the libconcord ABI this libconcord.py corresponds to
# Bump this when the .so file version gets bumped

ABI_VERSION = 5
ABI_VERSION = 6

# Load the DLL

Expand Down
2 changes: 1 addition & 1 deletion libconcord/bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name='libconcord',
version='1.4',
version='1.5',
py_modules=['libconcord'],
)

2 changes: 1 addition & 1 deletion libconcord/configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([libconcord], [1.4], [[email protected]])
AC_INIT([libconcord], [1.5], [[email protected]])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_CONFIG_MACRO_DIR([m4])
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
Expand Down

0 comments on commit e90c8b8

Please sign in to comment.