Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kampfkarren committed Apr 22, 2020
1 parent 8fa3ddb commit 5de44ae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## Unreleased

## [0.6.0] - 2020-04-21
### Added
- Added timestamp to generated Roblox standard library
- Added `debug.getlocal`, `math.cosh`, and `string.reverse`
Expand All @@ -19,6 +20,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Changed
- Changed the argument display type of `io.input` and `io.output` into `file`
- Updated to version 0.5.0 of full-moon, which should result in speedier parsing

## [0.5.3] - 2020-01-27
### Added
Expand Down
6 changes: 3 additions & 3 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.5.3"
version = "0.6.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.5.3"
version = "0.6.0"
license = "MPL-2.0"
authors = ["Kampfkarren <[email protected]>"]
description = "A blazing-fast modern Lua linter written in Rust"
Expand All @@ -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.5.3", default-features = false }
selene-lib = { path = "../selene-lib", version = "0.6.0", default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
structopt = "0.3"
Expand Down

0 comments on commit 5de44ae

Please sign in to comment.