Skip to content

Commit ddcd9de

Browse files
author
Georgi Neykov
committed
Update CHANGELOG.md and README.md
1 parent befab27 commit ddcd9de

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
==========
33

4+
Version 2.5.2 (22.02.2021)
5+
--------------------------
6+
7+
## Composer
8+
9+
- Fix a NPE when `close()` is called on non-successful DataApiResponse instances.
10+
11+
412
Version 2.5.1 (17.02.2021)
513
--------------------------
614

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@ api.copy(...)
5959
<dependency>
6060
<groupId>com.pcloud.pcloud-networking-java</groupId>
6161
<artifactId>composer</artifactId>
62-
<version>2.5.1</version>
62+
<version>2.5.2</version>
6363
<type>pom</type>
6464
</dependency>
6565
```
6666

6767
```groovy
68-
compile 'com.pcloud.pcloud-networking-java:composer:2.5.1'
68+
compile 'com.pcloud.pcloud-networking-java:composer:2.5.2'
6969
```
7070

7171
### Client
@@ -87,13 +87,13 @@ The `binapi-client` module contains a network client for composing and executing
8787
<dependency>
8888
<groupId>com.pcloud.pcloud-networking-java</groupId>
8989
<artifactId>binapi-client</artifactId>
90-
<version>2.5.1</version>
90+
<version>2.5.2</version>
9191
<type>pom</type>
9292
</dependency>
9393
```
9494

9595
```groovy
96-
compile 'com.pcloud.pcloud-networking-java:binapi-client:2.5.1'
96+
compile 'com.pcloud.pcloud-networking-java:binapi-client:2.5.2'
9797
```
9898

9999
--------------------------------------------------------------------------------
@@ -115,13 +115,13 @@ The `serialization` module contains a library for serializing Java objects to bi
115115
<dependency>
116116
<groupId>com.pcloud.pcloud-networking-java</groupId>
117117
<artifactId>serialization</artifactId>
118-
<version>2.5.1</version>
118+
<version>2.5.2</version>
119119
<type>pom</type>
120120
</dependency>
121121
```
122122

123123
```groovy
124-
compile 'com.pcloud.pcloud-networking-java:serialization:2.5.1'
124+
compile 'com.pcloud.pcloud-networking-java:serialization:2.5.2'
125125
```
126126
--------------------------------------------------------------------------------
127127
### Protocol
@@ -142,13 +142,13 @@ The `protocol` module contains the core logic for writing/reading data in the fo
142142
<dependency>
143143
<groupId>com.pcloud.pcloud-networking-java</groupId>
144144
<artifactId>protocol</artifactId>
145-
<version>2.5.1</version>
145+
<version>2.5.2</version>
146146
<type>pom</type>
147147
</dependency>
148148
```
149149

150150
```groovy
151-
compile 'com.pcloud.pcloud-networking-java:protocol:2.5.1'
151+
compile 'com.pcloud.pcloud-networking-java:protocol:2.5.2'
152152
```
153153

154154
## License

publishing.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
ext {
1818
isCi = System.getenv().containsKey('CI')
1919

20-
versionName = "2.5.1"
21-
versionCode = 24
20+
versionName = "2.5.2"
21+
versionCode = 25
2222
libraryName = "pcloud-networking-java"
2323
groupId = "com.pcloud.pcloud-networking-java"
2424
description = "A Network Stack for pCloud's API written in Java"

0 commit comments

Comments
 (0)