Skip to content

Commit aa1b417

Browse files
committed
Release v0.1.1
1 parent 43c84ff commit aa1b417

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
/.project
44
/.classpath
55
/.factorypath
6+
/.vscode

CHANGELOG.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
= Changelog
22

3+
== Version 0.1.1
4+
[cols="1,2,<10a", options="header"]
5+
|===
6+
|ID|Type|Description
7+
|https://github.com/Axway-API-Management-Plus/ws-client-simple/issues/1[#1]
8+
|Enhancement
9+
|In case of number of sent messages differ from to number of received message log an error instead of a warning.
10+
|===
11+
312
== Version 0.1.0
413
[cols="1,2,<10a", options="header"]
514
|===

README.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= Simple WebSocket Client
2-
:revnumber: 0.1.0
2+
:revnumber: 0.1.1
33
:toc:
44
:sectnums:
55
:source-highlighter: prettify
@@ -18,7 +18,7 @@ ifdef::env-github[]
1818
:warning-caption: :warning:
1919
endif::[]
2020

21-
:prj-version: {revnumber}
21+
:proj-version: {revnumber}
2222

2323
image:https://img.shields.io/github/license/Axway-API-Management-Plus/ws-client-simple?style=plastic[]
2424
image:https://img.shields.io/github/v/release/Axway-API-Management-Plus/ws-client-simple?style=plastic[]
@@ -37,7 +37,7 @@ The default behavior is to send a single text message to the `ws://echo.websocke
3737

3838
[source,shell,subs="verbatim,attributes"]
3939
----
40-
$ java -jar ws-simple-client-{prj-version}-jar-with-dependencies.jar
40+
$ java -jar ws-simple-client-{proj-version}-jar-with-dependencies.jar
4141
INFO 10:29:06.452 - Connect to URI: ws://echo.websocket.org <1>
4242
INFO 10:29:07.512 - [1]: connected <2>
4343
INFO 10:29:07.513 - [1]: send - hello (#0) <3>
@@ -83,7 +83,7 @@ INFO 10:33:10.912 - all endpoints closed
8383

8484
== Installation
8585

86-
For installation just download the latest version of the JAR from the https://github.com/orgs/Axway-API-Management-Plus/packages?repo_name=ws-client-simple[GitHub repository] and execute it (see example below):
86+
For installation just download the `ws-simple-client-{proj-version}-jar-with-dependencies.jar` file from the https://github.com/orgs/Axway-API-Management-Plus/packages?repo_name=ws-client-simple[GitHub repository] and execute it (see example below):
8787

8888
.Show help screen
8989
[source,shell,subs="verbatim,attributes"]

pom.xml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.axway-api-management-plus</groupId>
66
<artifactId>ws-simple-client</artifactId>
7-
<version>0.1.0</version>
7+
<version>0.1.1</version>
88
<packaging>jar</packaging>
99

1010
<name>Simple WebSocket Client</name>
@@ -72,4 +72,11 @@
7272
</plugin>
7373
</plugins>
7474
</build>
75+
<distributionManagement>
76+
<repository>
77+
<id>github</id>
78+
<name>Tiny Tools for Axway API Gateway/Manager</name>
79+
<url>https://maven.pkg.github.com/Axway-API-Management-Plus/ws-client-simple</url>
80+
</repository>
81+
</distributionManagement>
7582
</project>

0 commit comments

Comments
 (0)