Skip to content

Commit

Permalink
bump version to 1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stepansnigirev committed Nov 26, 2020
1 parent 0c8d9c2 commit ea63d61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions boot/debug/boot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
pwr = pyb.Pin("B15", pyb.Pin.OUT)
pwr.on()

# v1.4.0-rc2 - use odd rc for main firmware and even for debug
# v1.4.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 = "<version:tag10>0100400002</version:tag10>"
version = "<version:tag10>0100400101</version:tag10>"

# poweroff on button press
pwrcb = lambda e: pwr.off()
Expand Down
4 changes: 2 additions & 2 deletions boot/main/boot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
pwr = pyb.Pin("B15", pyb.Pin.OUT)
pwr.on()

# v1.4.0-rc99 - use odd rc for main firmware and even for debug
# v1.4.1-rc99 - 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 = "<version:tag10>0100400099</version:tag10>"
version = "<version:tag10>0100400199</version:tag10>"

# poweroff on button press
pwrcb = lambda e: pwr.off()
Expand Down

0 comments on commit ea63d61

Please sign in to comment.