Skip to content

Commit e4f18be

Browse files
authored
Merge pull request #142 from NordSecurity/bump-to-version-v0.10.0+v0.29.4
Prepare release v0.10.0+v0.29.4
2 parents 2ee3317 + bd5fc90 commit e4f18be

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
### UNRELEASED
22

33
### v0.10.0+v0.29.4
4-
- Upgrade to [uniFFI 0.29.4](https://mozilla.github.io/uniffi-rs/latest/Upgrading.html) [#124](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/124)
4+
- **BREAKING** Upgrade to [uniFFI 0.29.4](https://mozilla.github.io/uniffi-rs/latest/Upgrading.html) [#124](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/124)
5+
- **BREAKING** Use Arrays instead of Lists for sequence collections [#137](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/137)
6+
- Add support csharpier 1.0.0 [#116](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/116)
7+
- Improve read/write operations [#131](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/131)
8+
- Improve objects disposal [#128](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/128)
9+
- Allow config file to be specified alongside --library [#119](https://github.com/NordSecurity/uniffi-bindgen-cs/issues/119)
510

611
### v0.9.1+v0.28.3
712
- Add calling convention cdecl to DllImport

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ as a separate project from `uniffi-rs`, as per
66

77
# How to install
88

9-
Minimum Rust version required to install `uniffi-bindgen-cs` is `1.81`.
9+
Minimum Rust version required to install `uniffi-bindgen-cs` is `1.88`.
1010
Newer Rust versions should also work fine.
1111

1212
```bash
@@ -25,10 +25,10 @@ Generates bindings file `path/to/definitions.cs`
2525
To integrate the bindings into your projects, simply add the generated bindings file to your project.
2626
There are a few requirements depending on your target framework version.
2727

28-
- .NET core `6.0` or higher
28+
- .NET core `8.0` or higher
2929
```xml
3030
<PropertyGroup>
31-
<TargetFramework>net6.0</TargetFramework>
31+
<TargetFramework>net8.0</TargetFramework>
3232
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
3333
</PropertyGroup>
3434
```

0 commit comments

Comments
 (0)