Skip to content

Commit 7f8e08f

Browse files
committed
Bump version
Signed-off-by: Rafael Luis Ibasco <[email protected]>
1 parent 3f48d4a commit 7f8e08f

File tree

1 file changed

+10
-16
lines changed

1 file changed

+10
-16
lines changed

README.md

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,12 @@ Features
2424
- Built-in thread and connection pooling support. Takes advantage of netty's [event loop](https://netty.io/4.1/api/io/netty/channel/EventLoop.html) model.
2525
- Makes use of native transports (if available) for increased performance (e.g. [epoll](https://man7.org/linux/man-pages/man7/epoll.7.html), [kqueue](https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man2/kqueue.2.html)). Java's NIO is used by default.
2626
- Highly Configurable. Clients can be configured to satisfy your requirements (e.g. providing a custom executor, adjusting rate limit parameters, selecting connection pool strategy etc.)
27-
- Throws meaningful exceptions. For example, in RCON, A `MaxAttemptsReachedException` will be thrown instead of a `ReadTimeoutException` or a `ChannelClosedException` to indicate that the number of login attempts has been reached.
27+
- Throws meaningful exceptions. For example, in RCON, A `MaxAttemptsReachedException` will be thrown instead of a `ReadTimeoutException` or a `ChannelClosedException` to indicate that the maximum number of login attempts has been reached.
2828
- Transactions are [Failsafe](https://failsafe.dev/) (except web api). Resilience [policies](https://failsafe.dev/policies/) have been implemented to guarantee the delivery and receipt of queries. Below are the policies available by default.
2929
- **[Retry Policy](https://failsafe.dev/retry/):** A failed query is re-attempted until a response has either been received or the maximum number attempts has been reached.
3030
- **[Rate Limiter Policy](https://failsafe.dev/rate-limiter/):** This prevents overloading the servers by sending requests too fast causing the requests to timeout due to rate limits being exceeded.
3131
- **[Circuit Breaker Policy](https://failsafe.dev/circuit-breaker/):** When certain number of failures reach the threshold, the library will transition to an "OPEN" state, temporarily rejecting new requests.
3232

33-
To Do
34-
-------------
35-
36-
- Modularize project (java 9+ compatability)
37-
- Demo application (a usable desktop application showcasing most of the library's feature)
38-
3933
Usage
4034
-------------
4135

@@ -246,7 +240,7 @@ Just add the following dependencies to your maven pom.xml. Only include the modu
246240
<dependency>
247241
<groupId>com.ibasco.agql</groupId>
248242
<artifactId>agql</artifactId>
249-
<version>1.0.1</version>
243+
<version>1.0.2</version>
250244
</dependency>
251245
```
252246

@@ -256,7 +250,7 @@ Just add the following dependencies to your maven pom.xml. Only include the modu
256250
<dependency>
257251
<groupId>com.ibasco.agql</groupId>
258252
<artifactId>agql-steam-master</artifactId>
259-
<version>1.0.1</version>
253+
<version>1.0.2</version>
260254
</dependency>
261255
```
262256

@@ -266,7 +260,7 @@ Just add the following dependencies to your maven pom.xml. Only include the modu
266260
<dependency>
267261
<groupId>com.ibasco.agql</groupId>
268262
<artifactId>agql-source-query</artifactId>
269-
<version>1.0.1</version>
263+
<version>1.0.2</version>
270264
</dependency>
271265
```
272266

@@ -277,7 +271,7 @@ Just add the following dependencies to your maven pom.xml. Only include the modu
277271
<dependency>
278272
<groupId>com.ibasco.agql</groupId>
279273
<artifactId>agql-source-log</artifactId>
280-
<version>1.0.1</version>
274+
<version>1.0.2</version>
281275
</dependency>
282276
```
283277

@@ -287,7 +281,7 @@ Just add the following dependencies to your maven pom.xml. Only include the modu
287281
<dependency>
288282
<groupId>com.ibasco.agql</groupId>
289283
<artifactId>agql-source-rcon</artifactId>
290-
<version>1.0.1</version>
284+
<version>1.0.2</version>
291285
</dependency>
292286
```
293287

@@ -297,7 +291,7 @@ Just add the following dependencies to your maven pom.xml. Only include the modu
297291
<dependency>
298292
<groupId>com.ibasco.agql</groupId>
299293
<artifactId>agql-steam-webapi</artifactId>
300-
<version>1.0.1</version>
294+
<version>1.0.2</version>
301295
</dependency>
302296
```
303297

@@ -307,7 +301,7 @@ Just add the following dependencies to your maven pom.xml. Only include the modu
307301
<dependency>
308302
<groupId>com.ibasco.agql</groupId>
309303
<artifactId>agql-dota2-webapi</artifactId>
310-
<version>1.0.1</version>
304+
<version>1.0.2</version>
311305
</dependency>
312306
```
313307

@@ -317,7 +311,7 @@ Just add the following dependencies to your maven pom.xml. Only include the modu
317311
<dependency>
318312
<groupId>com.ibasco.agql</groupId>
319313
<artifactId>agql-csgo-webapi</artifactId>
320-
<version>1.0.1</version>
314+
<version>1.0.2</version>
321315
</dependency>
322316
```
323317

@@ -329,7 +323,7 @@ Just add the following dependencies to your maven pom.xml. Only include the modu
329323
<dependency>
330324
<groupId>com.ibasco.agql</groupId>
331325
<artifactId>agql-coc-webapi</artifactId>
332-
<version>1.0.1</version>
326+
<version>1.0.2</version>
333327
</dependency>
334328
```
335329

0 commit comments

Comments
 (0)