Skip to content

Commit

Permalink
Merge pull request #540 from protofire/develop
Browse files Browse the repository at this point in the history
Release 4.1.1 develop into master
  • Loading branch information
dbale-altoros authored Jan 8, 2024
2 parents 301caa7 + e9342aa commit 2738047
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/DOCKER.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_ACCESS_TOKEN }}

- name: Build Docker image
run: docker build . --file docker/Dockerfile --tag ${{ inputs.image_name }}:${{ inputs.version }} --build-arg VERSION=${{ inputs.version }}
run: docker build . --file docker/Dockerfile --tag ${{ inputs.image_name }}:latest --build-arg VERSION=${{ inputs.version }}

- name: Push Docker image to Docker Hub
run: docker push ${{ inputs.image_name }}:${{ inputs.version }}
run: docker push ${{ inputs.image_name }}:latest
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
## [4.1.0] - 2024-01- ????????????????????
## [4.1.1] - 2024-01-08

### Fixed
- Fix changelog typos



## [4.1.0] - 2024-01-08

### Updated
- Included `Sarif` formatter [#530](https://github.com/protofire/solhint/pull/530) (Thanks to [@eshaan7](https://github.com/eshaan7))
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<p align="center">
<a href="https://protofire.io/projects/solhint"><img src="solhint.png"></a>
<a href="https://protofire.io/projects/solhint" target="_blank"><img src="solhint.png"></a>
</p>
<p align="center">
By <a href="https://protofire.io/">Protofire</a>
By <a href="https://protofire.io/" target="_blank">Protofire</a>
</p>

[![](https://img.shields.io/badge/Solhint%20Website-cyan)](https://protofire.io/projects/solhint)
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM node:20-alpine
LABEL maintainer="diego.bale@protofire.io"
ENV VERSION=4.1.0
ENV VERSION=4.1.1

RUN npm install -g solhint@"$VERSION"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "solhint",
"version": "4.1.0",
"version": "4.1.1",
"description": "Solidity Code Linter",
"main": "lib/index.js",
"keywords": [
Expand Down

0 comments on commit 2738047

Please sign in to comment.