From 1f4e5063aaafa3b192515a11d9eda6bd3ba1ddf0 Mon Sep 17 00:00:00 2001 From: Phoenix Himself Date: Sun, 15 Sep 2024 22:19:27 +0200 Subject: [PATCH] feat: bump version --- Cargo.toml | 2 +- README.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3fa20a4..bec9d7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "heraclitus-compiler" -version = "1.7.8" +version = "1.8.0" edition = "2021" description = "Compiler frontend for developing great programming languages" license = "MIT" diff --git a/README.md b/README.md index f97b8e8..0b3b710 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,10 @@ let tokens = cc.tokenize()?; # Change log 🚀 +## Version 1.8.0 +### Feature: +- Lexer is now better separated from the compiler thus easier to integrate in other projects like LSP servers + ## Version 1.7.8 ### Fix: - Prevent Logger from panicking when trying to display a region that is out of bounds