From 0aff816845ec1a53580f1291b62594a5310ce20b Mon Sep 17 00:00:00 2001 From: lenscas Date: Sun, 24 Jul 2022 13:23:31 +0200 Subject: [PATCH] update changelog --- CHANGES.md | 11 +++++++++++ tealr_derive/CHANGES.md | 4 ++++ 2 files changed, 15 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index e205612..cc61c3d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -17,6 +17,17 @@ All notable changes to this project are documented in this file. - [`0.0.1`](#001) ## upcoming +## 0.9.0 +- **BREAKING** changed location of the derive macros that are specific to either rlua or mlua +- **BREAKING** updated mlua and rlua +- **BREAKING** replaced tuple to store fields with Field type +- **BREAKING** Also have support for C style enums +- **BREAKING** remove useless 'static constraint for typewalker. +- **BREAKING** Fix typoe in __sub metamethod +- Make typeinformation available to lua if feature `derive` is set +- Add support for mlua static userdata fields/functions +- Add way to document available globals + ## 0.8.0 - Improved readme - Add ability to document the api diff --git a/tealr_derive/CHANGES.md b/tealr_derive/CHANGES.md index b14ec73..c8c07a1 100644 --- a/tealr_derive/CHANGES.md +++ b/tealr_derive/CHANGES.md @@ -13,6 +13,10 @@ All notable changes to this project are documented in this file. ## upcoming +## 0.9.0 +- Move away from syn to use venial instead for most macro's. +- Macros now accept the attribute `[tealr(tealr_name = "some_name")]` to tell macro's what name to use instead of tealr +- Add RluaFromTo and MluaFromTo macro. ## 0.8.0 - Update macros to work with tealr changes ## 0.6.0-preview1