Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.41.1 #2629

Merged
merged 1 commit into from
Feb 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/build-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ jobs:
with:
name: semgrep-osx
path: artifacts
- name: Remove pcre dynamic lib
run: rm /usr/local/opt/pcre/lib/libpcre.1.dylib
- name: Test build artifacts
run: |
chmod +x ./artifacts/semgrep-core
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [0.41.1](https://github.com/returntocorp/semgrep/releases/tag/v0.41.1) - 2021-02-24

### Fixed
- Statically link pcre in semgrep-core for MacOS releases

## [0.41.0](https://github.com/returntocorp/semgrep/releases/tag/v0.41.0) - 2021-02-24

### Added
Expand Down
5 changes: 5 additions & 0 deletions scripts/osx-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@ git submodule update --init --recursive --depth 1

eval "$(opam env)"

# Remove pcre dynamically linked to force MacOS to use static
# This needs to be done before make setup since it is used there
rm /usr/local/opt/pcre/lib/libpcre.1.dylib

make setup
make config

# Remove dynamically linked libraries to force MacOS to use static ones
# This needs to be done after make setup but before make build-*
rm /usr/local/lib/libtree-sitter.0.0.dylib
rm /usr/local/lib/libtree-sitter.dylib

Expand Down
2 changes: 1 addition & 1 deletion semgrep/semgrep/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__VERSION__ = "0.41.0"
__VERSION__ = "0.41.1"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
setup(
name="semgrep_pre_commit_package",
version="0.0.0",
install_requires=["semgrep==0.41.0"],
install_requires=["semgrep==0.41.1"],
)