Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ 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.1.0] - 2023-07-05
## [2.1.0] - 2023-07-07
### Changed
- Implement DCS parameter (#23)
- Remove unneeded log line that may leak confidential/private information (#22)

## [2.0.1] - 2022-11-07
### Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ You can find our SDK [here](https://mvnrepository.com/artifact/com.cm/text-sdk),
<dependency>
<groupId>com.cm</groupId>
<artifactId>text-sdk</artifactId>
<version>2.0.1</version>
<version>2.1.0</version>
</dependency>
```

Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/cm/text/utils/HttpHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ private static String sendRequest( String method, String url, String data ) {
}
}

System.out.println(response.toString());

return response.toString();
}
catch ( Exception e ) {
Expand Down