Skip to content

Commit

Permalink
changelog, change version
Browse files Browse the repository at this point in the history
  • Loading branch information
odudex committed Nov 18, 2023
1 parent f07c802 commit 276c72a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# Version 23.09.1 - November 18, 2023
This release contain bugfixes:
Encrypted Mnemonic QR codes would fail to decrypt if PBKDF2 iterations settings was changed to non multiple of 10,000.
QR code transcription helpers that highlight regions could crash on edges of some QR code sizes.
Address navigation index menus wouldn't show correct number indexes for "previous" option.

# Version 23.09.0 - September 12, 2023
After a long year, new features are finally coming out of beta and making their way into a stable release. Also @jreesun appointed @odudex as the new lead maintainer of the project.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

[tool.poetry]
name = "krux"
version = "23.09.0"
version = "23.09.1"
description = "Open-source signing device firmware for Bitcoin"
authors = ["Jeff S <[email protected]>"]

Expand Down
2 changes: 1 addition & 1 deletion src/krux/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
VERSION = "23.09.0"
VERSION = "23.09.1"
SIGNER_PUBKEY = "03339e883157e45891e61ca9df4cd3bb895ef32d475b8e793559ea10a36766689b"
3 changes: 2 additions & 1 deletion src/krux/pages/addresses.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ def list_address_type(self, addr_type=0):
if num_checked + 1 > LIST_ADDRESS_QTD:
items.append(
(
"%d..%d" % (num_checked - LIST_ADDRESS_QTD + 1, num_checked),
"%d..%d"
% (num_checked - LIST_ADDRESS_QTD + 1, num_checked),
lambda: MENU_EXIT,
)
)
Expand Down

0 comments on commit 276c72a

Please sign in to comment.