Skip to content

Commit

Permalink
updating readme and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperFola committed Sep 1, 2019
1 parent 0c72086 commit 2173b4f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## Unreleased changes
## 3.0.4
### Added
- with the option `-L|--lib` we can set the path to the Ark standard library
- we can now load C++ lambdas into the ArkVM, as well as C++ functions
Expand All @@ -11,6 +11,7 @@
- updating CMakeLists.txt to avoid building unuseful stuff from google benchmark
- `toNumber` doesn't raise an unrecoverable error but returns `nil` if the conversion failed
- `print` no longer add a space between each element
- updating the way the builtins are handled (in VM/FFI) to make it easier to add functions

### Removed
- `doc` folder, now everything is on the wiki
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ArkScript
### Current version: 3.0.3
### Current version: 3.0.4

[![Codacy Badge](https://api.codacy.com/project/badge/Grade/fd5900d08a97487486c43079c06e19ce)](https://app.codacy.com/app/folaefolc/Ark?utm_source=github.com&utm_medium=referral&utm_content=SuperFola/Ark&utm_campaign=Badge_Grade_Settings)
[![Build Status](https://travis-ci.org/SuperFola/Ark.svg?branch=rework)](https://travis-ci.org/SuperFola/Ark)
Expand All @@ -22,7 +22,7 @@
* Ark is easy to compile: it takes less than 200ms to compile and check a complex code with a lot of branches and sub-branches of 200 lines.
* Ark is a Lisp-like, but with less parentheses: `[...]` is expanded to `(list ...)` and `{}` to `(begin ...)`. More shorthands will come in the future.

## Example
## Examples

### Fibonacci suite

Expand Down Expand Up @@ -85,7 +85,9 @@ Don't know what to work on? No worries, we have a [list of things to do](https:/

### Contributing to the Ark standard library

See [Coding guidelines](https://github.com/SuperFola/Ark/wiki/Coding-guidelines#coding-in-ark)
See [Coding guidelines](https://github.com/SuperFola/Ark/wiki/Coding-guidelines#coding-in-ark) if you want to write Ark code for the library (see folder `lib/`).

For performance reasons, some functions might be written in C++, in `include/Ark/VM/FFI.hpp` and `src/VM/FFI/`.

## Dependencies

Expand Down

0 comments on commit 2173b4f

Please sign in to comment.