Skip to content

Commit

Permalink
Update version numbers for release
Browse files Browse the repository at this point in the history
Relates to [MACCAN-106]
  • Loading branch information
mac-can committed Jan 15, 2022
1 parent 4809b28 commit 5f9a127
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Libraries/CANAPI/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ LIBRARY = libUVCANPCB

MAJOR = 0
MINOR = 2
PATCH = 2
PATCH = 3

VERSION = $(MAJOR).$(MINOR).$(PATCH)
TARGET = $(LIBRARY).$(VERSION).dylib
Expand Down
2 changes: 1 addition & 1 deletion Libraries/PeakCAN/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ LIBRARY = libPeakCAN

MAJOR = 0
MINOR = 2
PATCH = 2
PATCH = 3

VERSION = $(MAJOR).$(MINOR).$(PATCH)
TARGET = $(LIBRARY).$(VERSION).dylib
Expand Down
4 changes: 2 additions & 2 deletions Sources/PeakCAN.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@
#ifdef _MSC_VER
#define VERSION_MAJOR 0
#define VERSION_MINOR 4
#define VERSION_PATCH 2
#define VERSION_PATCH 3
#else
#define VERSION_MAJOR 0
#define VERSION_MINOR 2
#define VERSION_PATCH 99
#define VERSION_PATCH 3
#endif
#define VERSION_BUILD BUILD_NO
#define VERSION_STRING TOSTRING(VERSION_MAJOR) "." TOSTRING(VERSION_MINOR) "." TOSTRING(VERSION_PATCH) " (" TOSTRING(BUILD_NO) ")"
Expand Down
4 changes: 2 additions & 2 deletions Sources/Wrapper/can_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@
#ifdef _MSC_VER
#define VERSION_MAJOR 0
#define VERSION_MINOR 4
#define VERSION_PATCH 2
#define VERSION_PATCH 3
#else
#define VERSION_MAJOR 0
#define VERSION_MINOR 2
#define VERSION_PATCH 99
#define VERSION_PATCH 3
#endif
#define VERSION_BUILD BUILD_NO
#define VERSION_STRING TOSTRING(VERSION_MAJOR) "." TOSTRING(VERSION_MINOR) "." TOSTRING(VERSION_PATCH) " (" TOSTRING(BUILD_NO) ")"
Expand Down
2 changes: 1 addition & 1 deletion Utilities/can_moni/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__CAN Monitor for PEAK PCAN-USB Interfaces, Version 0.2.2__ \
__CAN Monitor for PEAK PCAN-USB Interfaces, Version 0.2.3__ \
Copyright © 2008-2010,2012-2022 by Uwe Vogt, UV Software, Berlin

```
Expand Down
2 changes: 1 addition & 1 deletion Utilities/can_moni/Sources/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "build_no.h"
#define VERSION_MAJOR 0
#define VERSION_MINOR 2
#define VERSION_PATCH 99
#define VERSION_PATCH 3
#define VERSION_BUILD BUILD_NO
#define VERSION_STRING TOSTRING(VERSION_MAJOR) "." TOSTRING(VERSION_MINOR) "." TOSTRING(VERSION_PATCH) " (" TOSTRING(BUILD_NO) ")"
#if defined(_WIN64)
Expand Down
2 changes: 1 addition & 1 deletion Utilities/can_test/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__CAN Tester for PEAK PCAN-USB Interfaces, Version 0.2.2__ \
__CAN Tester for PEAK PCAN-USB Interfaces, Version 0.2.3__ \
Copyright © 2008-2010,2012-2022 by Uwe Vogt, UV Software, Berlin

```
Expand Down
2 changes: 1 addition & 1 deletion Utilities/can_test/Sources/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#include "build_no.h"
#define VERSION_MAJOR 0
#define VERSION_MINOR 2
#define VERSION_PATCH 99
#define VERSION_PATCH 3
#define VERSION_BUILD BUILD_NO
#define VERSION_STRING TOSTRING(VERSION_MAJOR) "." TOSTRING(VERSION_MINOR) "." TOSTRING(VERSION_PATCH) " (" TOSTRING(BUILD_NO) ")"
#if defined(_WIN64)
Expand Down

0 comments on commit 5f9a127

Please sign in to comment.