Skip to content

Commit

Permalink
chore: Bump version to 1.66.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aryx committed Mar 25, 2024
1 parent 1689e8a commit 58102be
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 14 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@

<!-- insertion point -->

## [1.66.1](https://github.com/returntocorp/semgrep/releases/tag/v1.66.1) - 2024-03-25


### Fixed


- Autofix on variable definitions should now handle the semicolon
in Rust, Cairo, Solidity, Dart. (autofix_vardef)
- [IMPORTANT] we restored bash, jq, and curl in our semgrep docker image as some
users were relying on it. We might remove them in the futur but in the
mean time we restored the packages and if we remove them we will announce
it more loudly. We also created a new page giving more information
about our policy for our docker images:
https://semgrep.dev/docs/semgrep-ci/packages-in-semgrep-docker/ (docker_bash)
- Fixed autofix application on lines containing multi-byte characters. (multibyte)


## [1.66.0](https://github.com/returntocorp/semgrep/releases/tag/v1.66.0) - 2024-03-19


Expand Down
2 changes: 0 additions & 2 deletions changelog.d/autofix_vardef.fixed

This file was deleted.

6 changes: 0 additions & 6 deletions changelog.d/docker_bash.fixed

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/multibyte.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion cli/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def find_executable(env_name, exec_name):

setuptools.setup(
name="semgrep",
version="1.66.0",
version="1.66.1",
author="Semgrep Inc.",
author_email="support@semgrep.com",
description="Lightweight static analysis for many languages. Find bug variants with patterns that look like source code.",
Expand Down
2 changes: 1 addition & 1 deletion cli/src/semgrep/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "1.66.0"
__VERSION__ = "1.66.1"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="semgrep_pre_commit_package",
version="1.66.0",
install_requires=["semgrep==1.66.0"],
version="1.66.1",
install_requires=["semgrep==1.66.1"],
packages=[],
)
2 changes: 1 addition & 1 deletion src/core/Version.ml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
Automatically modified by scripts/release/bump.
*)
let version = "1.66.0"
let version = "1.66.1"

0 comments on commit 58102be

Please sign in to comment.