Skip to content

Commit ff32685

Browse files
author
Alec Delaney
committed
Update version string
1 parent 73b78e2 commit ff32685

13 files changed

+13
-13
lines changed

adafruit_seesaw/analoginput.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
====================================================
1010
"""
1111

12-
__version__ = "0.0.0-auto.0"
12+
__version__ = "0.0.0+auto.0"
1313
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
1414

1515

adafruit_seesaw/attiny8x7.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
==================================================================================
1010
"""
1111

12-
__version__ = "0.0.0-auto.0"
12+
__version__ = "0.0.0+auto.0"
1313
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
1414

1515

adafruit_seesaw/crickit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def const(x):
1717
return x
1818

1919

20-
__version__ = "0.0.0-auto.0"
20+
__version__ = "0.0.0+auto.0"
2121
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
2222

2323
# The ordering here reflects the seesaw firmware pinmap for crickit,

adafruit_seesaw/digitalio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
import digitalio
1313

14-
__version__ = "0.0.0-auto.0"
14+
__version__ = "0.0.0+auto.0"
1515
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
1616

1717

adafruit_seesaw/keypad.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def const(x):
1919

2020
from adafruit_seesaw.seesaw import Seesaw
2121

22-
__version__ = "0.0.0-auto.0"
22+
__version__ = "0.0.0+auto.0"
2323
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
2424

2525
_KEYPAD_BASE = const(0x10)

adafruit_seesaw/neopixel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def const(x):
1919
return x
2020

2121

22-
__version__ = "0.0.0-auto.0"
22+
__version__ = "0.0.0+auto.0"
2323
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
2424

2525
_NEOPIXEL_BASE = const(0x0E)

adafruit_seesaw/pwmout.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
====================================================
1010
"""
1111

12-
__version__ = "0.0.0-auto.0"
12+
__version__ = "0.0.0+auto.0"
1313
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
1414

1515

adafruit_seesaw/robohat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def const(x):
1717
return x
1818

1919

20-
__version__ = "0.0.0-auto.0"
20+
__version__ = "0.0.0+auto.0"
2121
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
2222

2323
# Robo HAT MM1 Board: https://www.crowdsupply.com/robotics-masters/robo-hat-mm1

adafruit_seesaw/rotaryio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
====================================================
1111
"""
1212

13-
__version__ = "0.0.0-auto.0"
13+
__version__ = "0.0.0+auto.0"
1414
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
1515

1616

adafruit_seesaw/samd09.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def const(x):
1717
return x
1818

1919

20-
__version__ = "0.0.0-auto.0"
20+
__version__ = "0.0.0+auto.0"
2121
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
2222

2323
_ADC_INPUT_0_PIN = const(0x02)

adafruit_seesaw/seesaw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def const(x):
4242

4343
from adafruit_bus_device.i2c_device import I2CDevice
4444

45-
__version__ = "0.0.0-auto.0"
45+
__version__ = "0.0.0+auto.0"
4646
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
4747

4848
_STATUS_BASE = const(0x00)

adafruit_seesaw/tftshield18.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def const(x):
2222

2323
from adafruit_seesaw.seesaw import Seesaw
2424

25-
__version__ = "0.0.0-auto.0"
25+
__version__ = "0.0.0+auto.0"
2626
__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_seesaw.git"
2727

2828
_TIMER_BASE = const(0x08)

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-seesaw"
1414
description = "CircuitPython library for controlling a SeeSaw helper chip."
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)