From 5decb006b0bcd294d7e7bed1137b63bdb9bc39fb Mon Sep 17 00:00:00 2001 From: Max Mindlin Date: Sun, 16 Jun 2024 15:27:24 -0400 Subject: [PATCH] 0.2.0 --- Cargo.lock | 8 ++++---- Cargo.toml | 10 +++++++--- scout-interpreter/Cargo.toml | 2 +- scout-lexer/Cargo.toml | 2 +- scout-parser/Cargo.toml | 2 +- 5 files changed, 14 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8cdb399..e9da644 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1528,7 +1528,7 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scout" -version = "0.1.0" +version = "0.2.0" dependencies = [ "clap", "colored", @@ -1544,7 +1544,7 @@ dependencies = [ [[package]] name = "scout-interpreter" -version = "0.1.0" +version = "0.2.0" dependencies = [ "fantoccini", "futures", @@ -1558,14 +1558,14 @@ dependencies = [ [[package]] name = "scout-lexer" -version = "0.1.0" +version = "0.2.0" dependencies = [ "test-case", ] [[package]] name = "scout-parser" -version = "0.1.0" +version = "0.2.0" dependencies = [ "scout-lexer", "test-case", diff --git a/Cargo.toml b/Cargo.toml index 58ff771..20fc0dc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,12 @@ ci = "github" # The installers to generate for each app installers = ["shell"] # Target platforms to build apps for (Rust target-triple syntax) -targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"] +targets = [ + "aarch64-apple-darwin", + "x86_64-apple-darwin", + "x86_64-unknown-linux-gnu", + "x86_64-pc-windows-msvc", +] # Publish jobs to run in CI pr-run-mode = "plan" # Whether to install an updater program @@ -18,7 +23,7 @@ install-updater = false [package] name = "scout" -version = "0.1.0" +version = "0.2.0" edition = "2021" repository = "https://github.com/maxmindlin/scout-lang" @@ -40,4 +45,3 @@ clap = { version = "4.5.7", features = ["derive"] } [profile.dist] inherits = "release" lto = "thin" - diff --git a/scout-interpreter/Cargo.toml b/scout-interpreter/Cargo.toml index 096c122..072c013 100644 --- a/scout-interpreter/Cargo.toml +++ b/scout-interpreter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scout-interpreter" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/scout-lexer/Cargo.toml b/scout-lexer/Cargo.toml index 04108da..b210bdd 100644 --- a/scout-lexer/Cargo.toml +++ b/scout-lexer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scout-lexer" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/scout-parser/Cargo.toml b/scout-parser/Cargo.toml index 4ac18e4..ab09b89 100644 --- a/scout-parser/Cargo.toml +++ b/scout-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scout-parser" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html