Skip to content

Commit 3981c66

Browse files
committed
Merge branch into main
2 parents a820ffc + c25e9f2 commit 3981c66

File tree

4 files changed

+20
-4
lines changed

4 files changed

+20
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
commit = True
33
tag = False
44
message = Bump version: {current_version} → {new_version}
5-
current_version = 5.0.6
5+
current_version = 5.0.8
66

77
[bumpversion:file:setup.py]
88
search = '{current_version}'

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
strategy:
1818
matrix:
19-
python-version: [3.10, 3.11, 3.12]
19+
python-version: [3.11]
2020
steps:
2121
- uses: actions/checkout@v3
2222
- name: Set up Python ${{ matrix.python-version }}

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## v5.0.8 (17/07/2025)
4+
## Changes
5+
## 🔧 Maintenance
6+
7+
- Update setup.py @ethanleelge (#47)
8+
- Keep the line "Programming Language :: Python :: 3" in setup.py
9+
---
10+
11+
## v5.0.7 (17/07/2025)
12+
## Changes
13+
## 🔧 Maintenance
14+
15+
- Modify setup.py to change the supported Python version to 3.10 - 3.12 @ethanleelge (#46)
16+
17+
---
18+
319
## v5.0.6 (28/03/2025)
420
## Changes
521
## 🔧 Maintenance

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
if __name__ == "__main__":
1818
setup(
1919
name='fosslight_android',
20-
version='5.0.6',
20+
version='5.0.8',
2121
package_dir={"": "src"},
2222
packages=find_packages(where='src'),
2323
description='FOSSLight Android Scanner',
@@ -28,7 +28,7 @@
2828
url='https://github.com/fosslight/fosslight_android_scanner',
2929
download_url='https://github.com/fosslight/fosslight_android_scanner',
3030
classifiers=['License :: OSI Approved :: Apache Software License',
31-
"Programming Language :: Python :: 3",
31+
"Programming Language :: Python :: 3",
3232
"Programming Language :: Python :: 3.10",
3333
"Programming Language :: Python :: 3.11",
3434
"Programming Language :: Python :: 3.12"],

0 commit comments

Comments
 (0)