From 0d81c17c6958ef90f1cc8854533e98047d0e7be4 Mon Sep 17 00:00:00 2001 From: Kampfkarren Date: Wed, 22 Jun 2022 17:20:14 -0700 Subject: [PATCH] 0.19.0 [release] --- CHANGELOG.md | 2 +- Cargo.lock | 4 ++-- selene-lib/Cargo.toml | 2 +- selene/Cargo.toml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65028cd8..61f11fe5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [0.19.0] - 2022-06-22 ### Added - `table.insert(x)` no longer counts as a read to `x`, which allows selene to alert you that you are only assigning to it. - This is done through a new standard library field for arguments called `observes`. This takes 3 values: "read-write" (the default), signifying a potential read and write, "read", signifying only a read, and "write", signifying only a write. Only "write" has meaning at this time. diff --git a/Cargo.lock b/Cargo.lock index 483f032e..746e892a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -856,7 +856,7 @@ dependencies = [ [[package]] name = "selene" -version = "0.18.2" +version = "0.19.0" dependencies = [ "atty", "cfg-if 0.1.10", @@ -884,7 +884,7 @@ dependencies = [ [[package]] name = "selene-lib" -version = "0.18.2" +version = "0.19.0" dependencies = [ "codespan", "codespan-reporting", diff --git a/selene-lib/Cargo.toml b/selene-lib/Cargo.toml index 836d5d78..db55b3b8 100644 --- a/selene-lib/Cargo.toml +++ b/selene-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "selene-lib" -version = "0.18.2" +version = "0.19.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 14f408c7..17239c53 100644 --- a/selene/Cargo.toml +++ b/selene/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "selene" -version = "0.18.2" +version = "0.19.0" license = "MPL-2.0" authors = ["Kampfkarren "] description = "A blazing-fast modern Lua linter written in Rust" @@ -23,7 +23,7 @@ glob = "0.3" lazy_static = "1.4" num_cpus = "1.10" profiling = { version = "1.0.6" } -selene-lib = { path = "../selene-lib", version = "=0.18.2", default-features = false } +selene-lib = { path = "../selene-lib", version = "=0.19.0", default-features = false } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" serde_yaml = "0.8.24"