Skip to content

Commit 33b60e9

Browse files
authored
Release v3.1.0 (#42)
1 parent a7e1cf2 commit 33b60e9

File tree

11 files changed

+157
-11
lines changed

11 files changed

+157
-11
lines changed

β€Ždocs/README.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Dotenv-linter can [check](/usage/check) / [fix](/usage/fix) / [compare](/usage/c
1717
&nbsp;&nbsp;&nbsp;&nbsp;βœ…&nbsp;<a href="#/checks/lowercase_key">Lowercase key</a><br />
1818
&nbsp;&nbsp;&nbsp;&nbsp;βœ…&nbsp;<a href="#/checks/quote_character">Quote character</a><br />
1919
&nbsp;&nbsp;&nbsp;&nbsp;βœ…&nbsp;<a href="#/checks/space_character">Space character</a><br />
20+
&nbsp;&nbsp;&nbsp;&nbsp;βœ…&nbsp;<a href="#/checks/substitution_key">Substitution Key</a><br />
2021
&nbsp;&nbsp;&nbsp;&nbsp;βœ…&nbsp;<a href="#/checks/trailing_whitespace">Trailing whitespace</a><br />
2122
&nbsp;&nbsp;&nbsp;&nbsp;βœ…&nbsp;<a href="#/checks/unordered_key">Unordered Key</a><br />
2223
</p>

β€Ždocs/_sidebar.mdβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
* [πŸ‘¨β€πŸ’»Installation](installation.md)
33

44
* πŸŽ‰What's new?
5-
* [v3.0.0 (latest)](whats_new/v300.md)
5+
* [v3.1.0 (latest)](whats_new/v310.md)
6+
* [v3.0.0](whats_new/v300.md)
67
* [v2.2.1](whats_new/v221.md)
78
* [v2.2.0](whats_new/v2_2_0.md)
89

β€Ždocs/checks/incorrect_delimiter.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Incorrect delimiter
1+
# Incorrect Delimiter
22

33
Detects if a key does not use an underscore to separate words:
44

β€Ždocs/checks/key_without_value.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Key without value
1+
# Key Without Value
22

33
Detects if a line has a key without a value:
44

β€Ždocs/checks/leading_character.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Leading character
1+
# Leading Character
22

33
Detects if a line starts with an unallowed character (characters from `A` to `Z` and `_` (underscore) are allowed):
44

β€Ždocs/checks/lowercase_key.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Lowercase key
1+
# Lowercase Key
22

33
Detects if a key has lowercase characters:
44

β€Ždocs/checks/quote_character.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Quote character
1+
# Quote Character
22

33
Detects if a value contains quote characters (`'` / `"`) but skips if the value contains whitespaces or newline characters:
44

β€Ždocs/checks/space_character.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Space character
1+
# Space Character
22

33
Detects lines with a whitespace around equal sign character `=`:
44

β€Ždocs/checks/trailing_whitespace.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Trailing whitespace
1+
# Trailing Whitespace
22

33
Detects if a line has a trailing whitespace:
44

β€Ždocs/whats_new/v300.mdβ€Ž

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# What's new in v3.0.0 (latest)?
1+
# What's new in v3.0.0?
22

33
Two and a half months have passed since the last release, and we are ready to present you a new version of `dotenv-linter` β€” v3.0.0 πŸŽ‰
44

@@ -184,7 +184,8 @@ PR: [#348](https://github.com/dotenv-linter/dotenv-linter/pull/348) ([@vbrandl](
184184

185185
### 9. Performance improvement πŸš€
186186

187-
Last but not least, we have improved the performance of the already fast `dotenv-linter`. The maximum start time has decreased from `9.3` ms to `4.3` ms (by more than `50%`) πŸ™€
187+
Last but not least, we have improved the performance of the already fast `dotenv-linter`.<br />
188+
The maximum start time has decreased from `9.3` ms to `4.3` ms (by more than `50%`) πŸ™€
188189

189190
To check this, we made a benchmark using the [hyperfine](https://github.com/sharkdp/hyperfine) utility:
190191

@@ -195,9 +196,11 @@ To check this, we made a benchmark using the [hyperfine](https://github.com/shar
195196

196197
PR: [#350](https://github.com/dotenv-linter/dotenv-linter/pull/350) ([@vbrandl](https://github.com/vbrandl))
197198

198-
These are all the key changes that are included in the new [v3.0.0](https://github.com/dotenv-linter/dotenv-linter/releases/tag/v3.0.0) release.
199+
These are all the key changes that are included in the new [v3.0.0](https://github.com/dotenv-linter/dotenv-linter/releases/tag/v3.0.0) release.<br/>
199200
Thanks to everyone who contributed πŸ™
200201

202+
---
203+
201204
You can support the project πŸ˜‰
202205
* Star on [GitHub](https://github.com/dotenv-linter/dotenv-linter) ⭐️
203206
* Become a sponsor on [GitHub Sponsors](https://github.com/sponsors/dotenv-linter) or [OpenCollective](https://opencollective.com/dotenv-linter) ❀️

0 commit comments

Comments
Β (0)