crow v0.3.0 Release Notes
Release Date: 2016-08-27 // over 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.