Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
tuhuynh27 committed Dec 19, 2021
1 parent bfb646c commit 54da1ad
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 30 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ subprojects {
apply plugin: 'jacoco'

group 'dev.keva'
version '0.1.2'
version '0.1.3'

repositories {
mavenCentral()
Expand Down
30 changes: 2 additions & 28 deletions docs/src/guide/overview/embedded.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,49 +4,23 @@ You can use KevaDB as an embedded database in your Java/Kotlin/Scala project, th

## Install

Currently, only Sonatype's snapshot repository is supported.

`build.gradle`

```groovy
repositories {
// Load snapshot repository
maven {
url "https://s01.oss.sonatype.org/content/repositories/snapshots/"
}
}
dependencies {
implementation 'dev.keva:kevadb:0.1.0-SNAPSHOT'
implementation 'dev.keva:kevadb:0.1.3'
}
```

(please use `./gradlew build --refresh-dependencies` to force reload the snapshot dependencies)

or:

`pom.xml`

```xml
<repositories>
<repository>
<id>s01.oss.sonatype.org-snapshot</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
```

```xml
<dependency>
<groupId>dev.keva</groupId>
<artifactId>kevadb</artifactId>
<version>0.1.0-SNAPSHOT</version>
<version>0.1.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/src/guide/overview/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## Download

```
curl -L -o /usr/local/bin/keva-server https://github.com/keva-dev/keva/releases/download/v0.1.1-alpha/keva-server
curl -L -o /usr/local/bin/keva-server https://github.com/keva-dev/keva/releases/download/v0.1.3-alpha/keva-server
chmod +x /usr/local/bin/keva-server
```

Expand Down

0 comments on commit 54da1ad

Please sign in to comment.