@@ -6,15 +6,15 @@ This repo contains the main data model for the Starwit Awareness Engine (SAE). S
66
77### Python / Poetry
88- Add the following to your ` pyproject.toml ` dependencies section\
9- ` visionapi = { git = "https://github.com/starwit/vision-api.git", subdirectory = "python/visionapi", tag = "3.2.0 " } `
9+ ` visionapi = { git = "https://github.com/starwit/vision-api.git", subdirectory = "python/visionapi", tag = "3.2.1 " } `
1010
1111### Java / Maven
1212- Add dependency to your project:
1313 ``` xml
1414 <dependency >
1515 <groupId >de.starwit</groupId >
1616 <artifactId >vision-api</artifactId >
17- <version >3.2.0 </version >
17+ <version >3.2.1 </version >
1818 </dependency >
1919 ```
2020- Add maven repository to your `~/.m2/settings.xml` (adapt example / your config as necessary):
@@ -58,6 +58,15 @@ This repo contains the main data model for the Starwit Awareness Engine (SAE). S
5858
5959 ```
6060
61+ ## Tools & Setup
62+
63+ * Install protoc via pipx:
64+ ```
65+ sudo apt install pipx
66+ pipx install protoc-wrapper==31.1.0
67+ ```
68+ * ! if youchange protoc version, you need to change protobuf version in `java\visionapi\pom.xml` and `python\visionapi\pyproject.toml`
69+
6170## How-To Update
62711. Make desired changes in `./visionapi`
63722. Increase version in `./VERSION`
@@ -72,11 +81,10 @@ This repo contains the main data model for the Starwit Awareness Engine (SAE). S
7281 git push <version_tag >
7382 ```
7483
75- ## Tools & Setup
76- ProtoBuf compiler can be downloaded here:
77- https://github.com/protocolbuffers/protobuf/releases
78-
7984## Changelog
85+ ### 3.2.1
86+ - Add `DetectionCountMessage` to summarize detection data
87+
8088### 3.2.0
8189- Add `source_id` to messages (to distinguish which source the messages are generated from)
8290 - Add `IncidentMessage.source_id`
0 commit comments