Skip to content

Commit

Permalink
release 1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
penemue committed May 16, 2018
1 parent 923b9d6 commit 489ed50
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ To start using Xodus, define dependencies:
<dependency>
<groupId>org.jetbrains.xodus</groupId>
<artifactId>xodus-openAPI</artifactId>
<version>1.2.2</version>
<version>1.2.3</version>
</dependency>
```
```groovy
// in Gradle project
dependencies {
compile 'org.jetbrains.xodus:xodus-openAPI:1.2.2'
compile 'org.jetbrains.xodus:xodus-openAPI:1.2.3'
}
```
Read more about [managing dependencies](https://github.com/JetBrains/xodus/wiki/Managing-Dependencies).
Expand All @@ -44,7 +44,7 @@ There are three different ways to deal with data, which results in three differe

### Environments

Add dependency on `org.jetbrains.xodus:xodus-environment:1.2.2`.
Add dependency on `org.jetbrains.xodus:xodus-environment:1.2.3`.

```java
final Environment env = Environments.newInstance("/home/me/.myAppData");
Expand All @@ -59,7 +59,7 @@ env.close();
```
### Entity Stores

Add dependency on `org.jetbrains.xodus:xodus-entity-store:1.2.2`.
Add dependency on `org.jetbrains.xodus:xodus-entity-store:1.2.3`.

```java
final PersistentEntityStore entityStore = PersistentEntityStores.newInstance("/home/me/.myAppData");
Expand All @@ -74,7 +74,7 @@ entityStore.close();
```
### Virtual File Systems

Add dependency on `org.jetbrains.xodus:xodus-vfs:1.2.2`.
Add dependency on `org.jetbrains.xodus:xodus-vfs:1.2.3`.

```java
final Environment env = Environments.newInstance("/home/me/.myAppData");
Expand Down

0 comments on commit 489ed50

Please sign in to comment.