From bab7b8282f63036eb21de0bbcd849944d57c20ec Mon Sep 17 00:00:00 2001 From: Juan Villacorta Date: Fri, 9 Dec 2022 17:06:39 -0400 Subject: [PATCH] Release 0.0.4-dev palacinke@0.0.4-dev pk_compiler@0.0.4-dev pk_lexer@0.0.4-dev pk_parser@0.0.4-dev pk_vm@0.0.4-dev Generated by cargo-workspaces --- core/compiler/Cargo.toml | 4 ++-- core/lexer/Cargo.toml | 2 +- core/parser/Cargo.toml | 4 ++-- core/vm/Cargo.toml | 4 ++-- palacinke/Cargo.toml | 8 ++++---- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/core/compiler/Cargo.toml b/core/compiler/Cargo.toml index ffb3b85..1840f56 100644 --- a/core/compiler/Cargo.toml +++ b/core/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pk_compiler" -version = "0.0.3-dev.0" +version = "0.0.4-dev" edition = "2021" repository = "https://github.com/juanvillacortac/palacinke-lang" description = "The Palacinke lang bytecode compiler" @@ -11,4 +11,4 @@ authors = ["juanvillacortac@gmail.com"] [dependencies] bytecoding = "0.1.0" -pk_parser = { version = "0.0.3-dev.0", path = "../parser" } +pk_parser = { version = "0.0.4-dev", path = "../parser" } diff --git a/core/lexer/Cargo.toml b/core/lexer/Cargo.toml index bc89447..03e8679 100644 --- a/core/lexer/Cargo.toml +++ b/core/lexer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pk_lexer" -version = "0.0.3-dev.0" +version = "0.0.4-dev" edition = "2021" repository = "https://github.com/juanvillacortac/palacinke-lang" description = "The Palacinke lang lexer" diff --git a/core/parser/Cargo.toml b/core/parser/Cargo.toml index 6b7f001..af8cab0 100644 --- a/core/parser/Cargo.toml +++ b/core/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pk_parser" -version = "0.0.3-dev.0" +version = "0.0.4-dev" edition = "2021" repository = "https://github.com/juanvillacortac/palacinke-lang" description = "The Palacinke lang parser" @@ -10,4 +10,4 @@ authors = ["juanvillacortac@gmail.com"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -pk_lexer = { version = "0.0.3-dev.0", path = "../lexer" } +pk_lexer = { version = "0.0.4-dev", path = "../lexer" } diff --git a/core/vm/Cargo.toml b/core/vm/Cargo.toml index 7c9b379..6c8cae5 100644 --- a/core/vm/Cargo.toml +++ b/core/vm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pk_vm" -version = "0.0.3-dev.0" +version = "0.0.4-dev" edition = "2021" repository = "https://github.com/juanvillacortac/palacinke-lang" description = "The Palacinke lang bytecode virtual machine" @@ -10,4 +10,4 @@ authors = ["juanvillacortac@gmail.com"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -pk_compiler = { version = "0.0.3-dev.0", path = "../compiler" } +pk_compiler = { version = "0.0.4-dev", path = "../compiler" } diff --git a/palacinke/Cargo.toml b/palacinke/Cargo.toml index 53a4e76..2f54635 100644 --- a/palacinke/Cargo.toml +++ b/palacinke/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "palacinke" -version = "0.0.3-dev.0" +version = "0.0.4-dev" edition = "2021" repository = "https://github.com/juanvillacortac/palacinke-lang" description = "Palacinke: the useless scripting lang" @@ -16,8 +16,8 @@ path = "src/bin/palacinke.rs" [dependencies] clap = { version = "4.0.26", features = ["derive"] } colored = "2.0.0" -pk_compiler = { version = "0.0.3-dev.0", path = "../core/compiler" } -pk_parser = { version = "0.0.3-dev.0", path = "../core/parser" } -pk_vm = { version = "0.0.3-dev.0", path = "../core/vm" } +pk_compiler = { version = "0.0.4-dev", path = "../core/compiler" } +pk_parser = { version = "0.0.4-dev", path = "../core/parser" } +pk_vm = { version = "0.0.4-dev", path = "../core/vm" } platform-dirs = "0.3.0" rustyline = "10.0.0"