From ea72e1000eb4b7a16d66b686bd109076c771003e Mon Sep 17 00:00:00 2001 From: Alec Delaney Date: Tue, 16 Aug 2022 18:09:13 -0400 Subject: [PATCH] Update version string --- adafruit_lsm303dlh_mag.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/adafruit_lsm303dlh_mag.py b/adafruit_lsm303dlh_mag.py index f0af616..7d6a35c 100644 --- a/adafruit_lsm303dlh_mag.py +++ b/adafruit_lsm303dlh_mag.py @@ -36,7 +36,7 @@ from micropython import const from adafruit_bus_device.i2c_device import I2CDevice -__version__ = "0.0.0-auto.0" +__version__ = "0.0.0+auto.0" __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_LSM303DLH_Mag.git" _ADDRESS_MAG = const(0x1E) # (0x3C >> 1) // 0011110x diff --git a/pyproject.toml b/pyproject.toml index 2805435..52ea4ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ requires = [ [project] name = "adafruit-circuitpython-lsm303dlh-mag" description = "CircuitPython library for LSM303DLH's 3-axis magnetometer." -version = "0.0.0-auto.0" +version = "0.0.0+auto.0" readme = "README.rst" authors = [ {name = "Adafruit Industries", email = "circuitpython@adafruit.com"}