Skip to content
This repository has been archived by the owner on Aug 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #55 from dj8yfo/app_rename_and_version
Browse files Browse the repository at this point in the history
chore: rename app `Rust Near` -> `NEAR`, set version to `2.0.0`
  • Loading branch information
dj8yfo authored May 20, 2024
2 parents f3c7ec7 + 9695629 commit b35243e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "app-near-rust"
version = "1.0.0"
version = "2.0.0"
authors = ["yhql", "agrojean-ledger", "dj8yf0μl"]
edition = "2021"

Expand All @@ -24,7 +24,7 @@ lto = true
curve = ["ed25519"]
flags = "0"
path = ["44'/397'"]
name = "Rust Near"
name = "NEAR"

[package.metadata.ledger.nanos]
icon = "crab.gif"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Ledger Rust Near Application
# Ledger NEAR Application

![Rule enforcer](https://github.com/dj8yfo/app-near-rs/actions/workflows/guidelines_enforcer.yml/badge.svg) ![Build and tests](https://github.com/dj8yfo/app-near-rs/actions/workflows/build_and_functional_tests.yml/badge.svg)

Expand Down
2 changes: 1 addition & 1 deletion src/app_ui/menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use crate::Instruction;

fn ui_about_menu(comm: &mut Comm) -> Event<Instruction> {
let pages = [
&Page::from((["Rust Near", "(c) 2023 Ledger"], true)),
&Page::from((["NEAR", "(c) 2024 Ledger"], true)),
&Page::from(("Back", &BACK)),
];
loop {
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ def test_get_version_cmd(backend):
version = client.get_version().data
assert len(version) == 3
# Assert that we have received the correct app version compared as Makefile data
assert (version[0], version[1], version[2]) == (1, 0, 0)
assert (version[0], version[1], version[2]) == (2, 0, 0)

0 comments on commit b35243e

Please sign in to comment.