Skip to content

Commit 38327e5

Browse files
pillow added for macOS build
1 parent 8f1493f commit 38327e5

5 files changed

Lines changed: 15 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130
run: |
131131
python -m venv venv
132132
./venv/bin/python -m pip install --upgrade pip
133-
./venv/bin/python -m pip install pyinstaller
133+
./venv/bin/python -m pip install pyinstaller Pillow
134134
./venv/bin/python -m pip install -r requirements.txt
135135
136136
- name: Build
@@ -172,7 +172,7 @@ jobs:
172172
run: |
173173
python -m venv venv
174174
./venv/bin/python -m pip install --upgrade pip
175-
./venv/bin/python -m pip install pyinstaller
175+
./venv/bin/python -m pip install pyinstaller Pillow
176176
./venv/bin/python -m pip install -r requirements.txt
177177
178178
- name: Build

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ This document records all notable changes to [nessus file analyzer (NFA) by Limb
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.12.3] - 2026-01-22
9+
10+
### Fixed
11+
12+
- Pillow added to build pipeline for macOS.
13+
814
## [0.12.2] - 2026-01-22
915

1016
### Fixed
@@ -250,6 +256,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
250256

251257
- Initial release
252258

259+
[0.12.3]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.12.2...v0.12.3
253260
[0.12.2]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.12.1...v0.12.2
254261
[0.12.1]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.12.0...v0.12.1
255262
[0.12.0]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.11.0...v0.12.0

nessus_file_analyzer/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"effortless analysis."
4646
)
4747
__uri__ = "https://limberduck.org"
48-
__version__ = "0.12.2"
48+
__version__ = "0.12.3"
4949
__release_date__ = "2026.01.22"
5050
__author__ = "Damian Krawczyk"
5151
__email__ = "damian.krawczyk@limberduck.org"

nessus_file_analyzer/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.12.2"
1+
__version__ = "0.12.3"

version.rc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
VSVersionInfo(
22
ffi=FixedFileInfo(
3-
filevers=(0, 12, 2, 0),
4-
prodvers=(0, 12, 2, 0),
3+
filevers=(0, 12, 3, 0),
4+
prodvers=(0, 12, 3, 0),
55
mask=0x3f,
66
flags=0x0,
77
OS=0x40004,
@@ -16,12 +16,12 @@ VSVersionInfo(
1616
u'040904B0',
1717
[StringStruct(u'CompanyName', u'LimberDuck'),
1818
StringStruct(u'FileDescription', u'nessus file analyzer (NFA) by LimberDuck. Visit https://limberduck.org'),
19-
StringStruct(u'FileVersion', u'0.12.2.0'),
19+
StringStruct(u'FileVersion', u'0.12.3.0'),
2020
StringStruct(u'InternalName', u'nessus-file-analyzer'),
2121
StringStruct(u'LegalCopyright', u'\xa9 Damian Krawczyk.'),
2222
StringStruct(u'OriginalFilename', u'LimberDuck NFA.exe'),
2323
StringStruct(u'ProductName', u'nessus file analyzer (NFA)'),
24-
StringStruct(u'ProductVersion', u'0.12.2.0')])
24+
StringStruct(u'ProductVersion', u'0.12.3.0')])
2525
]),
2626
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
2727
]

0 commit comments

Comments
 (0)