Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for 1.5 release #45

Merged
merged 1 commit into from
Apr 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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