Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for stable release 2.28.0 #1567

Merged
merged 2 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 2.28.0

## What's Changed
* Improvements in HIP-729 integration test by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1523
* Update copyright date by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1522
* Improvements after resolving issue #1497 by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1521
* Add integration tests for `ContractFunctionParameters` by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1494
* Update README.md by @SimiHunjan in https://github.com/hashgraph/hedera-sdk-java/pull/1536
* Fix for `java.lang.VerifyError` exception in examples. by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1541
* Add unit tests for `TopicMessageSubmitTransaction` by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1544
* Add `addBoolArray` function to `ContractFunctionParameters` by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1543
* Add unit tests for `TopicMessageChunk` by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1550
* Add unit tests for `TopicMessage` by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1549
* Add more unit tests for `TopicUpdateTransaction` by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1551
* Updated addressbooks by @thenswan in https://github.com/hashgraph/hedera-sdk-java/pull/1558

## 2.27.0

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
> The Java SDK for interacting with Hedera Hashgraph: the official distributed
> consensus platform built using the hashgraph consensus algorithm for fast,
> fair and secure transactions. Hedera enables and empowers developers to
> build an entirely new class of decentralized applications. The Hedera Java SDK API docs can be found [here.](https://hashgraph.github.io/hedera-sdk-java/index.html)
> build an entirely new class of decentralized applications.

## Install

Expand All @@ -19,7 +19,7 @@
Select _one_ of the following depending on your target platform.

```groovy
implementation 'com.hedera.hashgraph:sdk:2.27.0'
implementation 'com.hedera.hashgraph:sdk:2.28.0'
```

Select _one_ of the following to provide the gRPC implementation.
Expand Down Expand Up @@ -56,7 +56,7 @@ Select _one_ of the following depending on your target platform.
<dependency>
<groupId>com.hedera.hashgraph</groupId>
<artifactId>sdk</artifactId>
<version>2.27.0</version>
<version>2.28.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion example-android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

implementation 'com.hedera.hashgraph:sdk:2.27.0'
implementation 'com.hedera.hashgraph:sdk:2.28.0'

implementation 'org.slf4j:slf4j-simple:2.0.7'
implementation 'io.grpc:grpc-okhttp:1.49.2'
Expand Down
2 changes: 1 addition & 1 deletion version.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
// and `sdk/build.gradle` so I extracted them into another file and made both aforementioned
// files import this one.
group = "com.hedera.hashgraph"
version = "2.27.0"
version = "2.28.0"