From c1dbfcb994777e17d5d28a42fc660105be9b4bb9 Mon Sep 17 00:00:00 2001 From: Umut Date: Sun, 10 Nov 2024 11:26:39 +0300 Subject: [PATCH] v0.4.0 --- Cargo.toml | 2 +- README.md | 2 +- bindings/typescript/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ca897b6..b6c1a8e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "dotlr" description = "An LR(1) parser generator and visualizer created for educational purposes." categories = ["algorithms", "parsing"] keywords = ["educational", "lalr-parsing", "lr-parsing", "parser-generator"] -version = "0.3.0" +version = "0.4.0" edition = "2021" license = "MIT OR Apache-2.0" authors = [ diff --git a/README.md b/README.md index 1e02a74..8c81524 100644 --- a/README.md +++ b/README.md @@ -267,7 +267,7 @@ Yes, you can depend on the `dotlr` crate from [crates.io](https://crates.io/crat Paste the following to your `dependencies` section of your `Cargo.toml`: ```toml -dotlr = { version = "0.3", default-features = false } +dotlr = { version = "0.4", default-features = false } ``` ### Example diff --git a/bindings/typescript/package.json b/bindings/typescript/package.json index e6fc1ba..da23c14 100644 --- a/bindings/typescript/package.json +++ b/bindings/typescript/package.json @@ -9,7 +9,7 @@ "parser-generator" ], "license": "MIT OR Apache-2.0", - "version": "0.3.0", + "version": "0.4.0", "main": "dist/index.js", "exports": { ".": "./dist/index.js",