Skip to content

Commit

Permalink
fix: typos and missing PR link (#655)
Browse files Browse the repository at this point in the history
  • Loading branch information
pront authored Jan 24, 2024
1 parent 6dbc1a7 commit b376d2f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@

- Introduced an unused expression checker. It's designed to detect and report unused expressions,
helping users to clean up and optimize their VRL scripts. Note that this checker will not catch everything,
but it does aim to eliminate false positives. For example, shadowed variables are not reported as unused.
but it does aim to eliminate false positives. For example, shadowed variables are not reported as unused.
(https://github.com/vectordotdev/vrl/pull/622)
- Add a `replace_with` function that is similar to `replace` but takes a closure instead of a
replacement string. (https://github.com/vectordotdev/vrl/pull/628)

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.

2 changes: 1 addition & 1 deletion scripts/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def publish_vrl(version):

def assert_no_changelog_fragments():
entries = os.listdir(CHANGELOG_DIR)
error = f"{CHANGELOG_DIR} should only contain a README.md file. Did you run ./scripts/generate_changelog.py?"
error = f"{CHANGELOG_DIR} should only contain a README.md file. Did you run ./scripts/generate_release_changelog.sh?"
assert len(entries) == 1, error
assert entries[0] == "README.md", error

Expand Down

0 comments on commit b376d2f

Please sign in to comment.