Skip to content

Commit

Permalink
Prepare for next development iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
hylkevds committed Jun 11, 2024
1 parent 3ecfe83 commit 64ab865
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Development Version 0.46

**Updates**


# Release Version 0.45

**Updates**
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add the dependency:
<dependency>
<groupId>de.fraunhofer.iosb.ilt</groupId>
<artifactId>FROST-Client</artifactId>
<version>0.44</version>
<version>0.45</version>
</dependency>

```
Expand All @@ -36,7 +36,7 @@ Add the dependency:

Add the dependency:
```gradle
compile 'de.fraunhofer.iosb.ilt:FROST-Client:0.44'
compile 'de.fraunhofer.iosb.ilt:FROST-Client:0.45'
```

## API
Expand All @@ -48,7 +48,7 @@ The `SensorThingsService` class is central to the library. An instance of it rep
The source code below demonstrates the CRUD operations for Thing objects. Operations for other entities work similarly.

```java
URL serviceEndpoint = new URL("http://example.org/v1.0/");
URL serviceEndpoint = new URL("http://example.org/v1.1/");
SensorThingsService service = new SensorThingsService(serviceEndpoint);
```

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

<groupId>de.fraunhofer.iosb.ilt</groupId>
<artifactId>FROST-Client</artifactId>
<version>0.45</version>
<version>0.46-SNAPSHOT</version>
<packaging>jar</packaging>

<name>FROST-Client</name>
Expand Down Expand Up @@ -80,7 +80,7 @@
<url>https://github.com/FraunhoferIOSB/FROST-Client</url>
<connection>scm:git:git@github.com:FraunhoferIOSB/FROST-Client.git</connection>
<developerConnection>scm:git:git@github.com:FraunhoferIOSB/FROST-Client.git</developerConnection>
<tag>v0.45</tag>
<tag>HEAD</tag>
</scm>

<issueManagement>
Expand Down

0 comments on commit 64ab865

Please sign in to comment.