Skip to content

Commit 90b8568

Browse files
committed
Release clarity version 2.1
1 parent 2f19324 commit 90b8568

File tree

2 files changed

+7
-15
lines changed

2 files changed

+7
-15
lines changed

README.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22

33
Clarity is a parser for Dota 2 replay files written in Java.
44

5-
Version 2 offers a new event based interface to replay data, which will make usage much easier and more versatile for you.
6-
7-
##### News
8-
9-
Dota 2 Reborn is now the main client - and Clarity 2.1-SNAPSHOT is able to process all contents from new replays.
10-
Even console recorded replays now work.
11-
I will wait a bit until the dust settles, and then release this.
12-
135
# Replay Data
146

157
clarity produces the following data you might be interested in from a replay. Choose from:
@@ -33,16 +25,16 @@ clarity produces the following data you might be interested in from a replay. Ch
3325

3426
# Usage
3527

36-
Fetch the current stable version (2.0) from Maven Central with
28+
Fetch the current stable version (2.1) from Maven Central with
3729
```XML
3830
<dependency>
3931
<groupId>com.skadistats</groupId>
4032
<artifactId>clarity</artifactId>
41-
<version>2.0</version>
33+
<version>2.1</version>
4234
</dependency>
4335
```
4436

45-
Clarity 2.1 is work in progress and only available as a snapshot, so you got to add a pointer to the
37+
Clarity 2.2 is work in progress and only available as a snapshot, so you got to add a pointer to the
4638
repository to your pom.xml (see the [pom.xml of clarity-examples](https://github.com/skadistats/clarity-examples/blob/master/pom.xml), which already does that)
4739

4840
To add the snapshot repository, add the following:
@@ -67,7 +59,7 @@ and then fetch the dependency with:
6759
<dependency>
6860
<groupId>com.skadistats</groupId>
6961
<artifactId>clarity</artifactId>
70-
<version>2.1-SNAPSHOT</version>
62+
<version>2.2-SNAPSHOT</version>
7163
</dependency>
7264
```
7365

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.skadistats</groupId>
55
<artifactId>clarity</artifactId>
6-
<version>2.1-SNAPSHOT</version>
6+
<version>2.1</version>
77
<packaging>jar</packaging>
88
<name>clarity</name>
99
<description>Clarity is a fast, almost complete replay parser for Dota 2.</description>
@@ -48,7 +48,7 @@
4848
<dependency>
4949
<groupId>com.skadistats</groupId>
5050
<artifactId>clarity-protobuf</artifactId>
51-
<version>3-SNAPSHOT</version>
51+
<version>[4.0,5.0)</version>
5252
</dependency>
5353
<dependency>
5454
<groupId>org.xerial.snappy</groupId>
@@ -128,7 +128,7 @@
128128
<configuration>
129129
<serverId>ossrh</serverId>
130130
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
131-
<autoReleaseAfterClose>false</autoReleaseAfterClose>
131+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
132132
</configuration>
133133
</plugin>
134134
</plugins>

0 commit comments

Comments
 (0)