diff --git a/boot/debug/boot.py b/boot/debug/boot.py
index e1dabb4..55af311 100755
--- a/boot/debug/boot.py
+++ b/boot/debug/boot.py
@@ -6,10 +6,7 @@
pwr = pyb.Pin("B15", pyb.Pin.OUT)
pwr.on()
-# v1.7.1-rc1 - use odd rc for main firmware and even for debug
-# so it's possible to upgrade from debug to main firmware.
-# (rc99 is final version for production)
-version = "0100700101"
+version = "0100800001"
leds = [pyb.LED(i) for i in range(1,5)]
# poweroff on button press
diff --git a/boot/main/boot.py b/boot/main/boot.py
index b1690e0..ea53d85 100755
--- a/boot/main/boot.py
+++ b/boot/main/boot.py
@@ -13,11 +13,7 @@
pwr = pyb.Pin("B15", pyb.Pin.OUT)
pwr.on()
-# v1.7.1-rc99 - rc99 is the production release.
-# Use odd rc for main firmware and even for debug
-# so it's possible to upgrade from debug to main firmware.
-# (rc99 is final version for production)
-version = "0100700199"
+version = "0100800099"
# get i2c
i2c = pyb.I2C(1)