We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c05bf3c commit 294742cCopy full SHA for 294742c
.github/workflows/pr-preview.yml
@@ -26,6 +26,9 @@ jobs:
26
- name: Inject full dynamic version
27
run: python .hooks/sync_version.py --dev
28
29
+ - name: Clean previous builds
30
+ run: rm -rf dist/ build/ *.egg-info
31
+
32
- name: Get Hatch version
33
id: version
34
run: |
pyproject.toml
@@ -6,8 +6,9 @@ build-backend = "hatchling.build"
6
7
[project]
8
name = "socketsecurity"
9
-version = "2.0.27"
+version = "2.0.28"
10
requires-python = ">= 3.10"
11
+license = {"file" = "LICENSE"}
12
dependencies = [
13
'requests',
14
'mdutils',
socketsecurity/__init__.py
@@ -1,3 +1,3 @@
1
__author__ = 'socket.dev'
2
-__version__ = '2.0.27'
+__version__ = '2.0.28'
3
0 commit comments