[jnigen] 0.4.0 (https://github.com/dart-lang/jnigen/issues/270)
diff --git a/pkgs/jni/CHANGELOG.md b/pkgs/jni/CHANGELOG.md index bb1c61c..5847f00 100644 --- a/pkgs/jni/CHANGELOG.md +++ b/pkgs/jni/CHANGELOG.md
@@ -1,3 +1,6 @@ +## 0.4.0 +* Type classes now have `superCount` and `superType` getters used for type inference. + ## 0.3.0 * Added `PortContinuation` used for `suspend fun` in Kotlin. * `dartjni` now depends on `dart_api_dl.h`.
diff --git a/pkgs/jni/pubspec.yaml b/pkgs/jni/pubspec.yaml index e0a3771..7dc42d5 100644 --- a/pkgs/jni/pubspec.yaml +++ b/pkgs/jni/pubspec.yaml
@@ -1,6 +1,6 @@ name: jni description: Library to access JNI from dart and flutter -version: 0.3.0 +version: 0.4.0 repository: https://github.com/dart-lang/jnigen/tree/main/jni environment:
diff --git a/pkgs/jnigen/CHANGELOG.md b/pkgs/jnigen/CHANGELOG.md index 1516220..5c8b9ca 100644 --- a/pkgs/jnigen/CHANGELOG.md +++ b/pkgs/jnigen/CHANGELOG.md
@@ -1,9 +1,11 @@ -## 0.4.0-dev +## 0.4.0 * **Breaking Change** ([#145](https://github.com/dart-lang/jnigen/issues/145)): Type arguments are now named instead of positional. * Type parameters can now be inferred when possible. * Fixed a bug where passing a `long` argument truncated it to `int` in pure dart bindings. * Removed array extensions from the generated code. * Added the ability to use source dependencies from Gradle. +* Fixed an issue with the field setter. +* Fixed an issue where exceptions were not properly thrown in pure Dart bindings. ## 0.3.0 * Added the option to convert Kotlin `suspend fun` to Dart async methods. Add `suspend_fun_to_async: true` to `jnigen.yaml`.
diff --git a/pkgs/jnigen/pubspec.yaml b/pkgs/jnigen/pubspec.yaml index 48092a8..1da9c68 100644 --- a/pkgs/jnigen/pubspec.yaml +++ b/pkgs/jnigen/pubspec.yaml
@@ -3,7 +3,7 @@ # BSD-style license that can be found in the LICENSE file. name: jnigen -version: 0.4.0-dev +version: 0.4.0 description: Experimental generator for FFI+JNI bindings. repository: https://github.com/dart-lang/jnigen/tree/main/jnigen
diff --git a/pkgs/jnigen/test/kotlin_test/runtime_test_registrant.dart b/pkgs/jnigen/test/kotlin_test/runtime_test_registrant.dart index f99e3d4..642622b 100644 --- a/pkgs/jnigen/test/kotlin_test/runtime_test_registrant.dart +++ b/pkgs/jnigen/test/kotlin_test/runtime_test_registrant.dart
@@ -1,4 +1,4 @@ -// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file +// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file.
diff --git a/pkgs/jnigen/test/simple_package_test/java/com/github/dart_lang/jnigen/simple_package/Exceptions.java b/pkgs/jnigen/test/simple_package_test/java/com/github/dart_lang/jnigen/simple_package/Exceptions.java index 2949089..e0e79b3 100644 --- a/pkgs/jnigen/test/simple_package_test/java/com/github/dart_lang/jnigen/simple_package/Exceptions.java +++ b/pkgs/jnigen/test/simple_package_test/java/com/github/dart_lang/jnigen/simple_package/Exceptions.java
@@ -9,6 +9,7 @@ public class Exceptions { public Exceptions() {} + // constructor throwing exception public Exceptions(float x) { throw new IllegalArgumentException("Float is not a serious type");
diff --git a/pkgs/jnigen/test/simple_package_test/runtime_test_registrant.dart b/pkgs/jnigen/test/simple_package_test/runtime_test_registrant.dart index 41747e0..d46dcf7 100644 --- a/pkgs/jnigen/test/simple_package_test/runtime_test_registrant.dart +++ b/pkgs/jnigen/test/simple_package_test/runtime_test_registrant.dart
@@ -1,4 +1,4 @@ -// Copyright (c) 2022, the Dart project authors. Please see the AUTHORS file +// Copyright (c) 2023, the Dart project authors. Please see the AUTHORS file // for details. All rights reserved. Use of this source code is governed by a // BSD-style license that can be found in the LICENSE file.