Skip to content

Commit

Permalink
Release v2.2.0 (#316)
Browse files Browse the repository at this point in the history
Signed-off-by: Mikhail Grachev <work@mgrachev.com>
  • Loading branch information
mgrachev committed Oct 12, 2020
1 parent 6b44f73 commit 0c89d0f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]
### 🚀 Added

### 🔧 Changed

## [v2.2.0] - 2020-10-12
### 🚀 Added
- Add integration test for autofix [#309](https://github.com/dotenv-linter/dotenv-linter/pull/309) ([@evgeniy-r](https://github.com/evgeniy-r))
- Add action-misspell [#304](https://github.com/dotenv-linter/dotenv-linter/pull/304) ([@PurpleMyst](https://github.com/PurpleMyst))
- Add action-shellcheck [#303](https://github.com/dotenv-linter/dotenv-linter/pull/303) ([@amd-9](https://github.com/amd-9))
Expand Down Expand Up @@ -159,6 +164,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Replace field warning with template for all check structs [#26](https://github.com/dotenv-linter/dotenv-linter/pull/26) ([@mgrachev](https://github.com/mgrachev))
- Prepare a template for easy adding new checks [#14](https://github.com/dotenv-linter/dotenv-linter/pull/14) ([@mgrachev](https://github.com/mgrachev))

[v2.2.0]: https://github.com/dotenv-linter/dotenv-linter/releases/tag/v2.2.0
[v2.1.0]: https://github.com/dotenv-linter/dotenv-linter/releases/tag/v2.1.0
[v2.0.0]: https://github.com/dotenv-linter/dotenv-linter/releases/tag/v2.0.0
[v1.2.0]: https://github.com/dotenv-linter/dotenv-linter/releases/tag/v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dotenv-linter"
version = "2.1.0"
version = "2.2.0"
authors = ["Mikhail Grachev <work@mgrachev.com>"]
edition = "2018"
description = "Lightning-fast linter for .env files"
Expand All @@ -21,7 +21,7 @@ assert_cmd = "0.12.0"
tempfile = "3.1.0"

[profile.release]
opt-level = 'z' # Optimize for size.
opt-level = 'z' # Optimize for size
lto = true
codegen-units = 1
panic = 'abort'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ $ dotenv-linter
Found 3 problems
```

It can also fix found warnings. You should use the argument `--fix` (or its short version `-f`) for this (will be available in [v2.2.0](https://github.com/dotenv-linter/dotenv-linter/issues/238)):
It can also fix found warnings. You should use the argument `--fix` (or its short version `-f`) for this:

```shell script
$ dotenv-linter -f
Expand Down

0 comments on commit 0c89d0f

Please sign in to comment.