From b329316e1631d5dd2ab9531587b593c28bd19013 Mon Sep 17 00:00:00 2001 From: Dalton Luce Date: Fri, 24 Jan 2025 12:21:00 -0500 Subject: [PATCH] fix build flags in CI, bump to 1.0.7 --- .github/workflows/ci.yml | 4 ++-- meson.build | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ea18ee..66eab79 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -186,9 +186,9 @@ jobs: - name: Build env: CC: ${{ matrix.compiler }} - BuildFlag: ${{ matrix.coverage && '-Db_coverage=true' || '--buildtype=release -Dprefer_static=true'}} + BuildFlags: ${{ matrix.coverage && '-Db_coverage=true' || '--buildtype=release -Dprefer_static=true'}} run: | - meson setup build $BuildFlag + meson setup build ${{ env.BuildFlags }} meson compile --verbose -C build - name: Test diff --git a/meson.build b/meson.build index e169238..53adb8f 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('astroterm', 'c', - version: '1.0.6', + version: '1.0.7', default_options : ['warning_level=3', 'buildtype=debug'], meson_version: '>=1.4.0', )