Skip to content

Commit cfe544e

Browse files
committed
Changed version to 2.2.0
1 parent b10f420 commit cfe544e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
}
2424

2525
group 'io.jactl'
26-
version '2.2.0-SNAPSHOT'
26+
version '2.2.0'
2727

2828
repositories {
2929
mavenCentral()

docs/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ features.
175175
## Download
176176

177177
To run command line scripts you only need the Jactl jar which can be downloaded from Maven Central:
178-
[https://repo1.maven.org/maven2/io/jactl/jactl/2.1.0/jactl-2.1.0.jar](https://repo1.maven.org/maven2/io/jactl/jactl/2.1.0/jactl-2.1.0.jar)
178+
[https://repo1.maven.org/maven2/io/jactl/jactl/2.2.0/jactl-2.2.0.jar](https://repo1.maven.org/maven2/io/jactl/jactl/2.2.0/jactl-2.2.0.jar)
179179

180180
To download the Jactl REPL, which gives you an interactive shell for trying out Jactl code, see the
181181
[jactl-repl](https://github.com/jaccomoc/jactl-repl) project.
@@ -213,7 +213,7 @@ To use Jactl you will need to add a dependency on the Jactl library.
213213

214214
In the `dependencies` section of your `build.gradle` file:
215215
```groovy
216-
implementation group: 'io.jactl', name: 'jactl', version: '2.1.0'
216+
implementation group: 'io.jactl', name: 'jactl', version: '2.2.0'
217217
```
218218

219219
### Maven
@@ -223,7 +223,7 @@ In the `dependencies` section of your `pom.xml`:
223223
<dependency>
224224
<groupId>io.jactl</groupId>
225225
<artifactId>jactl</artifactId>
226-
<version>2.1.0</version>
226+
<version>2.2.0</version>
227227
</dependency>
228228
```
229229

docs/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ plugins:
3636
- jekyll-feed
3737

3838
content:
39-
jactl_version: 2.1.0
39+
jactl_version: 2.2.0
4040

4141
# Exclude from processing.
4242
# The following items will not be processed, by default.

docs/pages/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ To force the JVM to use hotspot compilation even on large methods add the `-XX:-
246246
command line flag to the `java` command.
247247
For example:
248248
```bash
249-
java -XX:-DontCompileHugeMethods -jar jactl-2.1.0-jar
249+
java -XX:-DontCompileHugeMethods -jar jactl-2.2.0-jar
250250
```
251251

252252
### Does Jactl provide any thread synchronisation mechanisms?

0 commit comments

Comments
 (0)