Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ This repo contains the main data model for the Starwit Awareness Engine (SAE). S

### Python / Poetry
- Add the following to your `pyproject.toml` dependencies section\
`visionapi = { git = "https://github.com/starwit/vision-api.git", subdirectory = "python/visionapi", tag = "3.5.3" }`
`visionapi = { git = "https://github.com/starwit/vision-api.git", subdirectory = "python/visionapi", tag = "3.6.0" }`

### Java / Maven
- Add dependency to your project:
```xml
<dependency>
<groupId>de.starwit</groupId>
<artifactId>vision-api</artifactId>
<version>3.5.3</version>
<version>3.6.0</version>
</dependency>
```
- Add maven repository to your `~/.m2/settings.xml` (adapt example / your config as necessary):
Expand Down Expand Up @@ -82,6 +82,9 @@ This repo contains the main data model for the Starwit Awareness Engine (SAE). S
```

## Changelog
### 3.6.0
- Add `raw_geo_coordinate` and `movement_vector` to `PositionMessage`

### 3.5.3
- Add `protobuf-java-util` to java library
- No protocol changes
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5.3
3.6.0
2 changes: 1 addition & 1 deletion java/visionapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<artifactId>vision-api</artifactId>

<packaging>jar</packaging>
<version>3.5.3</version>
<version>3.6.0</version>
<name>visionapi</name>
<url>https://github.com/starwit/vision-api</url>

Expand Down
Loading
Loading