From 72faad36fa5256be28e56bef5e000e685de8d50a Mon Sep 17 00:00:00 2001 From: Teque5 Date: Mon, 16 Sep 2024 11:44:01 -0700 Subject: [PATCH] increment patch version for new release; improve github action --- .github/workflows/main.yml | 4 +++- sigmf/__init__.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d7193d7..0b6ef7b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,10 +4,12 @@ on: push: pull_request: types: [opened, synchronize] + schedule: + - cron: "5 5 * * 5" # test every friday @ 0505 jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: python-version: ["3.7", "3.9", "3.12"] diff --git a/sigmf/__init__.py b/sigmf/__init__.py index 103a993..e5138a8 100644 --- a/sigmf/__init__.py +++ b/sigmf/__init__.py @@ -5,7 +5,7 @@ # SPDX-License-Identifier: LGPL-3.0-or-later # version of this python module -__version__ = "1.2.2" +__version__ = "1.2.3" # matching version of the SigMF specification __specification__ = "1.2.0"