diff --git a/CHANGELOG.md b/CHANGELOG.md index 93ab426..c06615f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [unreleased] +## [0.8.0] - 2021-11-09 + ### Added - `VCALL`, `VCALL_OBJ`, `VCALL_SUPER`, `VCALL_SUPER_OBJ` as a convenient syntax sugar to call virtual functions. diff --git a/README.md b/README.md index ad71459..ecd3a65 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ perim = 30 ## Installation - 1. Download Interface99 and [Metalang99] (minimum supported version -- [1.10.0](https://github.com/Hirrolot/metalang99/releases/tag/v1.10.0)). + 1. Download Interface99 and [Metalang99] (minimum supported version -- [1.12.0](https://github.com/Hirrolot/metalang99/releases/tag/v1.12.0)). 2. Add `interface99` and `metalang99/include` to your include paths. 3. `#include ` beforehand. diff --git a/interface99.h b/interface99.h index 616a5f8..2fb84d6 100644 --- a/interface99.h +++ b/interface99.h @@ -80,7 +80,7 @@ SOFTWARE. #define VSELF99(T) T *restrict self = (T * restrict)(iface99_self) #define IFACE99_MAJOR 0 -#define IFACE99_MINOR 7 +#define IFACE99_MINOR 8 #define IFACE99_PATCH 0 // } (Public stuff)