Skip to content

Commit

Permalink
Merge pull request #1685 from peternewman/0.10-clang-latest
Browse files Browse the repository at this point in the history
Release 0.10.8
  • Loading branch information
peternewman committed Nov 22, 2020
2 parents 2a5ec7f + f655ace commit 1965826
Show file tree
Hide file tree
Showing 28 changed files with 1,521 additions and 1,021 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/annotation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,19 @@
name: annotation
on: [push, pull_request]
jobs:
flake8-annotation:
flake8-annotation-python2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Flake8 with annotations
- name: Flake8 with annotations - Python 2
# Using the flake8 options in the .flake8 file
uses: peternewman/actions-flake8@python2
flake8-annotation-python3:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Flake8 with annotations - Python 3
# Using the flake8 options in the .flake8 file
uses: TrueBrain/actions-flake8@master
with:
only_warn: 1
15 changes: 10 additions & 5 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
x/11/2020 ola-0.10.8
22/11/2020 ola-0.10.8
Features:
* Support DragonFly BSD
* Add another Debian test
* Add the E1.33 NACK Reasons
* Add the E1.37-7 NACK Reasons
* Use clock_gettime's CLOCK_MONOTONIC if available
* Collect the PDL size in the model collector

API:
* Deprecated Clock::CurrentTime and added Clock::CurrentMonotonicTime and
Expand Down Expand Up @@ -40,23 +41,27 @@ x/11/2020 ola-0.10.8
* Fix a bug with the Python ola_rdm_get and PROXIED_DEVICES display
* Renamed RESONSE_INVALID_DESTINATION(sic) to RESPONSE_INVALID_DESTINATION in
the ArduinoWidget code
* Fix compatibility with GCC 9
* Fix compatibility with GCC 9 #1553 Debain #925793
* Ensure the GPIO plugin correctly writes to the last configured pin
* Fix compatibility with ncurses 6
* Fix compatibility with Protobuf 3.7 and newer (tested with up to 3.12.2)
#1550, #1634
* Rename CircularDepdendancyException(sic) to CircularDependencyException in
the Python RDM Test code, also the relevant comments
* Fix a minor longstanding logging bug with Avahi subtype registration errors
* Fix Enttec USB Pro Mk2 firmware >=4.15 RDM Discovery #1631
* Fix compatibility with libmicrohttpd v0.9.71 and newer
* Fix compatibility with libmicrohttpd v0.9.71 and newer #1650
* Fix some Doxygen escaping
* Rename AppendMultipler(sic) to AppendMultiplier in the RDM messaging code
* Fix a few edge cases in ola_trigger around whitespace in the config files
* Fix compatibility with clang 7 and newer (tested with up to 11) #1564

Internal:
* Replace "readdir_r" with "readdir" since the former has been deprecated
* Add a unit test for the functions that used readdir_r before
* Add a new 'make lint' target
* Add a new 'make flake8' target
* Add a new 'make flake8' target #1619
* Add a new 'make cpplint' target
* Add a new 'make lint' target which runs the flake8 and cpplint runs

13/7/2018 ola-0.10.7
Features:
Expand Down
2 changes: 1 addition & 1 deletion config/ola_version.m4
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# -----------------------------------------------------------------------------
m4_define([ola_major_version], [0])
m4_define([ola_minor_version], [10])
m4_define([ola_revision_version], [7])
m4_define([ola_revision_version], [8])

m4_define([ola_version],
[ola_major_version.ola_minor_version.ola_revision_version])
5 changes: 4 additions & 1 deletion data/rdm/Makefile.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,7 @@ data_rdm_PidDataTester_SOURCES = data/rdm/PidDataTest.cpp
data_rdm_PidDataTester_CXXFLAGS = $(COMMON_TESTING_FLAGS) -DDATADIR=\"$(srcdir)/data/rdm\"
data_rdm_PidDataTester_LDADD = $(COMMON_TESTING_LIBS)

CLEANFILES += data/rdm/PidDataTest.sh
CLEANFILES += \
data/rdm/*.pyc \
data/rdm/PidDataTest.sh \
data/rdm/__pycache__/*

0 comments on commit 1965826

Please sign in to comment.