This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d5d02f6
commit 0b3f10e
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Change Log | ||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/). | ||
|
||
## [Unreleased] | ||
### 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 | ||
|
||
## [0.2.0] - 2015-08-19 | ||
### Added | ||
- Transpile proc var assignment to function definitions | ||
- Transpile global variables | ||
- Transpile `self` to `this` | ||
- Transpile type aliases | ||
- Transpile `is_a?` to `instanceof` | ||
- Transpile vars; bool, number and string literals explicitly | ||
- Transpile `case/when` to `switch/case` | ||
- Transpile `rescue` to `catch` | ||
|
||
### Changed | ||
- [Strict mode](https://github.com/geppetto-apps/crow/pull/6) - Enabled by default, CLI will not | ||
allow use of fallback transpilation, but throw an exception. Disable by | ||
passing `--no-strict` to the CLI. | ||
|
||
## 0.1.0 - 2015-08-10 | ||
### Added | ||
- Transpile `p` to `console.log` | ||
- Transpile class structures (constructors, instance variables etc.) | ||
- Transpile variable assignment (using let and const) | ||
- Transpile nil | ||
- Transpile symbols | ||
- Transpile if, unless | ||
- Transpile typed arrays | ||
- Transpile hash to object | ||
|
||
[Unreleased]: https://github.com/geppetto-apps/crow/compare/v0.2.0...HEAD | ||
[0.2.0]: https://github.com/geppetto-apps/crow/compare/v0.1.0...v0.2.0 |