Skip to content

Commit

Permalink
Set version to 1.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
synaptics-lspintzyk committed Jul 21, 2023
1 parent 730e615 commit 83bb793
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion ci/deb_config
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ evdi_package_name='evdi'
evdi_maintainer='Synaptics Technical Support <technical-enquiries@synaptics.com>'

# shellcheck disable=SC2034
evdi_version='1.14.0'
evdi_version='1.14.1'

# shellcheck disable=SC2034
evdi_description="Extensible Virtual Display Interface (EVDI) is a Linux® kernel module that enables management of multiple screens.
Expand Down
4 changes: 2 additions & 2 deletions ci/set_version
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ sed -i "s/^MODVER=.*/MODVER=${MAJOR}.${MINOR}.${PATCH}/" module/Makefile

sed -i "s/^#define DRIVER_DATE .*$/#define DRIVER_DATE \"$(date +'%Y%m%d')\"/" module/evdi_platform_drv.h

sed -i "s/^VERSION_MAJOR=.*$/VERSION_MAJOR = ${MAJOR}/" pyevdi/test/test_version.py
sed -i "s/^VERSION_MINOR=.*$/VERSION_MINOR = ${MINOR}/" pyevdi/test/test_version.py
sed -i "s/^VERSION_MAJOR =.*$/VERSION_MAJOR = ${MAJOR}/" pyevdi/test/test_version.py
sed -i "s/^VERSION_MINOR =.*$/VERSION_MINOR = ${MINOR}/" pyevdi/test/test_version.py

tag="v${MAJOR}.${MINOR}.${PATCH}"
git tag "${tag}"
Expand Down
2 changes: 1 addition & 1 deletion library/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ PKG_CONFIG ?= pkg-config
DEPS = evdi_ioctl.h
CFLAGS := -I../module -std=gnu99 -fPIC -D_FILE_OFFSET_BITS=64 $(CFLAGS) $$($(PKG_CONFIG) --cflags-only-I libdrm)

LIBVER := 1.14.0
LIBVER := 1.14.1
LIBABI := 1

PREFIX ?= /usr/local
Expand Down
2 changes: 1 addition & 1 deletion library/evdi_lib.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ extern "C" {

#define LIBEVDI_VERSION_MAJOR 1
#define LIBEVDI_VERSION_MINOR 14
#define LIBEVDI_VERSION_PATCH 0
#define LIBEVDI_VERSION_PATCH 1

struct evdi_lib_version {
int version_major;
Expand Down
2 changes: 1 addition & 1 deletion module/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ CP ?= cp
DKMS ?= dkms
RM ?= rm

MODVER=1.14.0
MODVER=1.14.1

ifeq ($(KVER),)
KVER := $(shell uname -r)
Expand Down
2 changes: 1 addition & 1 deletion module/dkms.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#

PACKAGE_NAME="evdi"
PACKAGE_VERSION=1.14.0
PACKAGE_VERSION=1.14.1
AUTOINSTALL=yes

MAKE[0]="make all INCLUDEDIR=/lib/modules/$kernelver/build/include KVERSION=$kernelver DKMS_BUILD=1"
Expand Down
4 changes: 2 additions & 2 deletions module/evdi_platform_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ struct platform_device_info;

#define DRIVER_NAME "evdi"
#define DRIVER_DESC "Extensible Virtual Display Interface"
#define DRIVER_DATE "20230516"
#define DRIVER_DATE "20230721"

#define DRIVER_MAJOR 1
#define DRIVER_MINOR 14
#define DRIVER_PATCH 0
#define DRIVER_PATCH 1

void evdi_platform_remove_all_devices(struct device *device);
unsigned int evdi_platform_device_count(struct device *device);
Expand Down
2 changes: 1 addition & 1 deletion pyevdi/test/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import PyEvdi

VERSION_MAJOR = 1
VERSION_MINOR = 13
VERSION_MINOR = 14

def testVersion():
assert PyEvdi.version[:-1] == (VERSION_MAJOR, VERSION_MINOR)

0 comments on commit 83bb793

Please sign in to comment.