We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f1493f commit 38327e5Copy full SHA for 38327e5
5 files changed
.github/workflows/release.yml
@@ -130,7 +130,7 @@ jobs:
130
run: |
131
python -m venv venv
132
./venv/bin/python -m pip install --upgrade pip
133
- ./venv/bin/python -m pip install pyinstaller
+ ./venv/bin/python -m pip install pyinstaller Pillow
134
./venv/bin/python -m pip install -r requirements.txt
135
136
- name: Build
@@ -172,7 +172,7 @@ jobs:
172
173
174
175
176
177
178
CHANGELOG.md
@@ -5,6 +5,12 @@ This document records all notable changes to [nessus file analyzer (NFA) by Limb
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
8
+## [0.12.3] - 2026-01-22
9
+
10
+### Fixed
11
12
+- Pillow added to build pipeline for macOS.
13
14
## [0.12.2] - 2026-01-22
15
16
### Fixed
@@ -250,6 +256,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
250
256
251
257
- Initial release
252
258
259
+[0.12.3]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.12.2...v0.12.3
253
260
[0.12.2]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.12.1...v0.12.2
254
261
[0.12.1]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.12.0...v0.12.1
255
262
[0.12.0]: https://github.com/LimberDuck/nessus-file-analyzer/compare/v0.11.0...v0.12.0
nessus_file_analyzer/__about__.py
@@ -45,7 +45,7 @@
45
"effortless analysis."
46
)
47
__uri__ = "https://limberduck.org"
48
-__version__ = "0.12.2"
+__version__ = "0.12.3"
49
__release_date__ = "2026.01.22"
50
__author__ = "Damian Krawczyk"
51
__email__ = "damian.krawczyk@limberduck.org"
nessus_file_analyzer/_version.py
@@ -1 +1 @@
1
version.rc
@@ -1,7 +1,7 @@
VSVersionInfo(
2
ffi=FixedFileInfo(
3
- filevers=(0, 12, 2, 0),
4
- prodvers=(0, 12, 2, 0),
+ filevers=(0, 12, 3, 0),
+ prodvers=(0, 12, 3, 0),
mask=0x3f,
flags=0x0,
OS=0x40004,
@@ -16,12 +16,12 @@ VSVersionInfo(
u'040904B0',
17
[StringStruct(u'CompanyName', u'LimberDuck'),
18
StringStruct(u'FileDescription', u'nessus file analyzer (NFA) by LimberDuck. Visit https://limberduck.org'),
19
- StringStruct(u'FileVersion', u'0.12.2.0'),
+ StringStruct(u'FileVersion', u'0.12.3.0'),
20
StringStruct(u'InternalName', u'nessus-file-analyzer'),
21
StringStruct(u'LegalCopyright', u'\xa9 Damian Krawczyk.'),
22
StringStruct(u'OriginalFilename', u'LimberDuck NFA.exe'),
23
StringStruct(u'ProductName', u'nessus file analyzer (NFA)'),
24
- StringStruct(u'ProductVersion', u'0.12.2.0')])
+ StringStruct(u'ProductVersion', u'0.12.3.0')])
25
]),
26
VarFileInfo([VarStruct(u'Translation', [1033, 1200])])
27
]
0 commit comments