Skip to content

Commit

Permalink
#164 : Bump versions for release
Browse files Browse the repository at this point in the history
  • Loading branch information
gazbert committed May 11, 2024
1 parent f91daff commit c7b66a2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ If you want to just play around with the
and evaluate the bot, Docker is the way to go.

1. Install [Docker](https://docs.docker.com/engine/installation/) on the machine you want to run the bot.
1. Fetch the BX-bot image from [Docker Hub](https://hub.docker.com/r/gazbert/bxbot/): `docker pull gazbert/bxbot:2.1.0`
1. Run the Docker container: `docker container run --publish=8080:8080 --name bxbot-2.1.0 -it gazbert/bxbot:2.1.0 bash`
1. Fetch the BX-bot image from [Docker Hub](https://hub.docker.com/r/gazbert/bxbot/): `docker pull gazbert/bxbot:2.2.0`
1. Run the Docker container: `docker container run --publish=8080:8080 --name bxbot-2.2.0 -it gazbert/bxbot:2.2.0 bash`
1. Change into the bot's directory: `cd bxbot*`
1. Configure the bot as described in step 4 of the previous [Maven](#maven) section.
1. Usage: `./bxbot.sh [start|stop|status]`
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ allprojects {
apply plugin: 'org.sonarqube'

group = 'com.gazbert.bxbot'
version = '2.2.0-SNAPSHOT'
version = '2.2.0'

dependencyManagement {
applyMavenExclusions = false
Expand Down
2 changes: 1 addition & 1 deletion bxbot.bat
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ REM log4j2 config file location
SET log4j2_config=.\config\log4j2.xml

REM The BX-bot 'fat' jar (Spring Boot app containing all the dependencies)
SET bxbot_jar=bxbot-app-2.1.0.jar
SET bxbot_jar=bxbot-app-2.2.0.jar

REM PID file for checking if bot is running
SET pid_file=.\.bxbot.pid
Expand Down
2 changes: 1 addition & 1 deletion bxbot.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ lib_dir=./libs
log4j2_config=./config/log4j2.xml

# The BX-bot 'fat' jar (Spring Boot app containing all the dependencies)
bxbot_jar=bxbot-app-2.1.0.jar
bxbot_jar=bxbot-app-2.2.0.jar

# PID file for checking if bot is running
pid_file=./.bxbot.pid
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
</developer>
</developers>
<properties>
<revision>2.2.0-SNAPSHOT</revision>
<revision>2.2.0</revision>

<!-- Should be same as dependency used by spring-boot-starter.version -->
<spring-core.version>6.0.19</spring-core.version>
Expand Down Expand Up @@ -552,7 +552,7 @@
<configuration>
<rules>
<requireMavenVersion>
<version>3.8.1</version>
<version>3.6.0</version>
<level>ERROR</level>
</requireMavenVersion>
<requireJavaVersion>
Expand Down

0 comments on commit c7b66a2

Please sign in to comment.