Skip to content

Commit

Permalink
0.19.0 [release]
Browse files Browse the repository at this point in the history
  • Loading branch information
Kampfkarren committed Jun 23, 2022
1 parent 3568058 commit 0d81c17
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 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 selene-lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "selene-lib"
version = "0.18.2"
version = "0.19.0"
license = "MPL-2.0"
authors = ["Kampfkarren <[email protected]>"]
description = "A library for linting Lua code. You probably want selene instead."
Expand Down
4 changes: 2 additions & 2 deletions selene/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "selene"
version = "0.18.2"
version = "0.19.0"
license = "MPL-2.0"
authors = ["Kampfkarren <[email protected]>"]
description = "A blazing-fast modern Lua linter written in Rust"
Expand All @@ -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"
Expand Down

0 comments on commit 0d81c17

Please sign in to comment.