Skip to content

Commit b2828d3

Browse files
committed
chg
Signed-off-by: gtebrean <[email protected]>
1 parent e510762 commit b2828d3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
1515

1616
### BREAKING CHANGES
1717

18-
*
18+
* Migrate to java 21 [#121](https://github.com/LFDT-web3j/web3j-cli/pull/121)
1919

2020

2121
# [1.6.3](https://github.com/hyperledger-web3j/web3j-cli/releases/tag/v1.6.3) (2025-02-10)

src/main/java/org/web3j/console/services/Updater.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
public class Updater {
2727
private static final String GITHUB_API_URL =
28-
"https://api.github.com/repos/hyperledger-web3j/web3j-cli/releases/latest";
28+
"https://api.github.com/repos/LFDT-web3j/web3j-cli/releases/latest";
2929

3030
public static void promptIfUpdateAvailable() throws IOException {
3131
String version = CliVersion.getVersion(); // Get current version from CLI

src/test/java/org/web3j/console/services/UpdaterTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public void testPromptIfUpdateAvailableWhenUpdateIsAvailable() throws IOExceptio
6464
.thenReturn("curl -L get.web3j.io | sh && source ~/.web3j/source.sh");
6565

6666
wireMockServer.stubFor(
67-
get(urlEqualTo("/repos/hyperledger-web3j/web3j-cli/releases/latest"))
67+
get(urlEqualTo("/repos/LFDT-web3j/web3j-cli/releases/latest"))
6868
.willReturn(
6969
aResponse()
7070
.withStatus(200)
@@ -92,7 +92,7 @@ public void testPromptIfUpdateAvailableWhenNoUpdateIsAvailable() throws IOExcept
9292
ConfigManager.config = mockConfig;
9393

9494
wireMockServer.stubFor(
95-
get(urlEqualTo("/repos/hyperledger-web3j/web3j-cli/releases/latest"))
95+
get(urlEqualTo("/repos/LFDT-web3j/web3j-cli/releases/latest"))
9696
.willReturn(
9797
aResponse()
9898
.withStatus(200)

0 commit comments

Comments
 (0)