From 3b01742818ef681031452c3f46496097d79f5d1f Mon Sep 17 00:00:00 2001 From: "Brandon T. Willard" Date: Sun, 14 Oct 2018 01:04:41 -0500 Subject: [PATCH] Update NEWS --- NEWS.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/NEWS.rst b/NEWS.rst index 5a67e80..bb101a2 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -12,9 +12,15 @@ New Features * Keyword objects (not just literal keywords) can be called, as shorthand for `(get obj :key)`, and they accept a default value as a second argument. +* Minimal macro expansion namespacing has been implemented. As a result, + external macros no longer have to `require` their own macro dependencies. +* Macros and tags now reside in module-level `__macros__` and `__tags__` + attributes. Bug Fixes ------------------------------ +* `require` now compiles to Python AST. +* Fixed circular `require`s. * Fixed module reloading. * Fixed circular imports. * Fixed `__main__` file execution.