Skip to content

Commit 8b07a17

Browse files
committed
chore: Documentation and release updates.
1 parent 65e822a commit 8b07a17

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

src/dart/godot_dart/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.8.0
2+
3+
- Fix casting to builtin types from `Variant`.
4+
- BREAKING: Remove `bindingToken` as a paremeter of type info. Simplified instance binding creation which should also lower the extension's memory usage.
5+
- BREAKING: Remove `GodotObject.cast<T>` as Dart downcasting now works. Replaced with `GodotObject.as<T>`. This extension may be removed entirely in future versions.
6+
17
## 0.7.0
28

39
- Support parameters on Signals with `SignalArgument`

src/dart/godot_dart/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: godot_dart
22
description: Dart bindings for the Godot game engine
33
repository: https://github.com/fuzzybinary/godot_dart
4-
version: 0.7.0
4+
version: 0.8.0
55

66
environment:
77
sdk: '>=3.2.0 <4.0.0'

src/dart/godot_dart_build/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.6.0
2+
3+
- Update generation to not add "binding tokens" to TypeInfo (major refactor in `godot_dart` 0.8.0).
4+
- Fix RPC generation to not create a private class.
5+
16
## 0.5.0
27

38
- Support parameters on Signals with `SignalArgument`

src/dart/godot_dart_build/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: godot_dart_build
22
description: build_runner interface for simplifying binding to Godot
33
repository: https://github.com/fuzzybinary/godot_dart
4-
version: 0.5.0
4+
version: 0.6.0
55

66
environment:
77
sdk: '>=3.5.0 <4.0.0'
@@ -14,7 +14,7 @@ dependencies:
1414
build: ^2.0.0
1515
build_config: ^1.1.1
1616
source_gen: ^1.3.2
17-
godot_dart: '>=0.7.0<1.0.0'
17+
godot_dart: '>=0.8.0<1.0.0'
1818
code_builder: ^4.5.0
1919
dart_style: ^2.3.1
2020
glob: ^2.1.2

0 commit comments

Comments
 (0)