Skip to content

Commit

Permalink
Merge pull request #68 from vkottler/dev/2.5.1
Browse files Browse the repository at this point in the history
Update default cpp standard used
  • Loading branch information
vkottler authored Sep 24, 2023
2 parents 3059a5d + 296c005 commit 0ea0067
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion config
2 changes: 1 addition & 1 deletion local/variables/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
major: 2
minor: 5
patch: 0
patch: 1
entry: mbs
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 3 additions & 0 deletions tests/data/valid/scenarios/native/yambs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ project:
owner: &self vkottler

variants:
debug:
suffix: "-12"

# Toggle this to test regeneration.
# new_variant: {}

Expand Down
4 changes: 2 additions & 2 deletions yambs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# =====================================
# generator=datazen
# version=3.1.3
# hash=b744ad1050c0889bacd918e8f2a33ad7
# hash=a3123717bd1a79947b46a75b88435cbf
# =====================================

"""
Expand All @@ -10,4 +10,4 @@

DESCRIPTION = "Yet another meta build-system."
PKG_NAME = "yambs"
VERSION = "2.5.0"
VERSION = "2.5.1"
2 changes: 1 addition & 1 deletion yambs/data/schemas/toolchain_common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ properties:

cxx_standard:
type: string
default: gnu++20
default: gnu++2b

extra_cflags:
type: array
Expand Down

0 comments on commit 0ea0067

Please sign in to comment.