Skip to content

Commit

Permalink
Adding missing import.
Browse files Browse the repository at this point in the history
Releasing 1.0.1
  • Loading branch information
aweigold committed Apr 17, 2019
1 parent a5beebf commit 2aba52f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Javadocs](http://javadoc.io/badge/com.trustedchoice/ask-kodiak-sdk.svg)](http://javadoc.io/doc/com.trustedchoice/ask-kodiak-sdk)
[![MavenCentral](http://img.shields.io/badge/Maven_Central-1.0.0-yellow.svg)](https://oss.sonatype.org/content/groups/public/com/trustedchoice/ask-kodiak-sdk/)
[![MavenCentral](http://img.shields.io/badge/Maven_Central-1.0.1-yellow.svg)](https://oss.sonatype.org/content/groups/public/com/trustedchoice/ask-kodiak-sdk/)

## Overview

Expand All @@ -19,13 +19,13 @@ Maven:
<dependency>
<groupId>com.trustedchoice</groupId>
<artifactId>ask-kodiak-sdk</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
<type>pom</type>
</dependency>
```
Gradle:
```groovy
compile 'com.trustedchoice:ask-kodiak-sdk:1.0.0'
compile 'com.trustedchoice:ask-kodiak-sdk:1.0.1'
```

## Building
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "com.trustedchoice"
version = "1.0.0"
version = "1.0.1"

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
import com.trustedchoice.askkodiak.v2.model.TimestampUidPair;

import java.sql.Timestamp;
import java.util.List;
import java.util.Map;
import java.util.Optional;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@
*/
@lombok.Data
public class Tag {

/**
* Name of the tag
*/
private String text;

}

0 comments on commit 2aba52f

Please sign in to comment.