Skip to content

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mlookaxw committed Jan 11, 2021
1 parent 43c84ff commit aa1b417
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/.project
/.classpath
/.factorypath
/.vscode
9 changes: 9 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
= Changelog

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

== Version 0.1.0
[cols="1,2,<10a", options="header"]
|===
Expand Down
8 changes: 4 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= Simple WebSocket Client
:revnumber: 0.1.0
:revnumber: 0.1.1
:toc:
:sectnums:
:source-highlighter: prettify
Expand All @@ -18,7 +18,7 @@ ifdef::env-github[]
:warning-caption: :warning:
endif::[]

:prj-version: {revnumber}
:proj-version: {revnumber}

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

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

== Installation

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):
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):

.Show help screen
[source,shell,subs="verbatim,attributes"]
Expand Down
9 changes: 8 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.github.axway-api-management-plus</groupId>
<artifactId>ws-simple-client</artifactId>
<version>0.1.0</version>
<version>0.1.1</version>
<packaging>jar</packaging>

<name>Simple WebSocket Client</name>
Expand Down Expand Up @@ -72,4 +72,11 @@
</plugin>
</plugins>
</build>
<distributionManagement>
<repository>
<id>github</id>
<name>Tiny Tools for Axway API Gateway/Manager</name>
<url>https://maven.pkg.github.com/Axway-API-Management-Plus/ws-client-simple</url>
</repository>
</distributionManagement>
</project>

0 comments on commit aa1b417

Please sign in to comment.