From 9108716e8bf6a841d4acda0614f4f88617970c6c Mon Sep 17 00:00:00 2001 From: Marco Vogt Date: Wed, 6 Dec 2023 10:24:17 +0100 Subject: [PATCH] Release version 2.4.2 --- README.md | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b75d195..f5b03ce 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Reference implementation of an agent library written in Java. This library handl ## Getting Started * Chronos Agent is published to Maven Central. Make sure that you have `mavenCentral()` to the `repositories` in your gradle build file. -* Add `implementation group: 'org.chronos-eaas', name: 'chronos-agent', version: '2.4.1'` to your `dependencies`. +* Add `implementation group: 'org.chronos-eaas', name: 'chronos-agent', version: '2.4.2'` to your `dependencies`. * Extend the `AbstractChronosAgent` class, call `YourClass.start()` in your `main` method, and you are good to go! > Assuming that you already have a running [Chronos Control](https://github.com/Chronos-EaaS/Chronos-Control/) instance diff --git a/build.gradle b/build.gradle index 7d2ee85..f13c28a 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,7 @@ repositories { group 'org.chronos-eaas' archivesBaseName = "chronos-agent" -version '2.4.2-SNAPSHOT' +version '2.4.2' description = "Chronos Agent"