Skip to content

Commit

Permalink
0.0.24 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mu001999 committed Dec 12, 2021
1 parent 8f1c8cd commit df3ebb5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
4 changes: 3 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# ChangeLog for Anole

## Unreleased
## 0.0.24 - 2021/12/12

### Changed

- Regard `{ ... }` as `@{ ... }()` now
- Edit CMakeLists.txt to support MacOS simply

### Fixed

- Fix code bug when `std::size_t` is not same to `std::uint64_t`
- Fix bug when inputting `;;;` in the REPL

## 0.0.23 - 2021/02/13
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@ sudo apt-get install libreadline6-dev
### Install

```bash
~> git clone https://github.com/anole-lang/anole.git
~> cd anole
~/anole> mkdir build && cd build && cmake ..
~/build> sudo make install
git clone https://github.com/anole-lang/anole.git && cd anole
cmake -S . -B build && cmake --build build -j4
cd build && sudo make install
```

If you want to remove anole, you can execute `cat install_manifest.txt | sudo xargs rm` in `build/`
Expand Down
2 changes: 1 addition & 1 deletion anole/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace anole
*/
struct Version
{
constexpr static auto literal = "HEAD 0.0.24 2021/02/14";
constexpr static auto literal = "0.0.24 2021/12/12";

constexpr static Size major = 0;
constexpr static Size minor = 0;
Expand Down

0 comments on commit df3ebb5

Please sign in to comment.