Skip to content

Commit

Permalink
Update project versions to 1.33.5
Browse files Browse the repository at this point in the history
Increment the version numbers in the pom.xml files for consistency across projects. Additionally, fix method calls in JupiterManager.java from setUser to setPublicKey.
  • Loading branch information
skynetcap committed Oct 31, 2024
1 parent 61500f6 commit 7bec472
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bonfida/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>solanaj-programs</artifactId>
<groupId>com.mmorrell</groupId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions jupiter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.mmorrell</groupId>
<artifactId>solanaj-programs</artifactId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>

<artifactId>jupiter</artifactId>
Expand All @@ -20,7 +20,7 @@
<dependency>
<groupId>com.mmorrell</groupId>
<artifactId>openbook</artifactId>
<version>1.33.4</version>
<version>1.33.5</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public List<JupiterDca> getDcaAccounts() {
for (ProgramAccount account : accounts) {
byte[] data = account.getAccount().getDecodedData();
JupiterDca dca = JupiterDca.fromByteArray(data);
dca.setUser(new PublicKey(account.getPubkey()));
dca.setPublicKey(account.getPublicKey());
dcaAccounts.add(dca);
}

Expand Down Expand Up @@ -157,7 +157,7 @@ public List<JupiterDca> getDcaAccounts(PublicKey user) {
for (ProgramAccount account : accounts) {
byte[] data = account.getAccount().getDecodedData();
JupiterDca dca = JupiterDca.fromByteArray(data);
dca.setUser(new PublicKey(account.getPubkey()));
dca.setPublicKey(account.getPublicKey());
dcaAccounts.add(dca);
}

Expand Down
2 changes: 1 addition & 1 deletion magiceden/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>solanaj-programs</artifactId>
<groupId>com.mmorrell</groupId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion mango/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>solanaj-programs</artifactId>
<groupId>com.mmorrell</groupId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion metaplex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>solanaj-programs</artifactId>
<groupId>com.mmorrell</groupId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion openbook/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>solanaj-programs</artifactId>
<groupId>com.mmorrell</groupId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
6 changes: 3 additions & 3 deletions phoenix/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.mmorrell</groupId>
<artifactId>solanaj-programs</artifactId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>

<artifactId>phoenix</artifactId>
Expand All @@ -20,13 +20,13 @@
<dependency>
<groupId>com.mmorrell</groupId>
<artifactId>serum</artifactId>
<version>1.33.4</version>
<version>1.33.5</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.mmorrell</groupId>
<artifactId>metaplex</artifactId>
<version>1.33.4</version>
<version>1.33.5</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<groupId>com.mmorrell</groupId>
<artifactId>solanaj-programs</artifactId>
<packaging>pom</packaging>
<version>1.33.4</version>
<version>1.33.5</version>
<name>${project.groupId}:${project.artifactId}</name>
<description>Program libraries for SolanaJ, a library for Solana RPC</description>
<url>https://github.com/skynetcap/solanaj-programs</url>
Expand Down
2 changes: 1 addition & 1 deletion pyth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>solanaj-programs</artifactId>
<groupId>com.mmorrell</groupId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion serum/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>solanaj-programs</artifactId>
<groupId>com.mmorrell</groupId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion zeta/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>solanaj-programs</artifactId>
<groupId>com.mmorrell</groupId>
<version>1.33.4</version>
<version>1.33.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down

0 comments on commit 7bec472

Please sign in to comment.