Skip to content

Commit

Permalink
Merge pull request #84 from vkottler/dev/3.0.1
Browse files Browse the repository at this point in the history
3.0.1 - Don't address sanitize by default
  • Loading branch information
vkottler authored Mar 15, 2024
2 parents f8e9c06 + f9fb1f9 commit 20983d9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ jobs:
- run: |
mk python-release owner=vkottler \
repo=yambs version=3.0.0
repo=yambs version=3.0.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.4
hash=807e0a42a738120cbe4629477dbbafe5
hash=454db224964265a8f876fd45d5428729
=====================================
-->

# yambs ([3.0.0](https://pypi.org/project/yambs/))
# yambs ([3.0.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 local/variables/package.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
major: 3
minor: 0
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 = "3.0.0"
version = "3.0.1"
description = "Yet another meta build-system."
readme = "README.md"
requires-python = ">=3.11"
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.4
# hash=eb43e10924888ea3ff0d4f7e0f7089f0
# hash=b475fd73010de586bb8bb1e4f9f769d7
# =====================================

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

DESCRIPTION = "Yet another meta build-system."
PKG_NAME = "yambs"
VERSION = "3.0.0"
VERSION = "3.0.1"
3 changes: 2 additions & 1 deletion yambs/data/native.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ ldflag_groups:
variants:

debug:
cflag_groups: [asan]
# asan - manually opt-in
cflag_groups: []

opt: {}

Expand Down

0 comments on commit 20983d9

Please sign in to comment.