Skip to content

Commit

Permalink
Update to 6.2-1.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Petersoj committed Oct 12, 2021
1 parent 6f7a44c commit 5700758
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ If you are using Gradle as your build tool, add the following dependency to your

```
dependencies {
implementation group: 'net.jacobpeterson', name: 'iqfeed4j', version: '6.2-1.5.1'
implementation group: 'net.jacobpeterson', name: 'iqfeed4j', version: '6.2-1.5.2'
}
```

Expand All @@ -33,7 +33,7 @@ If you are using Maven as your build tool, add the following dependency to your
<dependency>
<groupId>net.jacobpeterson</groupId>
<artifactId>iqfeed4j</artifactId>
<version>6.2-1.5.1</version>
<version>6.2-1.5.2</version>
<scope>compile</scope>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ apply plugin: 'jsonschema2pojo'
tasks.getByName('generateJsonSchema2Pojo').enabled(false) // Disable default 'jsonSchema2Pojo' task

group 'net.jacobpeterson'
version '6.2-1.5.1-SNAPSHOT'
version '6.2-1.5.2-SNAPSHOT'

repositories {
mavenCentral()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ public void run() {
cleanupState();
return;
} else {
// Removed in production for version 6.2-1.5.1
// Removed in production for version 6.2-1.5.2
logger.trace("Received message line: {}", line);

String[] csv = csvSplitter.splitToList(line).toArray(new String[0]);
Expand Down

0 comments on commit 5700758

Please sign in to comment.