Skip to content

Commit f41a824

Browse files
committed
Add ggez release prep announcement.
1 parent d4ed10d commit f41a824

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

content/posts/newsletter-015/index.md

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,11 +435,11 @@ There were a lot of additions in this update and a small breaking change.
435435

436436
```rust
437437
let v = vec4(1.0, 2.0, 3.0, 4.0);
438-
438+
439439
// Reverse elements of `v`.
440440
// If SIMD is supported this will use a vector shuffle.
441441
let wzyx = v.wzyx();
442-
442+
443443
let yzw = v.yzw(); // Swizzle the yzw elements of `v` into a `Vec3`
444444
let xy = v.xy(); // You can swizzle from a `Vec4` to a `Vec2`
445445
let yyxx = xy.yyxx(); // And back again
@@ -668,6 +668,23 @@ on the module's [repository][Proton-Media-Converter-Github]
668668
[Proton-Github]: https://github.com/ValveSoftware/Proton
669669
[Proton-Media-Converter-Github]: https://github.com/ValveSoftware/Proton/tree/proton_5.13/media-converter
670670

671+
### [ggez][ggez-github] 0.6 call for contributions
672+
673+
The `ggez` game library traditionally tries to make at least one release
674+
at the end of each year, and that is fast approaching. While the
675+
graphics engine rewrite is still a work in progress, there's plenty of
676+
other useful updates to be made. Bugfixes, dependency updates and other
677+
ergonomic fixes are all on the table. A lot of work has already been
678+
done: removing `nalgebra` from the public API in favor of just using
679+
`mint`, re-working some dependencies to improve build times, and
680+
updating and cleaning up a pile of minor issues. However, there's still
681+
about a hundred accumulated bugs and PR's to triage and figure out, and
682+
a lot of testing to do. Please help! The release checklist is
683+
available [here][ggez-release-checklist].
684+
685+
[ggez-github]: https://github.com/ggez/ggez/
686+
[ggez-release-checklist]: https://github.com/ggez/ggez/milestone/6
687+
671688
## Popular Workgroup Issues in Github
672689

673690
<!-- Up to 10 links to interesting issues -->

0 commit comments

Comments
 (0)