Skip to content

Commit ea58138

Browse files
author
Alec Delaney
committed
2 parents f1c449a + f68869c commit ea58138

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
run: |
7272
pip install --upgrade build twine
7373
for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
74-
sed -i -e "s/0.0.0-auto.0/1.2.3/" $file;
74+
sed -i -e "s/0.0.0+auto.0/1.2.3/" $file;
7575
done;
7676
python -m build
7777
twine check dist/*

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
TWINE_PASSWORD: ${{ secrets.pypi_password }}
8383
run: |
8484
for file in $(find -not -path "./.*" -not -path "./docs*" \( -name "*.py" -o -name "*.toml" \) ); do
85-
sed -i -e "s/0.0.0-auto.0/${{github.event.release.tag_name}}/" $file;
85+
sed -i -e "s/0.0.0+auto.0/${{github.event.release.tag_name}}/" $file;
8686
done;
8787
python -m build
8888
twine upload dist/*

adafruit_button/button.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
from adafruit_display_shapes.roundrect import RoundRect
2727
from adafruit_button.button_base import ButtonBase, _check_color
2828

29-
__version__ = "0.0.0-auto.0"
29+
__version__ = "0.0.0+auto.0"
3030
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_Display_Button.git"
3131

3232

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ requires = [
1212
[project]
1313
name = "adafruit-circuitpython-display_button"
1414
description = "UI Buttons for displayio"
15-
version = "0.0.0-auto.0"
15+
version = "0.0.0+auto.0"
1616
readme = "README.rst"
1717
authors = [
1818
{name = "Adafruit Industries", email = "[email protected]"}

0 commit comments

Comments
 (0)