Skip to content

Commit 538d6af

Browse files
author
tinker-michaelj
committed
[maven-release-plugin] Prepare release
Signed-off-by: tinker-michaelj <[email protected]>
1 parent c8e7427 commit 538d6af

File tree

6 files changed

+27
-20
lines changed

6 files changed

+27
-20
lines changed

hapi-fees/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.hedera.hashgraph</groupId>
1212
<artifactId>hedera-services</artifactId>
13-
<version>0.9.1-SNAPSHOT</version>
13+
<version>0.10.0-rc.1</version>
1414
</parent>
1515

1616
<properties>
@@ -21,7 +21,7 @@
2121
<dependency>
2222
<groupId>com.hedera.hashgraph</groupId>
2323
<artifactId>hedera-protobuf-java-api</artifactId>
24-
<version>0.9.1-SNAPSHOT</version>
24+
<version>0.10.0-rc.1</version>
2525
</dependency>
2626
<!-- Test dependencies -->
2727
<dependency>

hapi-proto/HAPI.html

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8841,7 +8841,7 @@ <h3 id="proto.TokenCreateTransactionBody">TokenCreateTransactionBody</h3>
88418841

88428842
<tr>
88438843
<td>expiry</td>
8844-
<td><a href="#uint64">uint64</a></td>
8844+
<td><a href="#proto.Timestamp">Timestamp</a></td>
88458845
<td></td>
88468846
<td><p>The epoch second at which the token should expire; if an auto-renew account and period are specified, this is coerced to the current epoch second plus the autoRenewPeriod </p></td>
88478847
</tr>
@@ -8855,7 +8855,7 @@ <h3 id="proto.TokenCreateTransactionBody">TokenCreateTransactionBody</h3>
88558855

88568856
<tr>
88578857
<td>autoRenewPeriod</td>
8858-
<td><a href="#uint64">uint64</a></td>
8858+
<td><a href="#proto.Duration">Duration</a></td>
88598859
<td></td>
88608860
<td><p>The interval at which the auto-renew account will be charged to extend the token&#39;s expiry </p></td>
88618861
</tr>
@@ -9173,7 +9173,7 @@ <h3 id="proto.TokenInfo">TokenInfo</h3>
91739173
</tr>
91749174

91759175
<tr>
9176-
<td>isDeleted</td>
9176+
<td>deleted</td>
91779177
<td><a href="#bool">bool</a></td>
91789178
<td></td>
91799179
<td><p>Specifies whether the token was deleted or not </p></td>
@@ -9188,16 +9188,16 @@ <h3 id="proto.TokenInfo">TokenInfo</h3>
91889188

91899189
<tr>
91909190
<td>autoRenewPeriod</td>
9191-
<td><a href="#uint64">uint64</a></td>
9191+
<td><a href="#proto.Duration">Duration</a></td>
91929192
<td></td>
91939193
<td><p>The interval at which the auto-renew account will be charged to extend the token&#39;s expiry </p></td>
91949194
</tr>
91959195

91969196
<tr>
91979197
<td>expiry</td>
9198-
<td><a href="#uint64">uint64</a></td>
9198+
<td><a href="#proto.Timestamp">Timestamp</a></td>
91999199
<td></td>
9200-
<td><p>The epoch second at which the token will expire; if an auto-renew account and period are specified, this is coerced to the current epoch second plus the autoRenewPeriod </p></td>
9200+
<td><p>The epoch second at which the token will expire </p></td>
92019201
</tr>
92029202

92039203
</tbody>
@@ -9600,14 +9600,14 @@ <h3 id="proto.TokenUpdateTransactionBody">TokenUpdateTransactionBody</h3>
96009600

96019601
<tr>
96029602
<td>autoRenewPeriod</td>
9603-
<td><a href="#uint64">uint64</a></td>
9603+
<td><a href="#proto.Duration">Duration</a></td>
96049604
<td></td>
96059605
<td><p>The new interval at which the auto-renew account will be charged to extend the token&#39;s expiry. </p></td>
96069606
</tr>
96079607

96089608
<tr>
96099609
<td>expiry</td>
9610-
<td><a href="#uint64">uint64</a></td>
9610+
<td><a href="#proto.Timestamp">Timestamp</a></td>
96119611
<td></td>
96129612
<td><p>The new expiry time of the token. Expiry can be updated even if admin key is not set. If the provided expiry is earlier than the current token expiry, transaction wil resolve to INVALID_EXPIRATION_TIME </p></td>
96139613
</tr>
@@ -10512,12 +10512,19 @@ <h3 id="proto.TransactionReceipt">TransactionReceipt</h3>
1051210512
</tr>
1051310513

1051410514
<tr>
10515-
<td>tokenId</td>
10515+
<td>tokenID</td>
1051610516
<td><a href="#proto.TokenID">TokenID</a></td>
1051710517
<td></td>
1051810518
<td><p>In the receipt of a CreateToken, the id of the newly created token </p></td>
1051910519
</tr>
1052010520

10521+
<tr>
10522+
<td>newTotalSupply</td>
10523+
<td><a href="#uint64">uint64</a></td>
10524+
<td></td>
10525+
<td><p>In the receipt of TokenMint, TokenWipe, TokenBurn, the current total supply of this token </p></td>
10526+
</tr>
10527+
1052110528
</tbody>
1052210529
</table>
1052310530

hapi-proto/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.hedera.hashgraph</groupId>
1212
<artifactId>hedera-services</artifactId>
13-
<version>0.9.1-SNAPSHOT</version>
13+
<version>0.10.0-rc.1</version>
1414
</parent>
1515

1616
<properties>

hedera-node/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.hedera.hashgraph</groupId>
1212
<artifactId>hedera-services</artifactId>
13-
<version>0.9.1-SNAPSHOT</version>
13+
<version>0.10.0-rc.1</version>
1414
</parent>
1515

1616
<properties>
@@ -270,12 +270,12 @@
270270
<dependency>
271271
<groupId>com.hedera.hashgraph</groupId>
272272
<artifactId>hapi-fees</artifactId>
273-
<version>0.9.1-SNAPSHOT</version>
273+
<version>0.10.0-rc.1</version>
274274
</dependency>
275275
<dependency>
276276
<groupId>com.hedera.hashgraph</groupId>
277277
<artifactId>hedera-protobuf-java-api</artifactId>
278-
<version>0.9.1-SNAPSHOT</version>
278+
<version>0.10.0-rc.1</version>
279279
</dependency>
280280
<dependency>
281281
<groupId>com.swirlds</groupId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<groupId>com.hedera.hashgraph</groupId>
55
<artifactId>hedera-services</artifactId>
6-
<version>0.9.1-SNAPSHOT</version>
6+
<version>0.10.0-rc.1</version>
77
<description>
88
Hedera Services (crypto, file, contract, consensus) on the Platform
99
</description>
@@ -21,7 +21,7 @@
2121
<url>https://github.com/hashgraph/hedera-services</url>
2222
<connection>scm:git:[email protected]:hashgraph/hedera-services.git</connection>
2323
<developerConnection>scm:git:[email protected]:hashgraph/hedera-services.git</developerConnection>
24-
<tag>release/0.10</tag>
24+
<tag>v0.10.0-rc.1</tag>
2525
</scm>
2626

2727
<developers>

test-clients/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.hedera.hashgraph</groupId>
1212
<artifactId>hedera-services</artifactId>
13-
<version>0.9.1-SNAPSHOT</version>
13+
<version>0.10.0-rc.1</version>
1414
</parent>
1515

1616
<properties>
@@ -282,12 +282,12 @@
282282
<dependency>
283283
<groupId>com.hedera.hashgraph</groupId>
284284
<artifactId>hedera-protobuf-java-api</artifactId>
285-
<version>0.9.1-SNAPSHOT</version>
285+
<version>0.10.0-rc.1</version>
286286
</dependency>
287287
<dependency>
288288
<groupId>com.hedera.hashgraph</groupId>
289289
<artifactId>hapi-fees</artifactId>
290-
<version>0.9.1-SNAPSHOT</version>
290+
<version>0.10.0-rc.1</version>
291291
</dependency>
292292
<dependency>
293293
<groupId>org.apache.commons</groupId>

0 commit comments

Comments
 (0)