From eba57bea07700ed678adb819a989e773316e7c26 Mon Sep 17 00:00:00 2001 From: "Paul R. Tagliamonte" Date: Sun, 7 Apr 2013 13:24:19 -0400 Subject: [PATCH] Backfilling NEWS entries --- NEWS | 42 +++++++++++++++++++++++++++++++++++++----- 1 file changed, 37 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 57d673c..3572250 100644 --- a/NEWS +++ b/NEWS @@ -65,23 +65,55 @@ Changes from Hy 0.9.3 Changes from Hy 0.9.2 - [ Syntax Fixes ] + [ General Enhancements ] + + * hy.__main__ added, `python -m hy' will now allow a hy shim into existing + Python scripts. (PT) + [ Language Changes ] + * `import-as' added to allow for importing modules. (Amrut Joshi) + * `slice' added to slice up arrays. (PT) + * `with-as' added to allow for context managed bits. (PT) + * `%' added to do Modulo. (PT) + * Tuples added with the '(, foo bar)' syntax. (PT) + * `car' / `first' added. (PT) + * `cdr' / `rest' added. (PT) + * hy --> .pyc compiler added. (PT) + * Completer added for the REPL Readline autocompletion. (PT) + * Merge the `meth' macros into hy.contrib. (PT) + * Changed __repr__ to match Hy source conventions. (PT) + * 2.6 support restored. (PT) + Changes from Hy 0.9.1 - [ Syntax Fixes ] + [ General Enhancements ] + + * Hy REPL added. (PT) + * Doc templates added. (PT) + [ Language Changes ] + * Add `pass' (PT) + * Add `yield' (PT) + * Moved `for' to a macro, and move `foreach' to old `for'. (PT) + * Add the threading macro (`->'). (PT) + * Add "earmufs" in. (tenach) + * Add comments in (PT) + Changes from Hy 0.9.0 - [ Syntax Fixes ] [ Language Changes ] + * Add `throw' (PT) + * Add `try' (PT) + * add `catch' (PT) + Changes from Hy 0.8.2 - [ Syntax Fixes ] - [ Language Changes ] + [ Notes ] + + * Complete rewrite of old-hy. (PT)