Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mjacoby committed Mar 25, 2024
1 parent d094a85 commit 81ef521
Show file tree
Hide file tree
Showing 40 changed files with 1,111 additions and 810 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,23 @@ The features of FA³ST Service include
### Download pre-compiled JAR

<!--start:download-release-->
[Download latest RELEASE version (0.5.0)](https://repo1.maven.org/maven2/de/fraunhofer/iosb/ilt/faaast/service/starter/0.5.0/starter-0.5.0.jar)<!--end:download-release-->
[Download latest RELEASE version (1.0.0)](https://repo1.maven.org/maven2/de/fraunhofer/iosb/ilt/faaast/service/starter/1.0.0/starter-1.0.0.jar)<!--end:download-release-->

<!--start:download-snapshot-->
[Download latest SNAPSHOT version (1.0.0-SNAPSHOT)](https://oss.sonatype.org/service/local/artifact/maven/redirect?r=snapshots&g=de.fraunhofer.iosb.ilt.faaast.service&a=starter&v=1.0.0-SNAPSHOT)<!--end:download-snapshot-->
<!--end:download-snapshot-->

### As Maven Dependency
```xml
<dependency>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
<artifactId>starter</artifactId>
<version>0.5.0</version>
<version>1.0.0</version>
</dependency>
```

### As Gradle Dependency
```kotlin
implementation 'de.fraunhofer.iosb.ilt.faaast.service:starter:0.5.0'
implementation 'de.fraunhofer.iosb.ilt.faaast.service:starter:1.0.0'
```

## Building from Source
Expand Down
2 changes: 1 addition & 1 deletion assetconnection/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
<artifactId>service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
Expand Down
2 changes: 1 addition & 1 deletion assetconnection/http/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
<artifactId>service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
Expand Down
2 changes: 1 addition & 1 deletion assetconnection/mqtt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
<artifactId>service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
Expand Down
2 changes: 1 addition & 1 deletion assetconnection/opcua/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
<artifactId>service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
Expand Down
2 changes: 1 addition & 1 deletion checks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
<artifactId>service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
<artifactId>service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
Expand Down
2 changes: 1 addition & 1 deletion dataformat/json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
<artifactId>service</artifactId>
<version>1.0.0-SNAPSHOT</version>
<version>1.0.0</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>dataformat-json</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions docs/source/basics/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
<dependency>
<groupId>de.fraunhofer.iosb.ilt.faaast.service</groupId>
<artifactId>starter</artifactId>
<version>0.5.0</version>
<version>1.0.0</version>
</dependency>
```

## Gradle Dependency

```groovy
implementation 'de.fraunhofer.iosb.ilt.faaast.service:starter:0.5.0'
implementation 'de.fraunhofer.iosb.ilt.faaast.service:starter:1.0.0'
```

## Build from Source
Expand Down
3 changes: 1 addition & 2 deletions docs/source/other/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# Release Notes

<!--start:changelog-header-->
## 1.0.0-SNAPSHOT (current development version)<!--end:changelog-header-->
## 1.0.0

:::{important}
Version 1.0 is a major update and has breaking changes to all previous versions.
Expand Down
Loading

0 comments on commit 81ef521

Please sign in to comment.