Skip to content

Commit

Permalink
update version to 1.0.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
tuhuynh27 committed Jun 2, 2022
1 parent b57ed4d commit 00dfb2c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion arm.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ EXPOSE 6379

ENTRYPOINT ["java","-jar","-Xms24m","keva.jar"]

# docker build -f arm.Dockerfile -t keva-server:1.0.0-rc1-arm .
# docker build -f arm.Dockerfile -t keva-server:1.0.0-rc2-arm .
# docker run -d --name keva-server -p 6767:6379 keva-server:latest
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 '1.0.0-rc1'
version '1.0.0-rc2'

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

```groovy
dependencies {
implementation 'dev.keva:kevadb:1.0.0-rc1'
implementation 'dev.keva:kevadb:1.0.0-rc2'
}
```

Expand All @@ -20,7 +20,7 @@ or:
<dependency>
<groupId>dev.keva</groupId>
<artifactId>kevadb</artifactId>
<version>1.0.0-rc1</version>
<version>1.0.0-rc2</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/v1.0.0-rc1/keva-server
curl -L -o /usr/local/bin/keva-server https://github.com/keva-dev/keva/releases/download/v1.0.0-rc2/keva-server
chmod +x /usr/local/bin/keva-server
```

Expand Down

0 comments on commit 00dfb2c

Please sign in to comment.