Skip to content

Commit

Permalink
Release v1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejKastak committed Mar 30, 2024
1 parent f5eb31d commit 7a98a89
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 80 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,14 @@
# Changelog
All notable changes to this project will be documented in this file.

# 1.4.2 (2024-03-30)

* fix: Handle the case where samples_dir has no value
* Changed security notice
* chore(deps): Update pygls to v1.3.0
* chore(deps): Update black to v24.3.0
* chore(deps): Bump semver from 5.7.1 to 5.7.2 in /editors/vscode

# 1.4.1 (2024-01-11)

* chore: Expand python compatibility to ^3.8
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Expand Up @@ -4,7 +4,7 @@
"description": "A Visual Studio Code extension for YARA based on YLS (Yara Language Server).",
"author": "Matej Kastak",
"license": "MIT",
"version": "1.4.1",
"version": "1.4.2",
"repository": {
"type": "git",
"url": "https://github.com/avast/yls"
Expand Down
105 changes: 31 additions & 74 deletions plugins/yls-yara/poetry.lock

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

4 changes: 2 additions & 2 deletions plugins/yls-yara/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "yls-yara"
version = "1.4.1"
version = "1.4.2"
description = "YLS plugin adding linting using yara-python."
authors = ["Matej Kastak <matej.kastak@avast.com>"]
maintainers = ["Matej Kašťák <matej.kastak@avast.com>"]
Expand All @@ -11,7 +11,7 @@ include = ["py.typed", "LICENSE"]
[tool.poetry.dependencies]
python = "^3.8"
yara-python = "^4.2.0"
yls = "^1.4.1"
yls = "^1.4.2"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "yls"
version = "1.4.1"
version = "1.4.2"
description = "YARA Language Server"
authors = ["Matej Kašťák <matej.kastak@avast.com>"]
maintainers = ["Matej Kašťák <matej.kastak@avast.com>"]
Expand Down
2 changes: 1 addition & 1 deletion pytest-yls/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-yls"
version = "1.4.1"
version = "1.4.2"
description = "Pytest plugin to test the YLS as a whole."
authors = ["Matej Kastak <matej.kastak@avast.com>"]
maintainers = ["Matej Kašťák <matej.kastak@avast.com>"]
Expand Down
2 changes: 1 addition & 1 deletion yls/version.py
@@ -1 +1 @@
__version__ = "1.4.1"
__version__ = "1.4.2"

0 comments on commit 7a98a89

Please sign in to comment.