Skip to content

Commit

Permalink
release 1.3.91
Browse files Browse the repository at this point in the history
  • Loading branch information
penemue committed Jun 26, 2019
1 parent c4ec5bb commit 6a463c7
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ To start using Xodus, define dependencies:
<dependency>
<groupId>org.jetbrains.xodus</groupId>
<artifactId>xodus-openAPI</artifactId>
<version>1.3.0</version>
<version>1.3.91</version>
</dependency>
```
```groovy
// in Gradle project
dependencies {
compile 'org.jetbrains.xodus:xodus-openAPI:1.3.0'
compile 'org.jetbrains.xodus:xodus-openAPI:1.3.91'
}
```
Read more about [managing dependencies](https://github.com/JetBrains/xodus/wiki/Managing-Dependencies).
Expand All @@ -43,7 +43,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.3.0`.
Add dependency on `org.jetbrains.xodus:xodus-environment:1.3.91`.

```java
try (Environment env = Environments.newInstance("/home/me/.myAppData")) {
Expand All @@ -55,7 +55,7 @@ try (Environment env = Environments.newInstance("/home/me/.myAppData")) {
```
### Entity Stores

Add dependency on `org.jetbrains.xodus:xodus-entity-store:1.3.0`.
Add dependency on `org.jetbrains.xodus:xodus-entity-store:1.3.91`.

```java
try (PersistentEntityStore entityStore = PersistentEntityStores.newInstance("/home/me/.myAppData")) {
Expand All @@ -67,7 +67,7 @@ try (PersistentEntityStore entityStore = PersistentEntityStores.newInstance("/ho
```
### Virtual File Systems

Add dependency on `org.jetbrains.xodus:xodus-vfs:1.3.0`.
Add dependency on `org.jetbrains.xodus:xodus-vfs:1.3.91`.

```java
try (Environment env = Environments.newInstance("/home/me/.myAppData")) {
Expand Down Expand Up @@ -102,4 +102,3 @@ To assemble JARs and skip running tests, run:
- [EntityStore browser](https://github.com/JetBrains/xodus-entity-browser)
- [Check out the latest builds](https://teamcity.jetbrains.com/viewType.html?buildTypeId=Xodus_Build)
- [Observe development in Upsource](https://upsource.jetbrains.com/Xodus/view)
- <a href="mailto:[email protected]">Ask questions by e-mail</a>

0 comments on commit 6a463c7

Please sign in to comment.