scanii-python 1.0.0__tar.gz → 1.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,9 +17,9 @@ jobs:
17
17
  python: ["3.13", "3.14"]
18
18
 
19
19
  steps:
20
- - uses: actions/checkout@v4
20
+ - uses: actions/checkout@v7
21
21
 
22
- - uses: actions/setup-python@v5
22
+ - uses: actions/setup-python@v7
23
23
  with:
24
24
  python-version: ${{ matrix.python }}
25
25
 
@@ -14,11 +14,11 @@ jobs:
14
14
  contents: read
15
15
 
16
16
  steps:
17
- - uses: actions/checkout@v4
17
+ - uses: actions/checkout@v7
18
18
  with:
19
19
  ref: ${{ github.event.release.tag_name }}
20
20
 
21
- - uses: actions/setup-python@v5
21
+ - uses: actions/setup-python@v7
22
22
  with:
23
23
  python-version: "3.13"
24
24
 
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.1 — 2026-08-15
4
+
5
+ ### Changed
6
+
7
+ - Bumped CI actions: `actions/checkout` v4 → v7, `actions/setup-python` v5 → v7.
8
+ (Dev dependencies are unpinned ranges resolved at install time; runtime
9
+ `dependencies` remains empty — the published package is unchanged.)
10
+
3
11
  ## 1.0.0 — 2026-05-05
4
12
 
5
13
  Initial release. Replaces the unmaintained `scanii.py` skeleton.
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.4
1
+ Metadata-Version: 2.5
2
2
  Name: scanii-python
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Zero-dependency Python SDK for the Scanii content security API
5
5
  Project-URL: Homepage, https://scanii.com
6
6
  Project-URL: Repository, https://github.com/scanii/scanii-python
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "scanii-python"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "Zero-dependency Python SDK for the Scanii content security API"
9
9
  readme = "README.md"
10
10
  license = "Apache-2.0"
@@ -0,0 +1 @@
1
+ __version__ = "1.0.1"
@@ -139,8 +139,10 @@ class TestScaniiTarget:
139
139
 
140
140
  class TestConstructor:
141
141
  def test_key_and_secret_accepted(self):
142
+ from scanii._version import __version__
143
+
142
144
  c = _make_client()
143
- assert c._user_agent == "scanii-python/1.0.0"
145
+ assert c._user_agent == f"scanii-python/{__version__}"
144
146
 
145
147
  def test_token_accepted(self):
146
148
  c = ScaniiClient(token="mytoken", target=TARGET)
@@ -1 +0,0 @@
1
- __version__ = "1.0.0"
File without changes
File without changes
File without changes