Skip to content

Commit

Permalink
release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bluestreak01 committed Jun 18, 2014
1 parent a16d19c commit 761039f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion nfsdb-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<project.version>1.0.3-SNAPSHOT</project.version>
<project.version>1.0.3</project.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion nfsdb-guice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<project.version>1.0.3-SNAPSHOT</project.version>
<project.version>1.0.3</project.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

Expand Down
2 changes: 1 addition & 1 deletion nfsdb-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<project.version>1.0.3-SNAPSHOT</project.version>
<project.version>1.0.3</project.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<thrift.version>0.9.0</thrift.version>
</properties>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package org.nfsdb.examples.append;

import com.nfsdb.journal.JournalKey;
import com.nfsdb.journal.JournalWriter;
import com.nfsdb.journal.exceptions.JournalException;
import com.nfsdb.journal.factory.JournalFactory;
Expand All @@ -23,7 +22,7 @@ public static void main(String[] args) throws JournalException {
Files.delete(new File(factory.getConfiguration().getJournalBase(), "price"));
final int count = 1000000;

try (JournalWriter<Price> writer = factory.writer(new JournalKey<>(Price.class))) {
try (JournalWriter<Price> writer = factory.writer(Price.class)) {
long tZero = System.nanoTime();
Price p = new Price();

Expand Down
2 changes: 1 addition & 1 deletion nfsdb-test-model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<project.version>1.0.3-SNAPSHOT</project.version>
<project.version>1.0.3</project.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<thrift.version>0.9.0</thrift.version>
</properties>
Expand Down
2 changes: 1 addition & 1 deletion nfsdb-thrift/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<project.version>1.0.3-SNAPSHOT</project.version>
<project.version>1.0.3</project.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<thrift.version>0.9.0</thrift.version>
</properties>
Expand Down

0 comments on commit 761039f

Please sign in to comment.