Skip to content

Commit

Permalink
build: bump version to 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vagetablechicken committed Nov 10, 2023
1 parent f32d356 commit 4c2be36
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,25 @@ cd build
make toydb_run_engine -j<thread> # minimum build
```

## Version

We use openmldb-jdbc for validations, the version is:
|Emulator Version | OpenMLDB Version|
|--|--|
| 1.0 | 0.8.3 |

Toydb is optional, and you don't have to update the emulator. You can update it simply, just copy the newer toydb to `/tmp`.

## Run

```bash
java -jar emulator-1.0-SNAPSHOT.jar
java -jar emulator-1.0.jar
```

If emulator jar doesn't have toydb_run_engine, you can copy toydb_run_engine to `/tmp` and run emulator.
```bash
cp toydb_run_engine /tmp
java -jar emulator-1.0-SNAPSHOT.jar
java -jar emulator-1.0.jar
```

## Example - validate SQL
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.openmldb.emulator</groupId>
<artifactId>emulator</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0</version>

<name>emulator</name>
<!-- FIXME change it to the project's website -->
Expand All @@ -33,7 +33,7 @@
<dependency>
<groupId>com.4paradigm.openmldb</groupId>
<artifactId>openmldb-jdbc</artifactId>
<version>0.8.2</version>
<version>0.8.3</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
Expand Down

0 comments on commit 4c2be36

Please sign in to comment.