Skip to content

Commit 0207dca

Browse files
committed
0.7.1 - See changelog for updates.
1 parent 82007a3 commit 0207dca

File tree

9 files changed

+37
-33
lines changed

9 files changed

+37
-33
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.7.1]
9+
10+
### Fixed
11+
- **Fixed** maturin wheel build — removed invalid `python-source` setting from pyproject.toml that broke wheel builds for pure Rust extension module
12+
813
## [0.7.0]
914

1015
### Spec Compliance (ASHRAE 135-2020)

Cargo.lock

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

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ default-members = [
3838
]
3939

4040
[workspace.package]
41-
version = "0.7.0"
41+
version = "0.7.1"
4242
edition = "2021"
4343
rust-version = "1.93"
4444
license = "MIT"
@@ -49,14 +49,14 @@ keywords = ["bacnet", "building-automation", "ashrae", "iot", "protocol"]
4949
categories = ["network-programming", "embedded"]
5050

5151
[workspace.dependencies]
52-
bacnet-types = { version = "0.7.0", path = "crates/bacnet-types" }
53-
bacnet-encoding = { version = "0.7.0", path = "crates/bacnet-encoding" }
54-
bacnet-services = { version = "0.7.0", path = "crates/bacnet-services" }
55-
bacnet-transport = { version = "0.7.0", path = "crates/bacnet-transport" }
56-
bacnet-network = { version = "0.7.0", path = "crates/bacnet-network" }
57-
bacnet-client = { version = "0.7.0", path = "crates/bacnet-client" }
58-
bacnet-objects = { version = "0.7.0", path = "crates/bacnet-objects" }
59-
bacnet-server = { version = "0.7.0", path = "crates/bacnet-server" }
52+
bacnet-types = { version = "0.7.1", path = "crates/bacnet-types" }
53+
bacnet-encoding = { version = "0.7.1", path = "crates/bacnet-encoding" }
54+
bacnet-services = { version = "0.7.1", path = "crates/bacnet-services" }
55+
bacnet-transport = { version = "0.7.1", path = "crates/bacnet-transport" }
56+
bacnet-network = { version = "0.7.1", path = "crates/bacnet-network" }
57+
bacnet-client = { version = "0.7.1", path = "crates/bacnet-client" }
58+
bacnet-objects = { version = "0.7.1", path = "crates/bacnet-objects" }
59+
bacnet-server = { version = "0.7.1", path = "crates/bacnet-server" }
6060
thiserror = "2"
6161
bitflags = "2"
6262
bytes = "1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ dependencyResolutionManagement {
123123

124124
// build.gradle.kts
125125
dependencies {
126-
implementation("io.github.jscott3201:bacnet-java:0.7.0")
126+
implementation("io.github.jscott3201:bacnet-java:0.7.1")
127127
}
128128
```
129129

benchmarks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bacnet-benchmarks"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
edition = "2021"
55
publish = false
66

crates/rusty-bacnet/pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,4 @@ Changelog = "https://github.com/jscott3201/rusty-bacnet/blob/main/CHANGELOG.md"
3232
[tool.maturin]
3333
features = ["pyo3/extension-module"]
3434
# Include type stubs for IDE autocomplete and type checking
35-
python-source = "."
3635
include = ["rusty_bacnet.pyi", "py.typed"]

examples/kotlin/BipClientServer.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
*
1010
* Usage:
1111
* // Add rusty-bacnet JAR to classpath, then:
12-
* kotlinc -cp rusty-bacnet-0.7.0.jar BipClientServer.kt -include-runtime -d example.jar
13-
* java -cp example.jar:rusty-bacnet-0.7.0.jar BipClientServerKt
12+
* kotlinc -cp rusty-bacnet-0.7.1.jar BipClientServer.kt -include-runtime -d example.jar
13+
* java -cp example.jar:rusty-bacnet-0.7.1.jar BipClientServerKt
1414
*/
1515

1616
import kotlinx.coroutines.delay

examples/kotlin/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ cd ../../java
1111
./build-local.sh --release
1212
```
1313

14-
The JAR will be at `java/build/libs/rusty-bacnet-0.7.0.jar`.
14+
The JAR will be at `java/build/libs/rusty-bacnet-0.7.1.jar`.
1515

1616
## Examples
1717

@@ -31,7 +31,7 @@ These examples use the Kotlin scripting approach. Ensure JDK 21+ and `kotlinc` a
3131
# Add example as a mainClass in java/build.gradle.kts
3232

3333
# Option 2: Compile and run directly
34-
JAR=../../java/build/libs/rusty-bacnet-0.7.0.jar
34+
JAR=../../java/build/libs/rusty-bacnet-0.7.1.jar
3535
kotlinc -cp "$JAR" BipClientServer.kt -include-runtime -d example.jar
3636
java -cp "example.jar:$JAR" BipClientServerKt
3737

java/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
kotlin.code.style=official
22
group=io.github.jscott3201
3-
version=0.7.0
3+
version=0.7.1

0 commit comments

Comments
 (0)