From 0e60f1502c00c6c99d834259072bc8315cb3a34e Mon Sep 17 00:00:00 2001 From: Uwe McVogt Date: Thu, 25 Apr 2024 11:36:26 +0200 Subject: [PATCH 01/13] Set version numbers for next release Relates to [MACCAN-190] --- Libraries/CANAPI/Makefile | 6 +++--- Libraries/PeakCAN/Makefile | 8 ++++---- Sources/PeakCAN.cpp | 8 ++++---- Sources/PeakCAN.h | 4 ++-- Sources/Wrapper/can_api.c | 10 +++++----- Utilities/can_moni/Driver.h | 8 ++++---- Utilities/can_moni/Makefile | 8 ++++---- Utilities/can_moni/README.md | 4 ++-- Utilities/can_test/Driver.h | 8 ++++---- Utilities/can_test/Makefile | 8 ++++---- Utilities/can_test/README.md | 4 ++-- 11 files changed, 38 insertions(+), 38 deletions(-) diff --git a/Libraries/CANAPI/Makefile b/Libraries/CANAPI/Makefile index a5b3ceb..949a7bd 100644 --- a/Libraries/CANAPI/Makefile +++ b/Libraries/CANAPI/Makefile @@ -1,7 +1,7 @@ # # CAN Interface API, Version 3 (for PEAK-System PCAN-USB Interfaces) # -# Copyright (c) 2012-2023 Uwe Vogt, UV Software, Berlin (info@mac-can.com) +# Copyright (c) 2012-204 Uwe Vogt, UV Software, Berlin (info@mac-can.com) # All rights reserved. # # This library is part of PCBUSB-Wrapper. @@ -65,7 +65,7 @@ LIBRARY = libUVCANPCB MAJOR = 0 MINOR = 2 -PATCH = 7 +PATCH = 8 VERSION = $(MAJOR).$(MINOR).$(PATCH) TARGET = $(LIBRARY).$(VERSION).dylib @@ -126,7 +126,7 @@ LIBRARY = libuvcanpcb MAJOR = 0 MINOR = 2 -PATCH = 7 +PATCH = 8 VERSION = $(MAJOR).$(MINOR).$(PATCH) SONAME = $(LIBRARY).so diff --git a/Libraries/PeakCAN/Makefile b/Libraries/PeakCAN/Makefile index e9bf4ca..ab0c4c1 100644 --- a/Libraries/PeakCAN/Makefile +++ b/Libraries/PeakCAN/Makefile @@ -1,7 +1,7 @@ # # CAN Interface API, Version 3 (for PEAK-System PCAN-USB Interfaces) # -# Copyright (c) 2012-2023 Uwe Vogt, UV Software, Berlin (info@mac-can.com) +# Copyright (c) 2012-2024 Uwe Vogt, UV Software, Berlin (info@mac-can.com) # All rights reserved. # # This library is part of PCBUSB-Wrapper. @@ -42,7 +42,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with PCBUSB-Wrapper. If not, see . +# along with PCBUSB-Wrapper. If not, see . # current_OS := $(shell sh -c 'uname 2>/dev/null || echo Unknown OS') current_OS := $(patsubst CYGWIN%,Cygwin,$(current_OS)) @@ -65,7 +65,7 @@ LIBRARY = libPeakCAN MAJOR = 0 MINOR = 2 -PATCH = 7 +PATCH = 8 VERSION = $(MAJOR).$(MINOR).$(PATCH) TARGET = $(LIBRARY).$(VERSION).dylib @@ -126,7 +126,7 @@ LIBRARY = libpeakcan MAJOR = 0 MINOR = 2 -PATCH = 7 +PATCH = 8 VERSION = $(MAJOR).$(MINOR).$(PATCH) SONAME = $(LIBRARY).so diff --git a/Sources/PeakCAN.cpp b/Sources/PeakCAN.cpp index 75a3273..18aac5b 100644 --- a/Sources/PeakCAN.cpp +++ b/Sources/PeakCAN.cpp @@ -2,7 +2,7 @@ // // CAN Interface API, Version 3 (for PEAK-System PCAN-USB Interfaces) // -// Copyright (c) 2012-2023 Uwe Vogt, UV Software, Berlin (info@mac-can.com) +// Copyright (c) 2012-2024 Uwe Vogt, UV Software, Berlin (info@mac-can.com) // All rights reserved. // // This file is part of PCBUSB-Wrapper. @@ -48,12 +48,12 @@ #include "build_no.h" #ifdef _MSC_VER #define VERSION_MAJOR 0 -#define VERSION_MINOR 4 -#define VERSION_PATCH 7 +#define VERSION_MINOR 5 +#define VERSION_PATCH 0 #else #define VERSION_MAJOR 0 #define VERSION_MINOR 2 -#define VERSION_PATCH 7 +#define VERSION_PATCH 99 #endif #define VERSION_BUILD BUILD_NO #define VERSION_STRING TOSTRING(VERSION_MAJOR) "." TOSTRING(VERSION_MINOR) "." TOSTRING(VERSION_PATCH) " (" TOSTRING(BUILD_NO) ")" diff --git a/Sources/PeakCAN.h b/Sources/PeakCAN.h index 0cbcf32..358cb31 100644 --- a/Sources/PeakCAN.h +++ b/Sources/PeakCAN.h @@ -2,7 +2,7 @@ // // CAN Interface API, Version 3 (for PEAK-System PCAN-USB Interfaces) // -// Copyright (c) 2012-2023 Uwe Vogt, UV Software, Berlin (info@mac-can.com) +// Copyright (c) 2012-2024 Uwe Vogt, UV Software, Berlin (info@mac-can.com) // All rights reserved. // // This file is part of PCBUSB-Wrapper. @@ -59,7 +59,7 @@ #define PEAKCAN_LIBRARY_NAME CANDLL_PCANBASIC #define PEAKCAN_LIBRARY_VENDOR "UV Software, Berlin" #define PEAKCAN_LIBRARY_LICENSE "BSD-2-Clause OR GPL-3.0-or-later" -#define PEAKCAN_LIBRARY_COPYRIGHT "Copyright (c) 2012-2023 Uwe Vogt, UV Software, Berlin" +#define PEAKCAN_LIBRARY_COPYRIGHT "Copyright (c) 2012-2024 by Uwe Vogt, UV Software, Berlin" #define PEAKCAN_LIBRARY_HAZARD_NOTE "If you connect your CAN device to a real CAN network when using this library,\n" \ "you might damage your application." /// \} diff --git a/Sources/Wrapper/can_api.c b/Sources/Wrapper/can_api.c index c62a77e..e9cc6e1 100755 --- a/Sources/Wrapper/can_api.c +++ b/Sources/Wrapper/can_api.c @@ -2,7 +2,7 @@ /* * CAN Interface API, Version 3 (for PEAK-System PCAN-USB Interfaces) * - * Copyright (c) 2012-2023 Uwe Vogt, UV Software, Berlin (info@mac-can.com) + * Copyright (c) 2012-2024 Uwe Vogt, UV Software, Berlin (info@mac-can.com) * All rights reserved. * * This file is part of PCBUSB-Wrapper. @@ -43,7 +43,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with PCBUSB-Wrapper. If not, see . + * along with PCBUSB-Wrapper. If not, see . */ /** @addtogroup can_api * @{ @@ -51,12 +51,12 @@ #include "build_no.h" #ifdef _MSC_VER #define VERSION_MAJOR 0 -#define VERSION_MINOR 4 -#define VERSION_PATCH 7 +#define VERSION_MINOR 5 +#define VERSION_PATCH 0 #else #define VERSION_MAJOR 0 #define VERSION_MINOR 2 -#define VERSION_PATCH 7 +#define VERSION_PATCH 99 #endif #define VERSION_BUILD BUILD_NO #define VERSION_STRING TOSTRING(VERSION_MAJOR) "." TOSTRING(VERSION_MINOR) "." TOSTRING(VERSION_PATCH) " (" TOSTRING(BUILD_NO) ")" diff --git a/Utilities/can_moni/Driver.h b/Utilities/can_moni/Driver.h index 9c1cf45..16bc5f7 100644 --- a/Utilities/can_moni/Driver.h +++ b/Utilities/can_moni/Driver.h @@ -2,7 +2,7 @@ // // CAN Monitor for generic Interfaces (CAN API V3) // -// Copyright (c) 2007,2012-2023 Uwe Vogt, UV Software, Berlin (info@mac-can.com) +// Copyright (c) 2007,2012-2024 Uwe Vogt, UV Software, Berlin (info@mac-can.com) // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -15,14 +15,14 @@ // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License -// along with this program. If not, see . +// along with this program. If not, see . // #ifndef DRIVER_H_INCLUDED #define DRIVER_H_INCLUDED #include "build_no.h" #define VERSION_MAJOR 0 #define VERSION_MINOR 2 -#define VERSION_PATCH 7 +#define VERSION_PATCH 8 #define VERSION_BUILD BUILD_NO #define VERSION_STRING TOSTRING(VERSION_MAJOR) "." TOSTRING(VERSION_MINOR) "." TOSTRING(VERSION_PATCH) " (" TOSTRING(BUILD_NO) ")" #if defined(_WIN64) @@ -44,7 +44,7 @@ #define CAN_FD_SUPPORTED 1 // don't touch that dial #endif #define MONITOR_INTEFACE "PEAK-System PCAN-USB Interfaces" -#define MONITOR_COPYRIGHT "2007,2012-2023 by Uwe Vogt, UV Software, Berlin" +#define MONITOR_COPYRIGHT "2007,2012-2024 by Uwe Vogt, UV Software, Berlin" #include "PeakCAN.h" diff --git a/Utilities/can_moni/Makefile b/Utilities/can_moni/Makefile index 4f2427c..0a45ee8 100644 --- a/Utilities/can_moni/Makefile +++ b/Utilities/can_moni/Makefile @@ -1,7 +1,7 @@ # # CAN Monitor for PEAK-System PCAN-USB Interfaces (CAN API V3) # -# Copyright (c) 2007,2012-2023 Uwe Vogt, UV Software, Berlin (info@mac-can.com) +# Copyright (c) 2007,2012-2024 Uwe Vogt, UV Software, Berlin (info@mac-can.com) # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -14,7 +14,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program If not, see . +# along with this program If not, see . # current_OS := $(shell sh -c 'uname 2>/dev/null || echo Unknown OS') current_OS := $(patsubst CYGWIN%,Cygwin,$(current_OS)) @@ -34,7 +34,7 @@ OBJECTS = $(OUTDIR)/main.o $(OUTDIR)/Timer.o \ ifeq ($(current_OS),Darwin) # macOS - libPeakCAN.dylib -VERSION = 0.2.7 +VERSION = 0.2.8 TARGET = can_moni @@ -77,7 +77,7 @@ endif ifeq ($(current_OS),Linux) # linux - libuvcanpcb.so -VERSION = 0.2.7 +VERSION = 0.2.8 TARGET = can_moni diff --git a/Utilities/can_moni/README.md b/Utilities/can_moni/README.md index 4862bbb..e88d876 100644 --- a/Utilities/can_moni/README.md +++ b/Utilities/can_moni/README.md @@ -1,5 +1,5 @@ -__CAN Monitor for PEAK-System PCAN-USB Interfaces, Version 0.2.7__ \ -Copyright © 2007,2012-2023 by Uwe Vogt, UV Software, Berlin +__CAN Monitor for PEAK-System PCAN-USB Interfaces, Version 0.2.8__ \ +Copyright © 2007,2012-2024 by Uwe Vogt, UV Software, Berlin ``` Usage: can_moni [