Skip to content

Commit

Permalink
chore: Bump version to 0.102.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IagoAbal committed Jun 30, 2022
1 parent b0634fa commit a8fb411
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,8 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html

## Unreleased

## [0.102.0](https://github.com/returntocorp/semgrep/releases/tag/v0.102.0) - 2022-06-30

### Added

- Scala: ellipsis are now allowed in for loop headers, so you can write patterns
Expand Down
2 changes: 1 addition & 1 deletion cli/setup.py
Expand Up @@ -136,7 +136,7 @@ def find_executable(env_name, exec_name):

setuptools.setup(
name="semgrep",
version="0.101.1",
version="0.102.0",
author="Return To Corporation",
author_email="support@r2c.dev",
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
@@ -1 +1 @@
__VERSION__ = "0.101.1"
__VERSION__ = "0.102.0"
2 changes: 1 addition & 1 deletion semgrep-core/src/cli/version.ml
Expand Up @@ -3,4 +3,4 @@
Automatically modified by scripts/release/bump.
*)
let version = "0.101.1"
let version = "0.102.0"
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -5,7 +5,7 @@

setup(
name="semgrep_pre_commit_package",
version="0.101.1",
install_requires=["semgrep==0.101.1"],
version="0.102.0",
install_requires=["semgrep==0.102.0"],
packages=[],
)

0 comments on commit a8fb411

Please sign in to comment.