Skip to content

Commit b01ef1c

Browse files
committed
Updated changelog for 0.9.4 release
1 parent 6b88989 commit b01ef1c

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log
22
==============
33

4+
### 0.9.4 ###
5+
Rebased java namespace to org.totalgrid.reef.protocol.dnp3
6+
Java SO static loading can be overriden using system property "org.totalgrid.reef.protocol.dnp3.nostaticload"
7+
Fixed a major bug in slave unsolcited mode on event buffer overflow.
8+
9+
410
### 0.9.3 ###
511
- Fixed parsing bug in testset that caused erroneous pulse repititions
612
- Fixed a bug in DataPoll.cpp that caused stack to crash if it eas configured with an empty exception scan

DNP3Java/JavaDNP3.i

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ using namespace apl::dnp;
1111

1212
%pragma(java) jniclasscode=%{
1313
static {
14-
if(System.getProperty("reef.protocol.dnp3.nostaticload") == null) System.loadLibrary("dnp3java");
14+
if(System.getProperty("org.totalgrid.reef.protocol.dnp3.nostaticload") == null) System.loadLibrary("dnp3java");
1515
}
1616
%}
1717

DNP3Java/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
4-
<groupId>reef.protocol.dnp3</groupId>
4+
<groupId>org.totalgrid.reef.protocol.dnp3</groupId>
55
<artifactId>dnp3java</artifactId>
66
<packaging>jar</packaging>
7-
<version>0.9.4-SNAPSHOT</version>
7+
<version>0.9.4</version>
88
<distributionManagement>
99
<repository>
1010
<id>gec-release</id>

DNP3Java/rake.project.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:libs => $PLATFORM_LIBS + Boost::get_static_libs + $WINSOCK_LIBS,
99
:project_libs => [:dnp3, :apl],
1010
:plugins => ['swigjava'], #swigjava specific options
11-
:java_package => 'reef.protocol.dnp3',
12-
:java_outdir => 'src/main/java/reef/protocol/dnp3'
11+
:java_package => 'org.totalgrid.reef.protocol.dnp3',
12+
:java_outdir => 'src/main/java/org/totalgrid/reef/protocol/dnp3'
1313
}
1414

0 commit comments

Comments
 (0)