Skip to content

Commit

Permalink
chore: Documentation and release updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzybinary committed Dec 23, 2024
1 parent 65e822a commit 8b07a17
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
6 changes: 6 additions & 0 deletions src/dart/godot_dart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.8.0

- Fix casting to builtin types from `Variant`.
- BREAKING: Remove `bindingToken` as a paremeter of type info. Simplified instance binding creation which should also lower the extension's memory usage.
- BREAKING: Remove `GodotObject.cast<T>` as Dart downcasting now works. Replaced with `GodotObject.as<T>`. This extension may be removed entirely in future versions.

## 0.7.0

- Support parameters on Signals with `SignalArgument`
Expand Down
2 changes: 1 addition & 1 deletion src/dart/godot_dart/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: godot_dart
description: Dart bindings for the Godot game engine
repository: https://github.com/fuzzybinary/godot_dart
version: 0.7.0
version: 0.8.0

environment:
sdk: '>=3.2.0 <4.0.0'
Expand Down
5 changes: 5 additions & 0 deletions src/dart/godot_dart_build/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.6.0

- Update generation to not add "binding tokens" to TypeInfo (major refactor in `godot_dart` 0.8.0).
- Fix RPC generation to not create a private class.

## 0.5.0

- Support parameters on Signals with `SignalArgument`
Expand Down
4 changes: 2 additions & 2 deletions src/dart/godot_dart_build/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: godot_dart_build
description: build_runner interface for simplifying binding to Godot
repository: https://github.com/fuzzybinary/godot_dart
version: 0.5.0
version: 0.6.0

environment:
sdk: '>=3.5.0 <4.0.0'
Expand All @@ -14,7 +14,7 @@ dependencies:
build: ^2.0.0
build_config: ^1.1.1
source_gen: ^1.3.2
godot_dart: '>=0.7.0<1.0.0'
godot_dart: '>=0.8.0<1.0.0'
code_builder: ^4.5.0
dart_style: ^2.3.1
glob: ^2.1.2
Expand Down

0 comments on commit 8b07a17

Please sign in to comment.