Skip to content

Commit 23e0092

Browse files
authored
[ffi] Cleanup after move and bump to v2.1.2 (#896)
1 parent 9c9ec1c commit 23e0092

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.github/workflows/ffi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Dart CI
1+
name: ffi
22

33
on:
44
# Run on PRs and pushes to the default branch.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ building and bundling.
99

1010
| Package | Description | Version |
1111
| --- | --- | --- |
12+
| [ffi](pkgs/ffi/) | Utilities for working with Foreign Function Interface (FFI) code. | [![pub package](https://img.shields.io/pub/v/ffi.svg)](https://pub.dev/packages/ffi) |
1213
| [ffigen](pkgs/ffigen/) | Generator for FFI bindings, using LibClang to parse C, Objective-C, and Swift files. | [![pub package](https://img.shields.io/pub/v/ffigen.svg)](https://pub.dev/packages/ffigen) |
1314
| [jni](pkgs/jni/) | A library to access JNI from Dart and Flutter that acts as a support library for `package:jnigen`. | [![pub package](https://img.shields.io/pub/v/jni.svg)](https://pub.dev/packages/jni) |
1415
| [jnigen](pkgs/jnigen/) | A Dart bindings generator for Java and Kotlin that uses JNI under the hood to interop with Java virtual machine. | [![pub package](https://img.shields.io/pub/v/jnigen.svg)](https://pub.dev/packages/jnigen) |

pkgs/ffi/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.1.2
2+
3+
- Update repository to point to dart-lang/native.
4+
15
## 2.1.1
26

37
- Require Dart 3.3.0 or greater.

pkgs/ffi/README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
[![Build Status](https://github.com/dart-lang/ffi/workflows/Dart%20CI/badge.svg)](https://github.com/dart-lang/ffi/actions?query=workflow%3A"Dart+CI")
1+
[![Build Status](https://github.com/dart-lang/native/actions/workflows/ffi.yaml/badge.svg)](https://github.com/dart-lang/native/actions/workflows/ffi.yaml)
2+
[![Coverage Status](https://coveralls.io/repos/github/dart-lang/native/badge.svg?branch=main)](https://coveralls.io/github/dart-lang/native?branch=main)
23
[![pub package](https://img.shields.io/pub/v/ffi.svg)](https://pub.dev/packages/ffi)
34
[![package publisher](https://img.shields.io/pub/publisher/ffi.svg)](https://pub.dev/packages/ffi/publisher)
45

pkgs/ffi/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: ffi
2-
version: 2.1.1
2+
version: 2.1.2
33
description: Utilities for working with Foreign Function Interface (FFI) code.
4-
repository: https://github.com/dart-lang/ffi
4+
repository: https://github.com/dart-lang/native/tree/main/pkgs/ffi
55

66
topics:
77
- interop

0 commit comments

Comments
 (0)