Skip to content

Commit

Permalink
Add changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Oskar Wickström committed Jan 26, 2016
1 parent 4f33008 commit f6c2d9e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

* 0.2.1
- Type signatures. The type of a value can be specified, and constrained, by
a type signature. Implicit or explicit forall ([Function
documentation](http://oden-lang.org/user-guide/language-reference/forms.html#functions)).
- Syntactic sugar for curried function types. `(a -> (b -> c))` can now be
written `(a -> b -> c)`.
* 0.2.0
- Compiler rewritten in Haskell.
- Support for importing definitions from Go packages. All kinds not yet
supported (e.g. interfaces, structs).
* 0.1.x - First versions of Oden (first called Kashmir) written in Racket.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ dist/oden: dist/build-odenc/bin/odenc
cp README.md dist/oden/README.txt
cp LICENSE.md dist/oden/LICENSE.txt
cp CREDITS.md dist/oden/CREDITS.txt
cp CHANGELOG.md dist/oden/CHANGELOG.txt
cp dist/build-odenc/bin/odenc dist/oden/bin/odenc

$(DIST_ARCHIVE): dist/oden
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ can submit bug reports, suggestions and change requests at
Please start by posting an issue even if you have a pull request ready,
so we can begin with a discussion.

## Changelog

See [CHANGELOG.md].

## License

Copyright 2015 Oskar Wickström
Expand Down

0 comments on commit f6c2d9e

Please sign in to comment.