CHANGELOG.md in coffee-processing-0.0.2 vs CHANGELOG.md in coffee-processing-0.0.3

- old
+ new

@@ -1,4 +1,16 @@ +0.0.3 +===== +- Constants (e.g. `P3D`, `RGB`) are now directly accessible without `processing` variable or shortcut methods. +- The same holds true for `ArrayList`, `HashMap`, `PVector`, `ObjectIterator` and `PConstants` + 0.0.2 ===== - Prevents accidental assignment of `processing` variable which breaks the sketch. + +```coffee +# This used to break the whole sketch +processing = null + +setup = -> # ... +```