From c12b7755293b9f6883fd1edcd17aa9b0af646d23 Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Wed, 1 Dec 2021 08:54:21 +0100 Subject: [PATCH 1/4] fix VMI_EVENTS_VERSION to 0x8 --- .github/workflows/ci.yml | 2 +- libvmi/events_cdef.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b5ec42..558c5a3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,4 +80,4 @@ jobs: with: user: __token__ password: ${{ secrets.ACCESS_TOKEN }} - packages_dir: python-libvmi/dist/ \ No newline at end of file + packages_dir: python-libvmi/dist/ diff --git a/libvmi/events_cdef.h b/libvmi/events_cdef.h index 0e77161..89eb0b4 100644 --- a/libvmi/events_cdef.h +++ b/libvmi/events_cdef.h @@ -1,4 +1,4 @@ -#define VMI_EVENTS_VERSION 0x00000007 +#define VMI_EVENTS_VERSION 0x00000008 typedef uint16_t vmi_event_type_t; From 80c2d75935c6cd1f35728b7509cdec094951a970 Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Wed, 1 Dec 2021 09:01:33 +0100 Subject: [PATCH 2/4] README: add Github Actions CI status badge --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cd3106..1352105 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Libvmi Python bindings [![Join the chat at https://gitter.im/libvmi/python](https://badges.gitter.im/libvmi/python.svg)](https://gitter.im/libvmi/python?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) -[![Build Status](https://travis-ci.org/libvmi/python.svg?branch=master)](https://travis-ci.org/libvmi/python) +[![CI](https://github.com/libvmi/python/actions/workflows/ci.yml/badge.svg)](https://github.com/libvmi/python/actions/workflows/ci.yml) If you'd rather perform introspection using Python instead of C, then these bindings will help get you going. From 1287b9a2a2c3074424e98cd9a3c894f9fa598003 Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Wed, 1 Dec 2021 09:07:06 +0100 Subject: [PATCH 3/4] ci: fix installing dependencies --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 558c5a3..6493cf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,7 +43,7 @@ jobs: python-version: ${{ matrix.python }} - name: install dependencies - run: sudo apt-get install -qq cmake bison flex check libjson-c-dev libglib2.0-dev libxenstore3.0 libxen-dev libvirt-dev + run: sudo apt-get update && sudo apt-get install -qq cmake bison flex check libjson-c-dev libglib2.0-dev libxenstore3.0 libxen-dev libvirt-dev - name: clone libvmi uses: actions/checkout@v2 From b8c1fb28097793bbb59d694458e1130c0c00b136 Mon Sep 17 00:00:00 2001 From: Mathieu Tarral Date: Wed, 1 Dec 2021 08:54:44 +0100 Subject: [PATCH 4/4] setup: release 3.5 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 532f4dc..94d3a13 100755 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ def read_file(filename): setup( name='libvmi', - version='3.4', + version='3.5', description='Python interface to LibVMI', long_description=read_file('README.md'), long_description_content_type='text/markdown',