crow v0.3.0 Release Notes
Release Date: 2016-08-27 // about 8 years ago-
➕ Added
- 🔖 Version flag (-v) to CLI
- ✅ Examples in markdown (also acts as tests)
✂ Removed
- 🚚 Internal: Removed a lot of specs now covered by markdown examples
🛠 Fixed
- Strict flag that was broken in CLI
Previous changes from v0.2.0
-
➕ Added
- Transpile proc var assignment to function definitions
- Transpile global variables
- Transpile
self
tothis
- Transpile type aliases
- Transpile
is_a?
toinstanceof
- Transpile vars; bool, number and string literals explicitly
- Transpile
case/when
toswitch/case
- Transpile
rescue
tocatch
🔄 Changed
- 0️⃣ Strict mode - Enabled by default, CLI will not
allow use of fallback transpilation, but throw an exception. Disable by
passing
--no-strict
to the CLI.