Skip to content

Commit 7f8bcf1

Browse files
authored
Prepare 1.5.2 patch release (#342)
1 parent 5df8eee commit 7f8bcf1

File tree

15 files changed

+22
-19
lines changed

15 files changed

+22
-19
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 1.5.2 ###
2+
* :bug: Fix bug where the outstation would sleep before all unsolicited data was transmitted. See [#341](https://github.com/stepfunc/dnp3/pull/341).
3+
14
### 1.5.1 ###
25
* :wrench: Update to oo-bindgen 0.8.6 to improve Java native library loading. See [oo-bindgen #124](https://github.com/stepfunc/oo_bindgen/pull/124).
36
* :bell: **This release only affects the Java distribution**. It is equivalent to 1.5.0 for other distributions.

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

conformance/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<properties>
1212
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1313
<scala.version>2.13.4</scala.version>
14-
<dnp3.version>1.5.1</dnp3.version>
14+
<dnp3.version>1.5.2</dnp3.version>
1515
<dnp4s.version>0.1.0-SNAPSHOT</dnp4s.version>
1616
<scala-maven-plugin.version>4.4.0</scala-maven-plugin.version>
1717
</properties>

dnp3/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dnp3"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
authors = ["Step Function I/O LLC <[email protected]>"]
55
edition = "2021"
66
license-file = "../LICENSE.txt"

dnp3/codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>dev.gridio.dnp3</groupId>
66
<artifactId>dnp3-model</artifactId>
7-
<version>1.5.1</version>
7+
<version>1.5.2</version>
88
<packaging>jar</packaging>
99

1010
<name>dnp3-rs model</name>

ffi/bindings/c/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.12)
22

33
project(dnp3_c LANGUAGES C CXX)
44

5-
set(DNP3_BACKUP_VERSION 1.5.1)
5+
set(DNP3_BACKUP_VERSION 1.5.2)
66

77
# Determine the architecture
88
if(WIN32 AND CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64|amd64|AMD64" AND CMAKE_SIZEOF_VOID_P EQUAL 8)

ffi/bindings/dotnet/examples/master/Master.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</When>
1414
<Otherwise>
1515
<ItemGroup>
16-
<PackageReference Include="dnp3" Version="1.5.1" />
16+
<PackageReference Include="dnp3" Version="1.5.2" />
1717
</ItemGroup>
1818
</Otherwise>
1919
</Choose>

ffi/bindings/dotnet/examples/outstation/Outstation.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</When>
1414
<Otherwise>
1515
<ItemGroup>
16-
<PackageReference Include="dnp3" Version="1.5.1" />
16+
<PackageReference Include="dnp3" Version="1.5.2" />
1717
</ItemGroup>
1818
</Otherwise>
1919
</Choose>

ffi/bindings/java/examples/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.stepfunc.dnp3</groupId>
66
<artifactId>examples</artifactId>
7-
<version>1.5.1</version>
7+
<version>1.5.2</version>
88

99
<properties>
1010
<maven.compiler.source>1.8</maven.compiler.source>
@@ -16,7 +16,7 @@
1616
<dependency>
1717
<groupId>io.stepfunc</groupId>
1818
<artifactId>dnp3</artifactId>
19-
<version>1.5.1</version>
19+
<version>1.5.2</version>
2020
</dependency>
2121
</dependencies>
2222
</project>

ffi/bindings/java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.stepfunc</groupId>
66
<artifactId>dnp3-parent</artifactId>
7-
<version>1.5.1</version>
7+
<version>1.5.2</version>
88
<packaging>pom</packaging>
99

1010
<properties>

ffi/dnp3-bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dnp3-bindings"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
authors = ["Step Function I/O LLC <[email protected]>"]
55
edition = "2021"
66

ffi/dnp3-ffi-java/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dnp3-ffi-java"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
authors = ["Step Function I/O LLC <[email protected]>"]
55
edition = "2018"
66
build = "build.rs"

ffi/dnp3-ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dnp3-ffi"
3-
version = "1.5.1"
3+
version = "1.5.2"
44
authors = ["Step Function I/O LLC <[email protected]>"]
55
edition = "2021"
66

ffi/dnp3-schema/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dnp3-schema"
33
# this version is what gets applied to the FFI libraries
4-
version = "1.5.1"
4+
version = "1.5.2"
55
authors = ["Step Function I/O LLC <[email protected]>"]
66
edition = "2021"
77

guide/sitedata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "1.5.1",
2+
"version": "1.5.2",
33
"github_url": "https://github.com/stepfunc/dnp3"
44
}

0 commit comments

Comments
 (0)