Skip to content

Commit bb0db3c

Browse files
author
Georgi Neykov
committed
docs(general): Update CHANGELOG.md and version
1 parent 4453c54 commit bb0db3c

File tree

3 files changed

+24
-17
lines changed

3 files changed

+24
-17
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
==========
33

4+
Version 2.6.0 (01.06.2021)
5+
--------------------------
6+
7+
## Protocol
8+
- Make `ProtocolRequestWriter` implement `Flushable` to allow on-demand sending of already written responses.
9+
10+
411
Version 2.5.3 (13.05.2021)
512
--------------------------
613

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
A stack of networking libraries for [ pCloud's API][docs] binary protocol by pCloud AG.
44

5-
[![Maven Central](https://img.shields.io/badge/Maven_Central-2.5.3-17bed0?style=for-the-badge)](https://search.maven.org/search?q=g:com.pcloud.pcloud-networking-java)
6-
[![Changelog](https://img.shields.io/badge/Changelog-2.5.3-17bed0?style=for-the-badge)](CHANGELOG.md)
7-
[![JavaDoc](https://img.shields.io/badge/JavaDoc-2.5.3-17bed0?style=for-the-badge)][docs]
5+
[![Maven Central](https://img.shields.io/badge/Maven_Central-2.6.0-17bed0?style=for-the-badge)](https://search.maven.org/search?q=g:com.pcloud.pcloud-networking-java)
6+
[![Changelog](https://img.shields.io/badge/Changelog-2.6.0-17bed0?style=for-the-badge)](CHANGELOG.md)
7+
[![JavaDoc](https://img.shields.io/badge/JavaDoc-2.6.0-17bed0?style=for-the-badge)][docs]
88

99
## Requirements
1010

@@ -57,19 +57,19 @@ api.copy(...)
5757

5858
#### Download
5959

60-
[ ![Download](https://img.shields.io/badge/Maven_Central-2.5.3-17bed0?style=for-the-badge) ](https://search.maven.org/artifact/com.pcloud.pcloud-networking-java/composer/2.5.3/jar)
60+
[ ![Download](https://img.shields.io/badge/Maven_Central-2.6.0-17bed0?style=for-the-badge) ](https://search.maven.org/artifact/com.pcloud.pcloud-networking-java/composer/2.6.0/jar)
6161

6262
```xml
6363
<dependency>
6464
<groupId>com.pcloud.pcloud-networking-java</groupId>
6565
<artifactId>composer</artifactId>
66-
<version>2.5.3</version>
66+
<version>2.6.0</version>
6767
<type>pom</type>
6868
</dependency>
6969
```
7070

7171
```groovy
72-
compile 'com.pcloud.pcloud-networking-java:composer:2.5.3'
72+
compile 'com.pcloud.pcloud-networking-java:composer:2.6.0'
7373
```
7474

7575
### Client
@@ -85,19 +85,19 @@ The `binapi-client` module contains a network client for composing and executing
8585

8686
#### Download
8787

88-
[ ![Download](https://img.shields.io/badge/Maven_Central-2.5.3-17bed0?style=for-the-badge) ](https://search.maven.org/artifact/com.pcloud.pcloud-networking-java/composer/2.5.3/jar)
88+
[ ![Download](https://img.shields.io/badge/Maven_Central-2.6.0-17bed0?style=for-the-badge) ](https://search.maven.org/artifact/com.pcloud.pcloud-networking-java/composer/2.6.0/jar)
8989

9090
```xml
9191
<dependency>
9292
<groupId>com.pcloud.pcloud-networking-java</groupId>
9393
<artifactId>binapi-client</artifactId>
94-
<version>2.5.3</version>
94+
<version>2.6.0</version>
9595
<type>pom</type>
9696
</dependency>
9797
```
9898

9999
```groovy
100-
compile 'com.pcloud.pcloud-networking-java:binapi-client:2.5.3'
100+
compile 'com.pcloud.pcloud-networking-java:binapi-client:2.6.0'
101101
```
102102

103103
--------------------------------------------------------------------------------
@@ -113,20 +113,20 @@ The `serialization` module contains a library for serializing Java objects to bi
113113

114114
#### Download
115115

116-
[ ![Download](https://img.shields.io/badge/Maven_Central-2.5.3-17bed0?style=for-the-badge) ](https://search.maven.org/artifact/com.pcloud.pcloud-networking-java/serialization/2.5.3/jar)
116+
[ ![Download](https://img.shields.io/badge/Maven_Central-2.6.0-17bed0?style=for-the-badge) ](https://search.maven.org/artifact/com.pcloud.pcloud-networking-java/serialization/2.6.0/jar)
117117

118118

119119
```xml
120120
<dependency>
121121
<groupId>com.pcloud.pcloud-networking-java</groupId>
122122
<artifactId>serialization</artifactId>
123-
<version>2.5.3</version>
123+
<version>2.6.0</version>
124124
<type>pom</type>
125125
</dependency>
126126
```
127127

128128
```groovy
129-
compile 'com.pcloud.pcloud-networking-java:serialization:2.5.3'
129+
compile 'com.pcloud.pcloud-networking-java:serialization:2.6.0'
130130
```
131131
--------------------------------------------------------------------------------
132132
### Protocol
@@ -141,19 +141,19 @@ The `protocol` module contains the core logic for writing/reading data in the fo
141141

142142
#### Download
143143

144-
[ ![Download](https://img.shields.io/badge/Maven_Central-2.5.3-17bed0?style=for-the-badge)](https://search.maven.org/artifact/com.pcloud.pcloud-networking-java/composer/2.5.3/jar)
144+
[ ![Download](https://img.shields.io/badge/Maven_Central-2.6.0-17bed0?style=for-the-badge)](https://search.maven.org/artifact/com.pcloud.pcloud-networking-java/composer/2.6.0/jar)
145145

146146
```xml
147147
<dependency>
148148
<groupId>com.pcloud.pcloud-networking-java</groupId>
149149
<artifactId>protocol</artifactId>
150-
<version>2.5.3</version>
150+
<version>2.6.0</version>
151151
<type>pom</type>
152152
</dependency>
153153
```
154154

155155
```groovy
156-
compile 'com.pcloud.pcloud-networking-java:protocol:2.5.3'
156+
compile 'com.pcloud.pcloud-networking-java:protocol:2.6.0'
157157
```
158158

159159
## License

publishing.gradle

Lines changed: 2 additions & 2 deletions
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.3"
21-
versionCode = 26
20+
versionName = "2.6.0"
21+
versionCode = 27
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)