Skip to content

Commit

Permalink
Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MatejKastak committed Nov 3, 2023
1 parent fd35b0c commit 4c3712c
Show file tree
Hide file tree
Showing 7 changed files with 88 additions and 32 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog
All notable changes to this project will be documented in this file.

# 1.4.0 (2023-11-03)

* feat(debugger): Select hash for context and SHA1 & MD5 (#137)
* feat(debugger): Enable debug hovers in strings section (#138)
* feat(debugger): Normalize the `samples_dir` path (#139)
* fix(syntax): Incorrect syntax on regexp end
* fix(utils): Return range for first line on exception in range_from_line
* chore(deps): Update pygls to v1.1.2
* chore(deps): Remove unused bandit dependency

# 1.3.4 (2023-06-21)

* chore(deps): Update yaramod to v3.20.1
Expand Down
2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
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.3.4",
"version": "1.4.0",
"repository": {
"type": "git",
"url": "https://github.com/avast/yls"
Expand Down
98 changes: 72 additions & 26 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "yls-yara"
version = "1.3.4"
version = "1.4.0"
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,<3.12"
yara-python = "^4.2.0"
yls = "^1.3.4"
yls = "^1.4.0"

[tool.poetry.group.dev.dependencies]
pytest = "^7.2.2"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "yls"
version = "1.3.4"
version = "1.4.0"
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytest-yls"
version = "1.3.4"
version = "1.4.0"
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.4"
__version__ = "1.4.0"

0 comments on commit 4c3712c

Please sign in to comment.