Skip to content

Commit 2738047

Browse files
Merge pull request #540 from protofire/develop
Release 4.1.1 develop into master
2 parents 301caa7 + e9342aa commit 2738047

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

.github/workflows/DOCKER.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_ACCESS_TOKEN }}
2424

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

2828
- name: Push Docker image to Docker Hub
29-
run: docker push ${{ inputs.image_name }}:${{ inputs.version }}
29+
run: docker push ${{ inputs.image_name }}:latest

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
## [4.1.0] - 2024-01- ????????????????????
1+
## [4.1.1] - 2024-01-08
2+
3+
### Fixed
4+
- Fix changelog typos
5+
6+
7+
8+
## [4.1.0] - 2024-01-08
29

310
### Updated
411
- Included `Sarif` formatter [#530](https://github.com/protofire/solhint/pull/530) (Thanks to [@eshaan7](https://github.com/eshaan7))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<p align="center">
2-
<a href="https://protofire.io/projects/solhint"><img src="solhint.png"></a>
2+
<a href="https://protofire.io/projects/solhint" target="_blank"><img src="solhint.png"></a>
33
</p>
44
<p align="center">
5-
By <a href="https://protofire.io/">Protofire</a>
5+
By <a href="https://protofire.io/" target="_blank">Protofire</a>
66
</p>
77

88
[![](https://img.shields.io/badge/Solhint%20Website-cyan)](https://protofire.io/projects/solhint)

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM node:20-alpine
22
LABEL maintainer="diego.bale@protofire.io"
3-
ENV VERSION=4.1.0
3+
ENV VERSION=4.1.1
44

55
RUN npm install -g solhint@"$VERSION"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "solhint",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
44
"description": "Solidity Code Linter",
55
"main": "lib/index.js",
66
"keywords": [

0 commit comments

Comments
 (0)