@contractkit/plugin-python 0.11.7 → 0.11.8

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.
@@ -7,7 +7,7 @@ $ tsup src/index.ts --format esm --sourcemap --dts && tsc --emitDeclarationOnly
7
7
  ESM Build start
8
8
  ESM dist/index.js 43.30 KB
9
9
  ESM dist/index.js.map 92.85 KB
10
- ESM ⚡️ Build success in 274ms
10
+ ESM ⚡️ Build success in 209ms
11
11
  DTS Build start
12
- DTS ⚡️ Build success in 4814ms
12
+ DTS ⚡️ Build success in 5126ms
13
13
  DTS dist/index.d.ts 1.10 KB
@@ -3,13 +3,13 @@ $ vitest run --coverage
3
3
   RUN  v4.1.5 /home/runner/work/ContractKit/ContractKit/packages/plugin-python
4
4
  Coverage enabled with v8
5
5
 
6
- ✓ tests/codegen-client.test.ts (30 tests) 70ms
7
- ✓ tests/codegen-models.test.ts (36 tests) 177ms
6
+ ✓ tests/codegen-models.test.ts (36 tests) 110ms
7
+ ✓ tests/codegen-client.test.ts (30 tests) 96ms
8
8
 
9
9
   Test Files  2 passed (2)
10
10
   Tests  66 passed (66)
11
-  Start at  17:06:40
12
-  Duration  5.70s (transform 2.27s, setup 0ms, import 7.55s, tests 246ms, environment 0ms)
11
+  Start at  15:07:02
12
+  Duration  5.06s (transform 1.91s, setup 0ms, import 6.42s, tests 206ms, environment 0ms)
13
13
 
14
14
   % Coverage report from v8
15
15
  -------------------|---------|----------|---------|---------|-------------------
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @contractkit/contractkit-plugin-python
2
2
 
3
+ ## 0.11.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [23e4beb]
8
+ - @contractkit/core@0.24.0
9
+
3
10
  ## 0.11.7
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractkit/plugin-python",
3
- "version": "0.11.7",
3
+ "version": "0.11.8",
4
4
  "description": "ContractKit built-in plugin: Python SDK client generation (Pydantic v2 + httpx)",
5
5
  "author": {
6
6
  "name": "Marooned Software",
@@ -26,13 +26,13 @@
26
26
  ".": "./dist/index.js"
27
27
  },
28
28
  "dependencies": {
29
- "@contractkit/core": "0.23.0"
29
+ "@contractkit/core": "0.24.0"
30
30
  },
31
31
  "devDependencies": {
32
32
  "unplugin-swc": "^1.5.9",
33
33
  "vitest": "^4.1.5",
34
- "@repo/config-typescript": "0.1.0",
35
- "@repo/config-eslint": "0.3.1"
34
+ "@repo/config-eslint": "0.3.1",
35
+ "@repo/config-typescript": "0.1.0"
36
36
  },
37
37
  "scripts": {
38
38
  "build": "tsup src/index.ts --format esm --sourcemap --dts && tsc --emitDeclarationOnly --declaration",