Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
Show file tree
Hide file tree
Showing 37 changed files with 426 additions and 75 deletions.
178 changes: 178 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions packages/windows_ai/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.2.0

> Note: This release has breaking changes.
- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))
- **REFACTOR**: refactor the projection of `PassArray` style array parameters ([#326](https://github.com/dart-windows/dartwinrt/issues/326)). ([ca45f924](https://github.com/dart-windows/dartwinrt/commit/ca45f92440d371b65fbeaba5b36817c46d747b2f))
- **REFACTOR**: refactor parameter projections ([#325](https://github.com/dart-windows/dartwinrt/issues/325)). ([6774c4f8](https://github.com/dart-windows/dartwinrt/commit/6774c4f8d1e79b886116d951bfe18718921f659d))
- **BREAKING** **FEAT**: wrap struct fields ([#322](https://github.com/dart-windows/dartwinrt/issues/322)). ([a2094b38](https://github.com/dart-windows/dartwinrt/commit/a2094b386af8660babd95435cb4328dff92d1b1c))

## 0.1.0

> Note: This release has breaking changes.
Expand Down
10 changes: 5 additions & 5 deletions packages/windows_ai/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows_ai
description: Provides access to WinRT APIs from the Windows.AI namespace using
FFI.
version: 0.1.0
version: 0.2.0
homepage: https://win32.pub
repository: https://github.com/dart-windows/dartwinrt/tree/main/packages/windows_ai
issue_tracker: https://github.com/dart-windows/dartwinrt/issues?q=is%3Aopen+is%3Aissue+label%3A%22pkg%3A+windows_ai%22
Expand All @@ -22,10 +22,10 @@ platforms:
dependencies:
ffi: ^2.0.2
win32: ^5.0.4
windows_foundation: ^0.1.0
windows_graphics: ^0.1.0
windows_media: ^0.1.0
windows_storage: ^0.1.0
windows_foundation: ^0.2.0
windows_graphics: ^0.2.0
windows_media: ^0.2.0
windows_storage: ^0.2.0

dev_dependencies:
test: ^1.24.1
Expand Down
10 changes: 10 additions & 0 deletions packages/windows_applicationmodel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.2.0

> Note: This release has breaking changes.
- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))
- **REFACTOR**: refactor the projection of `PassArray` style array parameters ([#326](https://github.com/dart-windows/dartwinrt/issues/326)). ([ca45f924](https://github.com/dart-windows/dartwinrt/commit/ca45f92440d371b65fbeaba5b36817c46d747b2f))
- **REFACTOR**: refactor parameter projections ([#325](https://github.com/dart-windows/dartwinrt/issues/325)). ([6774c4f8](https://github.com/dart-windows/dartwinrt/commit/6774c4f8d1e79b886116d951bfe18718921f659d))
- **FEAT**: the constructors of the struct classes are now `const` ([#331](https://github.com/dart-windows/dartwinrt/issues/331)). ([c0ec409d](https://github.com/dart-windows/dartwinrt/commit/c0ec409d973dd27601bbf3e09e900589043a495d))
- **BREAKING** **FEAT**: wrap struct fields ([#322](https://github.com/dart-windows/dartwinrt/issues/322)). ([a2094b38](https://github.com/dart-windows/dartwinrt/commit/a2094b386af8660babd95435cb4328dff92d1b1c))

## 0.1.0

> Note: This release has breaking changes.
Expand Down
8 changes: 4 additions & 4 deletions packages/windows_applicationmodel/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows_applicationmodel
description: Provides access to WinRT APIs from the Windows.ApplicationModel
namespace using FFI.
version: 0.1.0
version: 0.2.0
homepage: https://win32.pub
repository: https://github.com/dart-windows/dartwinrt/tree/main/packages/windows_applicationmodel
issue_tracker: https://github.com/dart-windows/dartwinrt/issues?q=is%3Aopen+is%3Aissue+label%3A%22pkg%3A+windows_applicationmodel%22
Expand All @@ -22,9 +22,9 @@ platforms:
dependencies:
ffi: ^2.0.1
win32: ^5.0.3
windows_foundation: ^0.1.0
windows_storage: ^0.1.0
windows_system: ^0.1.0
windows_foundation: ^0.2.0
windows_storage: ^0.2.0
windows_system: ^0.1.0+1

dev_dependencies:
test: ^1.24.1
10 changes: 10 additions & 0 deletions packages/windows_data/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.2.0

> Note: This release has breaking changes.
- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))
- **REFACTOR**: refactor the projection of `PassArray` style array parameters ([#326](https://github.com/dart-windows/dartwinrt/issues/326)). ([ca45f924](https://github.com/dart-windows/dartwinrt/commit/ca45f92440d371b65fbeaba5b36817c46d747b2f))
- **REFACTOR**: refactor parameter projections ([#325](https://github.com/dart-windows/dartwinrt/issues/325)). ([6774c4f8](https://github.com/dart-windows/dartwinrt/commit/6774c4f8d1e79b886116d951bfe18718921f659d))
- **FEAT**: the constructors of the struct classes are now `const` ([#331](https://github.com/dart-windows/dartwinrt/issues/331)). ([c0ec409d](https://github.com/dart-windows/dartwinrt/commit/c0ec409d973dd27601bbf3e09e900589043a495d))
- **BREAKING** **FEAT**: wrap struct fields ([#322](https://github.com/dart-windows/dartwinrt/issues/322)). ([a2094b38](https://github.com/dart-windows/dartwinrt/commit/a2094b386af8660babd95435cb4328dff92d1b1c))

## 0.1.0

> Note: This release has breaking changes.
Expand Down
6 changes: 3 additions & 3 deletions packages/windows_data/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows_data
description: Provides access to WinRT APIs from the Windows.Data namespace
using FFI.
version: 0.1.0
version: 0.2.0
homepage: https://win32.pub
repository: https://github.com/dart-windows/dartwinrt/tree/main/packages/windows_data
issue_tracker: https://github.com/dart-windows/dartwinrt/issues?q=is%3Aopen+is%3Aissue+label%3A%22pkg%3A+windows_data%22
Expand All @@ -22,8 +22,8 @@ platforms:
dependencies:
ffi: ^2.0.1
win32: ^5.0.0
windows_foundation: ^0.1.0
windows_storage: ^0.1.0
windows_foundation: ^0.2.0
windows_storage: ^0.2.0

dev_dependencies:
test: ^1.24.1
11 changes: 11 additions & 0 deletions packages/windows_devices/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.2.0

> Note: This release has breaking changes.
- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))
- **REFACTOR**: refactor the projection of `PassArray` style array parameters ([#326](https://github.com/dart-windows/dartwinrt/issues/326)). ([ca45f924](https://github.com/dart-windows/dartwinrt/commit/ca45f92440d371b65fbeaba5b36817c46d747b2f))
- **REFACTOR**: refactor parameter projections ([#325](https://github.com/dart-windows/dartwinrt/issues/325)). ([6774c4f8](https://github.com/dart-windows/dartwinrt/commit/6774c4f8d1e79b886116d951bfe18718921f659d))
- **FEAT**: the constructors of the struct classes are now `const` ([#331](https://github.com/dart-windows/dartwinrt/issues/331)). ([c0ec409d](https://github.com/dart-windows/dartwinrt/commit/c0ec409d973dd27601bbf3e09e900589043a495d))
- **FEAT**: support `WinRTStruct` type arguments in `IReference` ([#312](https://github.com/dart-windows/dartwinrt/issues/312)). ([d8468adf](https://github.com/dart-windows/dartwinrt/commit/d8468adf7a373a7ebee48d8f43c7a2d2d87b77df))
- **BREAKING** **FEAT**: wrap struct fields ([#322](https://github.com/dart-windows/dartwinrt/issues/322)). ([a2094b38](https://github.com/dart-windows/dartwinrt/commit/a2094b386af8660babd95435cb4328dff92d1b1c))

## 0.1.0

> Note: This release has breaking changes.
Expand Down
14 changes: 7 additions & 7 deletions packages/windows_devices/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows_devices
description: Provides access to WinRT APIs from the Windows.Devices namespace
using FFI.
version: 0.1.0
version: 0.2.0
homepage: https://win32.pub
repository: https://github.com/dart-windows/dartwinrt/tree/main/packages/windows_devices
issue_tracker: https://github.com/dart-windows/dartwinrt/issues?q=is%3Aopen+is%3Aissue+label%3A%22pkg%3A+windows_devices%22
Expand All @@ -22,12 +22,12 @@ platforms:
dependencies:
ffi: ^2.0.1
win32: ^5.0.0
windows_applicationmodel: ^0.1.0
windows_foundation: ^0.1.0
windows_graphics: ^0.1.0
windows_storage: ^0.1.0
windows_system: ^0.1.0
windows_ui: ^0.1.0
windows_applicationmodel: ^0.2.0
windows_foundation: ^0.2.0
windows_graphics: ^0.2.0
windows_storage: ^0.2.0
windows_system: ^0.1.0+1
windows_ui: ^0.2.0

dev_dependencies:
test: ^1.24.1
19 changes: 19 additions & 0 deletions packages/windows_foundation/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 0.2.0

> Note: This release has breaking changes.
- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))
- **REFACTOR**: refactor the projection of `PassArray` style array parameters ([#326](https://github.com/dart-windows/dartwinrt/issues/326)). ([ca45f924](https://github.com/dart-windows/dartwinrt/commit/ca45f92440d371b65fbeaba5b36817c46d747b2f))
- **REFACTOR**: refactor parameter projections ([#325](https://github.com/dart-windows/dartwinrt/issues/325)). ([6774c4f8](https://github.com/dart-windows/dartwinrt/commit/6774c4f8d1e79b886116d951bfe18718921f659d))
- **FEAT**: the constructors of the struct classes are now `const` ([#331](https://github.com/dart-windows/dartwinrt/issues/331)). ([c0ec409d](https://github.com/dart-windows/dartwinrt/commit/c0ec409d973dd27601bbf3e09e900589043a495d))
- **FEAT**(windows_foundation): support boxing `Uri` objects ([#328](https://github.com/dart-windows/dartwinrt/issues/328)). ([c4ddb4ab](https://github.com/dart-windows/dartwinrt/commit/c4ddb4aba7098ec9e03d65a7f8feb4e35ff396b3))
- **FEAT**(windows_foundation): add wrapper for `HSTRING` ([#324](https://github.com/dart-windows/dartwinrt/issues/324)). ([d8e3533b](https://github.com/dart-windows/dartwinrt/commit/d8e3533b76a41d35a9a8166e1ae1ba9c373f62e0))
- **FEAT**: support (Uri, String) and (Object, Object?) key-value pairs in Map ([#319](https://github.com/dart-windows/dartwinrt/issues/319)). ([c72958dd](https://github.com/dart-windows/dartwinrt/commit/c72958dd4b2030c22eeae328cae61367f6193fc5))
- **FEAT**: support DateTime, Duration, and TextRange type args in Vectors ([#317](https://github.com/dart-windows/dartwinrt/issues/317)). ([8a8ef2a1](https://github.com/dart-windows/dartwinrt/commit/8a8ef2a14bf9c75dfe553312b6d49eeb53f094eb))
- **FEAT**: support `double` type arguments in `IAsyncOperation` ([#315](https://github.com/dart-windows/dartwinrt/issues/315)). ([c03183ff](https://github.com/dart-windows/dartwinrt/commit/c03183ff0d320f31542ddcd44d816cc35668068f))
- **FEAT**: support `WinRTStruct` type arguments in `IAsyncOperation` ([#313](https://github.com/dart-windows/dartwinrt/issues/313)). ([a194214f](https://github.com/dart-windows/dartwinrt/commit/a194214f05867ac07813031aefa7412006b43a67))
- **FEAT**: support `WinRTStruct` type arguments in `IReference` ([#312](https://github.com/dart-windows/dartwinrt/issues/312)). ([d8468adf](https://github.com/dart-windows/dartwinrt/commit/d8468adf7a373a7ebee48d8f43c7a2d2d87b77df))
- **DOCS**: update docs for the `internal` library ([#346](https://github.com/dart-windows/dartwinrt/issues/346)). ([f71cd951](https://github.com/dart-windows/dartwinrt/commit/f71cd9519990f3e664a4f343040d0802e803a0e0))
- **DOCS**: fix grammar mistakes in docs ([#340](https://github.com/dart-windows/dartwinrt/issues/340)). ([a420d0d7](https://github.com/dart-windows/dartwinrt/commit/a420d0d7d28288b2589d95a3441758763eac7fa4))
- **BREAKING** **FEAT**: wrap struct fields ([#322](https://github.com/dart-windows/dartwinrt/issues/322)). ([a2094b38](https://github.com/dart-windows/dartwinrt/commit/a2094b386af8660babd95435cb4328dff92d1b1c))

## 0.1.0

> Note: This release has breaking changes.
Expand Down
20 changes: 10 additions & 10 deletions packages/windows_foundation/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows_foundation
description: Provides access to WinRT APIs from the Windows.Foundation
namespace using FFI.
version: 0.1.0
version: 0.2.0
homepage: https://win32.pub
repository: https://github.com/dart-windows/dartwinrt/tree/main/packages/windows_foundation
issue_tracker: https://github.com/dart-windows/dartwinrt/issues?q=is%3Aopen+is%3Aissue+label%3A%22pkg%3A+windows_foundation%22
Expand All @@ -22,15 +22,15 @@ platforms:
dependencies:
ffi: ^2.0.2
win32: ^5.0.4
windows_data: ^0.1.0
windows_devices: ^0.1.0
windows_graphics: ^0.1.0
windows_media: ^0.1.0
windows_networking: ^0.1.0
windows_perception: ^0.0.2
windows_services: ^0.0.2
windows_storage: ^0.1.0
windows_ui: ^0.1.0
windows_data: ^0.2.0
windows_devices: ^0.2.0
windows_graphics: ^0.2.0
windows_media: ^0.2.0
windows_networking: ^0.2.0
windows_perception: ^0.1.0
windows_services: ^0.1.0
windows_storage: ^0.2.0
windows_ui: ^0.2.0

dev_dependencies:
test: ^1.24.1
10 changes: 10 additions & 0 deletions packages/windows_gaming/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.2.0

> Note: This release has breaking changes.
- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))
- **REFACTOR**: refactor the projection of `PassArray` style array parameters ([#326](https://github.com/dart-windows/dartwinrt/issues/326)). ([ca45f924](https://github.com/dart-windows/dartwinrt/commit/ca45f92440d371b65fbeaba5b36817c46d747b2f))
- **REFACTOR**: refactor parameter projections ([#325](https://github.com/dart-windows/dartwinrt/issues/325)). ([6774c4f8](https://github.com/dart-windows/dartwinrt/commit/6774c4f8d1e79b886116d951bfe18718921f659d))
- **FEAT**: the constructors of the struct classes are now `const` ([#331](https://github.com/dart-windows/dartwinrt/issues/331)). ([c0ec409d](https://github.com/dart-windows/dartwinrt/commit/c0ec409d973dd27601bbf3e09e900589043a495d))
- **BREAKING** **FEAT**: wrap struct fields ([#322](https://github.com/dart-windows/dartwinrt/issues/322)). ([a2094b38](https://github.com/dart-windows/dartwinrt/commit/a2094b386af8660babd95435cb4328dff92d1b1c))

## 0.1.0

> Note: This release has breaking changes.
Expand Down
8 changes: 4 additions & 4 deletions packages/windows_gaming/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows_gaming
description: Provides access to WinRT APIs from the Windows.Gaming namespace
using FFI.
version: 0.1.0
version: 0.2.0
homepage: https://win32.pub
repository: https://github.com/dart-windows/dartwinrt/tree/main/packages/windows_gaming
issue_tracker: https://github.com/dart-windows/dartwinrt/issues?q=is%3Aopen+is%3Aissue+label%3A%22pkg%3A+windows_gaming%22
Expand All @@ -22,9 +22,9 @@ platforms:
dependencies:
ffi: ^2.0.1
win32: ^5.0.0
windows_devices: ^0.1.0
windows_foundation: ^0.1.0
windows_system: ^0.1.0
windows_devices: ^0.2.0
windows_foundation: ^0.2.0
windows_system: ^0.1.0+1

dev_dependencies:
test: ^1.24.1
5 changes: 5 additions & 0 deletions packages/windows_globalization/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.0+1

- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))
- **REFACTOR**: refactor parameter projections ([#325](https://github.com/dart-windows/dartwinrt/issues/325)). ([6774c4f8](https://github.com/dart-windows/dartwinrt/commit/6774c4f8d1e79b886116d951bfe18718921f659d))

## 0.1.0

> Note: This release has breaking changes.
Expand Down
4 changes: 2 additions & 2 deletions packages/windows_globalization/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows_globalization
description: Provides access to WinRT APIs from the Windows.Globalization
namespace using FFI.
version: 0.1.0
version: 0.1.0+1
homepage: https://win32.pub
repository: https://github.com/dart-windows/dartwinrt/tree/main/packages/windows_globalization
issue_tracker: https://github.com/dart-windows/dartwinrt/issues?q=is%3Aopen+is%3Aissue+label%3A%22pkg%3A+windows_globalization%22
Expand All @@ -22,7 +22,7 @@ platforms:
dependencies:
ffi: ^2.0.1
win32: ^5.0.0
windows_foundation: ^0.1.0
windows_foundation: ^0.2.0

dev_dependencies:
test: ^1.24.1
11 changes: 11 additions & 0 deletions packages/windows_graphics/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 0.2.0

> Note: This release has breaking changes.
- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))
- **REFACTOR**: refactor the projection of `PassArray` style array parameters ([#326](https://github.com/dart-windows/dartwinrt/issues/326)). ([ca45f924](https://github.com/dart-windows/dartwinrt/commit/ca45f92440d371b65fbeaba5b36817c46d747b2f))
- **REFACTOR**: refactor parameter projections ([#325](https://github.com/dart-windows/dartwinrt/issues/325)). ([6774c4f8](https://github.com/dart-windows/dartwinrt/commit/6774c4f8d1e79b886116d951bfe18718921f659d))
- **FEAT**: the constructors of the struct classes are now `const` ([#331](https://github.com/dart-windows/dartwinrt/issues/331)). ([c0ec409d](https://github.com/dart-windows/dartwinrt/commit/c0ec409d973dd27601bbf3e09e900589043a495d))
- **FEAT**: support `WinRTStruct` type arguments in `IReference` ([#312](https://github.com/dart-windows/dartwinrt/issues/312)). ([d8468adf](https://github.com/dart-windows/dartwinrt/commit/d8468adf7a373a7ebee48d8f43c7a2d2d87b77df))
- **BREAKING** **FEAT**: wrap struct fields ([#322](https://github.com/dart-windows/dartwinrt/issues/322)). ([a2094b38](https://github.com/dart-windows/dartwinrt/commit/a2094b386af8660babd95435cb4328dff92d1b1c))

## 0.1.0

> Note: This release has breaking changes.
Expand Down
6 changes: 3 additions & 3 deletions packages/windows_graphics/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows_graphics
description: Provides access to WinRT APIs from the Windows.Graphics namespace
using FFI.
version: 0.1.0
version: 0.2.0
homepage: https://win32.pub
repository: https://github.com/dart-windows/dartwinrt/tree/main/packages/windows_graphics
issue_tracker: https://github.com/dart-windows/dartwinrt/issues?q=is%3Aopen+is%3Aissue+label%3A%22pkg%3A+windows_graphics%22
Expand All @@ -22,8 +22,8 @@ platforms:
dependencies:
ffi: ^2.0.1
win32: ^5.0.3
windows_foundation: ^0.1.0
windows_storage: ^0.1.0
windows_foundation: ^0.2.0
windows_storage: ^0.2.0

dev_dependencies:
test: ^1.24.1
4 changes: 4 additions & 0 deletions packages/windows_management/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.1+4

- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))

## 0.0.1+3

- Update a dependency to the latest release.
Expand Down
4 changes: 2 additions & 2 deletions packages/windows_management/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: windows_management
description: Provides access to WinRT APIs from the Windows.Management
namespace using FFI.
version: 0.0.1+3
version: 0.0.1+4
homepage: https://win32.pub
repository: https://github.com/dart-windows/dartwinrt/tree/main/packages/windows_management
issue_tracker: https://github.com/dart-windows/dartwinrt/issues?q=is%3Aopen+is%3Aissue+label%3A%22pkg%3A+windows_management%22
Expand All @@ -22,7 +22,7 @@ platforms:
dependencies:
ffi: ^2.0.1
win32: ^5.0.0
windows_foundation: ^0.1.0
windows_foundation: ^0.2.0

dev_dependencies:
test: ^1.24.1
10 changes: 10 additions & 0 deletions packages/windows_media/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.2.0

> Note: This release has breaking changes.
- **REFACTOR**: refactor enum projections ([#338](https://github.com/dart-windows/dartwinrt/issues/338)). ([8b2830c6](https://github.com/dart-windows/dartwinrt/commit/8b2830c6c9ffcfe4e5ffe745d65820e33c08dc98))
- **REFACTOR**: refactor the projection of `PassArray` style array parameters ([#326](https://github.com/dart-windows/dartwinrt/issues/326)). ([ca45f924](https://github.com/dart-windows/dartwinrt/commit/ca45f92440d371b65fbeaba5b36817c46d747b2f))
- **REFACTOR**: refactor parameter projections ([#325](https://github.com/dart-windows/dartwinrt/issues/325)). ([6774c4f8](https://github.com/dart-windows/dartwinrt/commit/6774c4f8d1e79b886116d951bfe18718921f659d))
- **FEAT**: the constructors of the struct classes are now `const` ([#331](https://github.com/dart-windows/dartwinrt/issues/331)). ([c0ec409d](https://github.com/dart-windows/dartwinrt/commit/c0ec409d973dd27601bbf3e09e900589043a495d))
- **BREAKING** **FEAT**: wrap struct fields ([#322](https://github.com/dart-windows/dartwinrt/issues/322)). ([a2094b38](https://github.com/dart-windows/dartwinrt/commit/a2094b386af8660babd95435cb4328dff92d1b1c))

## 0.1.0

> Note: This release has breaking changes.
Expand Down
Loading

0 comments on commit 2f6841f

Please sign in to comment.