diff --git a/CHANGELOG b/CHANGELOG index 7b40e9d..37977b3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v3.1.1 + Update copyright + Fix Ethernet interfaces + v3.0.4 Update copyright Add Fedora package requirements to README diff --git a/README.md b/README.md index 045cb45..5e99077 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Version 3.0.4 +Version 3.1.1 This is the kernel object portion of the Intrepid Control Systems SocketCAN support. For SocketCAN to work with Intrepid devices you will need to have this kernel object loaded on your system. Once the module is built and loaded run [icsscand](https://github.com/intrepidcs/icsscand) to turn on SocketCAN support. diff --git a/intrepid.c b/intrepid.c index d745353..b4bc309 100644 --- a/intrepid.c +++ b/intrepid.c @@ -58,7 +58,7 @@ #define KO_DESC "Netdevice driver for Intrepid CAN/Ethernet devices" #define KO_MAJOR 3 #define KO_MINOR 1 -#define KO_PATCH 0 +#define KO_PATCH 1 #define KO_VERSION str(KO_MAJOR) "." str(KO_MINOR) "." str(KO_PATCH) #define KO_VERSION_INT (KO_MAJOR << 16) | (KO_MINOR << 8) | KO_PATCH