Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #255 from huff-language/stage
Browse files Browse the repository at this point in the history
Fix: version bumps and contributors
  • Loading branch information
refcell committed Feb 27, 2023
2 parents e140668 + 561784c commit 94c34e4
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 26 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <version>`. 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**
Expand Down
4 changes: 2 additions & 2 deletions huff_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion huff_cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions huff_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions huff_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions huff_js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down
6 changes: 3 additions & 3 deletions huff_lexer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
4 changes: 2 additions & 2 deletions huff_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions huff_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions huffup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 94c34e4

Please sign in to comment.