From 17077fe8d8d5b493891fff471d1f228228331d6f Mon Sep 17 00:00:00 2001 From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Mon, 7 Nov 2022 20:07:37 -0500 Subject: [PATCH] Fix default version string --- adafruit_ble_file_transfer.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/adafruit_ble_file_transfer.py b/adafruit_ble_file_transfer.py index cc70878..61cc750 100644 --- a/adafruit_ble_file_transfer.py +++ b/adafruit_ble_file_transfer.py @@ -28,7 +28,7 @@ except ImportError: pass -__version__ = "0.0.0-auto.0" +__version__ = "0.0.0+auto.0" __repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer.git" CHUNK_SIZE = 490 diff --git a/pyproject.toml b/pyproject.toml index f85a4cb..746d12f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ requires = [ [project] name = "adafruit-circuitpython-ble-file-transfer" description = "Simple BLE Service for reading and writing files over BLE" -version = "0.0.0-auto.0" +version = "0.0.0+auto.0" readme = "README.rst" authors = [ {name = "Adafruit Industries", email = "circuitpython@adafruit.com"}