From 296c0057c3b6789c5ed3eb60b85db571a27aebec Mon Sep 17 00:00:00 2001 From: Vaughn Kottler Date: Sun, 24 Sep 2023 14:39:00 -0500 Subject: [PATCH] Update default cpp standard used --- .github/workflows/python-package.yml | 4 ++-- README.md | 4 ++-- config | 2 +- local/variables/package.yaml | 2 +- pyproject.toml | 2 +- tests/data/valid/scenarios/native/yambs.yaml | 3 +++ yambs/__init__.py | 4 ++-- yambs/data/schemas/toolchain_common.yaml | 2 +- 8 files changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 71bb7e6..dcb6274 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -62,7 +62,7 @@ jobs: env: PY_TEST_EXTRA_ARGS: --cov-report=xml - - uses: codecov/codecov-action@main + - uses: codecov/codecov-action@v3 - run: mk pypi-upload-ci env: @@ -75,7 +75,7 @@ jobs: - run: | mk python-release owner=vkottler \ - repo=yambs version=2.5.0 + repo=yambs version=2.5.1 if: | matrix.python-version == '3.11' && matrix.system == 'ubuntu-latest' diff --git a/README.md b/README.md index 271e4d4..18870a4 100644 --- a/README.md +++ b/README.md @@ -2,11 +2,11 @@ ===================================== generator=datazen version=3.1.3 - hash=bc7cb8521b2bef4718193efe5c136f80 + hash=024d5854c925e7e2bc56ca9b2646d66d ===================================== --> -# yambs ([2.5.0](https://pypi.org/project/yambs/)) +# yambs ([2.5.1](https://pypi.org/project/yambs/)) [![python](https://img.shields.io/pypi/pyversions/yambs.svg)](https://pypi.org/project/yambs/) ![Build Status](https://github.com/vkottler/yambs/workflows/Python%20Package/badge.svg) diff --git a/config b/config index 5b7a6b3..e575ffe 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit 5b7a6b32ef2a2e03dc91d8c5dbd779427d906389 +Subproject commit e575ffef31a4a26732d60891ae83d9209666c840 diff --git a/local/variables/package.yaml b/local/variables/package.yaml index 7db3497..46c6636 100644 --- a/local/variables/package.yaml +++ b/local/variables/package.yaml @@ -1,5 +1,5 @@ --- major: 2 minor: 5 -patch: 0 +patch: 1 entry: mbs diff --git a/pyproject.toml b/pyproject.toml index 7da54b6..09fcaa1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta:__legacy__" [project] name = "yambs" -version = "2.5.0" +version = "2.5.1" description = "Yet another meta build-system." readme = "README.md" requires-python = ">=3.11" diff --git a/tests/data/valid/scenarios/native/yambs.yaml b/tests/data/valid/scenarios/native/yambs.yaml index 3322882..83e1a4a 100644 --- a/tests/data/valid/scenarios/native/yambs.yaml +++ b/tests/data/valid/scenarios/native/yambs.yaml @@ -11,6 +11,9 @@ project: owner: &self vkottler variants: + debug: + suffix: "-12" + # Toggle this to test regeneration. # new_variant: {} diff --git a/yambs/__init__.py b/yambs/__init__.py index 54af25a..8a1e599 100644 --- a/yambs/__init__.py +++ b/yambs/__init__.py @@ -1,7 +1,7 @@ # ===================================== # generator=datazen # version=3.1.3 -# hash=b744ad1050c0889bacd918e8f2a33ad7 +# hash=a3123717bd1a79947b46a75b88435cbf # ===================================== """ @@ -10,4 +10,4 @@ DESCRIPTION = "Yet another meta build-system." PKG_NAME = "yambs" -VERSION = "2.5.0" +VERSION = "2.5.1" diff --git a/yambs/data/schemas/toolchain_common.yaml b/yambs/data/schemas/toolchain_common.yaml index bc1e1d5..46ed0e8 100644 --- a/yambs/data/schemas/toolchain_common.yaml +++ b/yambs/data/schemas/toolchain_common.yaml @@ -6,7 +6,7 @@ properties: cxx_standard: type: string - default: gnu++20 + default: gnu++2b extra_cflags: type: array