From 92ac2966eb6e4b86d1bd36f02084c53dd4bbf02b Mon Sep 17 00:00:00 2001 From: Kampfkarren Date: Mon, 24 Aug 2020 06:37:37 -0700 Subject: [PATCH] 0.8.0 --- CHANGELOG.md | 3 ++- Cargo.lock | 6 +++--- selene-lib/Cargo.toml | 2 +- selene/Cargo.toml | 4 ++-- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a5ad6dd..fb4c5384 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased + +## [0.8.0] - 2020-08-24 ### Added - Added support for `os.clock`. - Added `RaycastParams.new`. @@ -12,7 +14,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ### Fixed - Fixed `coroutine.yield` only accepting coroutines as a first argument. - ## [0.7.0] - 2020-06-08 ### Added - Added support for `continue`, compound assignments (`+`), intersectional types, and numbers with underscores under the `roblox` feature flag. diff --git a/Cargo.lock b/Cargo.lock index a7bd6286..a383c492 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1204,7 +1204,7 @@ dependencies = [ [[package]] name = "selene" -version = "0.7.0" +version = "0.8.0" dependencies = [ "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1216,7 +1216,7 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "reqwest 0.9.22 (registry+https://github.com/rust-lang/crates.io-index)", - "selene-lib 0.7.0", + "selene-lib 0.8.0", "serde 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", "structopt 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1227,7 +1227,7 @@ dependencies = [ [[package]] name = "selene-lib" -version = "0.7.0" +version = "0.8.0" dependencies = [ "codespan 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", "codespan-reporting 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/selene-lib/Cargo.toml b/selene-lib/Cargo.toml index 7620964c..16b94e05 100644 --- a/selene-lib/Cargo.toml +++ b/selene-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "selene-lib" -version = "0.7.0" +version = "0.8.0" license = "MPL-2.0" authors = ["Kampfkarren "] description = "A library for linting Lua code. You probably want selene instead." diff --git a/selene/Cargo.toml b/selene/Cargo.toml index 39f4d816..71c41cab 100644 --- a/selene/Cargo.toml +++ b/selene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "selene" -version = "0.7.0" +version = "0.8.0" license = "MPL-2.0" authors = ["Kampfkarren "] description = "A blazing-fast modern Lua linter written in Rust" @@ -21,7 +21,7 @@ lazy_static = "1.4" glob = "0.3" num_cpus = "1.10" reqwest = { version = "0.9", optional = true } -selene-lib = { path = "../selene-lib", version = "0.7.0", default-features = false } +selene-lib = { path = "../selene-lib", version = "0.8.0", default-features = false } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" structopt = "0.3"