From 561784ceee20598bebd78300cc96b826970e04a0 Mon Sep 17 00:00:00 2001 From: Andreas Bigger Date: Sun, 26 Feb 2023 23:26:42 -0700 Subject: [PATCH] fix: version bumps and contributors --- Cargo.lock | 14 +++++++------- README.md | 2 +- huff_cli/Cargo.toml | 4 ++-- huff_cli/README.md | 2 +- huff_codegen/Cargo.toml | 4 ++-- huff_core/Cargo.toml | 4 ++-- huff_js/Cargo.toml | 4 ++-- huff_lexer/Cargo.toml | 6 +++--- huff_parser/Cargo.toml | 4 ++-- huff_utils/Cargo.toml | 4 ++-- huffup/README.md | 4 ++-- 11 files changed, 26 insertions(+), 26 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 279abea2..423f7cb0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -696,7 +696,7 @@ dependencies = [ [[package]] name = "huff_cli" -version = "0.3.0" +version = "0.3.1" dependencies = [ "clap 3.2.23", "ethers-core", @@ -713,7 +713,7 @@ dependencies = [ [[package]] name = "huff_codegen" -version = "0.3.0" +version = "0.3.1" dependencies = [ "ethers-core", "hex", @@ -726,7 +726,7 @@ dependencies = [ [[package]] name = "huff_core" -version = "0.3.0" +version = "0.3.1" dependencies = [ "cfg-if 1.0.0", "criterion", @@ -748,7 +748,7 @@ dependencies = [ [[package]] name = "huff_lexer" -version = "0.3.0" +version = "0.3.1" dependencies = [ "huff_utils", "regex", @@ -757,7 +757,7 @@ dependencies = [ [[package]] name = "huff_parser" -version = "0.3.0" +version = "0.3.1" dependencies = [ "hex", "huff_lexer", @@ -787,7 +787,7 @@ dependencies = [ [[package]] name = "huff_utils" -version = "0.3.0" +version = "0.3.1" dependencies = [ "cfg-if 1.0.0", "codemap-diagnostic", @@ -811,7 +811,7 @@ dependencies = [ [[package]] name = "huffc-js" -version = "0.3.0" +version = "0.3.1" dependencies = [ "huff_core", "huff_utils", diff --git a/README.md b/README.md index 4b49ceea..7487db04 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ sudo yarn global remove huffc To make sure you are running the rust version, you can run `huffc --version` and it should respond with `huff_cli `. If it responds with `2.0.0` that means you are running the Typescript version. ```bash $ huffc --version -huff_cli 0.3.0 +huff_cli 0.3.1 ``` **Alternatively** diff --git a/huff_cli/Cargo.toml b/huff_cli/Cargo.toml index be5b2fdf..d45d7659 100644 --- a/huff_cli/Cargo.toml +++ b/huff_cli/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "huff_cli" -version = "0.3.0" +version = "0.3.1" edition = "2021" -authors = ["asnared", "clabby", "exp.table"] +authors = ["refcell", "clabby", "exp.table", "maddiaa"] readme = "README.md" repository = "https://github.com/huff-language/huff-rs/" license = "MIT OR Apache-2.0" diff --git a/huff_cli/README.md b/huff_cli/README.md index 7c3801c6..18c0f264 100644 --- a/huff_cli/README.md +++ b/huff_cli/README.md @@ -5,7 +5,7 @@ The `huffc` CLI is written using [clap's](https://docs.rs/clap) [derive feature] ## huffc ``` -huffc 0.3.0 +huffc 0.3.1 Huff Language Compiler built in Pure Rust. USAGE: diff --git a/huff_codegen/Cargo.toml b/huff_codegen/Cargo.toml index e214fe05..247801e3 100644 --- a/huff_codegen/Cargo.toml +++ b/huff_codegen/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "huff_codegen" -version = "0.3.0" +version = "0.3.1" edition = "2021" -authors = ["asnared", "clabby", "exp.table"] +authors = ["refcell", "clabby", "exp.table", "maddiaa"] readme = "README.md" repository = "https://github.com/huff-language/huff-rs/" license = "MIT OR Apache-2.0" diff --git a/huff_core/Cargo.toml b/huff_core/Cargo.toml index 6593b34a..e6d8eb0e 100644 --- a/huff_core/Cargo.toml +++ b/huff_core/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "huff_core" -version = "0.3.0" +version = "0.3.1" edition = "2021" -authors = ["asnared", "clabby", "exp.table"] +authors = ["refcell", "clabby", "exp.table", "maddiaa"] readme = "README.md" repository = "https://github.com/huff-language/huff-rs/" license = "MIT OR Apache-2.0" diff --git a/huff_js/Cargo.toml b/huff_js/Cargo.toml index cf147210..e1dbd813 100644 --- a/huff_js/Cargo.toml +++ b/huff_js/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "huffc-js" -version = "0.3.0" -authors = ["asnared", "clabby", "exp.table", "kanewallmann"] +version = "0.3.1" +authors = ["refcell", "clabby", "exp.table", "kanewallmann"] edition = "2021" readme = "README.md" repository = "https://github.com/huff-language/huff-rs/" diff --git a/huff_lexer/Cargo.toml b/huff_lexer/Cargo.toml index 09a1dfa8..5a4594a0 100644 --- a/huff_lexer/Cargo.toml +++ b/huff_lexer/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "huff_lexer" -version = "0.3.0" +version = "0.3.1" edition = "2021" -authors = ["asnared", "clabby", "exp.table"] +authors = ["refcell", "clabby", "exp.table", "maddiaa"] readme = "README.md" repository = "https://github.com/huff-language/huff-rs/" license = "MIT OR Apache-2.0" @@ -12,6 +12,6 @@ Lexical Analysis Crate for the Huff-Language keywords = ["huff", "rust", "evm", "bytecode", "compiler"] [dependencies] -huff_utils = { path = "../huff_utils", version = "0.3.0" } +huff_utils = { path = "../huff_utils", version = "0.3.1" } regex = "1" tracing = "0.1.34" diff --git a/huff_parser/Cargo.toml b/huff_parser/Cargo.toml index 07019c4a..bf447f30 100644 --- a/huff_parser/Cargo.toml +++ b/huff_parser/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "huff_parser" -version = "0.3.0" +version = "0.3.1" edition = "2021" -authors = ["asnared", "clabby", "exp.table"] +authors = ["refcell", "clabby", "exp.table", "maddiaa"] readme = "README.md" repository = "https://github.com/huff-language/huff-rs/" license = "MIT OR Apache-2.0" diff --git a/huff_utils/Cargo.toml b/huff_utils/Cargo.toml index ff1c1f9d..f8e55bed 100644 --- a/huff_utils/Cargo.toml +++ b/huff_utils/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "huff_utils" -version = "0.3.0" +version = "0.3.1" edition = "2021" -authors = ["asnared", "clabby", "exp.table"] +authors = ["refcell", "clabby", "exp.table", "maddiaa"] readme = "README.md" repository = "https://github.com/huff-language/huff-rs/" license = "MIT OR Apache-2.0" diff --git a/huffup/README.md b/huffup/README.md index 6316a679..c7d88263 100644 --- a/huffup/README.md +++ b/huffup/README.md @@ -26,10 +26,10 @@ To install a specific **version** (in this case the `nightly` version): huffup --version nightly ``` -To install a specific **branch** (in this case the `release/0.3.0` branch's latest commit): +To install a specific **branch** (in this case the `release/0.3.1` branch's latest commit): ```sh -huffup --branch release/0.3.0 +huffup --branch release/0.3.1 ``` To install a **fork's main branch** (in this case `abigger87/huff-rs`'s main branch):