@luca-financial/luca-schema 3.3.1 → 3.3.2

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.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.3.2] - 2026-04-05
9
+
10
+ ### Changed
11
+
12
+ - Bump the Luca Schema contract version to `3.3.2`.
13
+ - Align bundled aggregate example files with `SCHEMA_VERSION` so example validation and version-consistency checks stay in sync.
14
+
8
15
  ## [3.3.1] - 2026-04-05
9
16
 
10
17
  ### Changed
package/README.md CHANGED
@@ -252,7 +252,7 @@ Validates the full ledger export.
252
252
 
253
253
  ```typescript
254
254
  const lucaSchema = {
255
- schemaVersion: '3.0.0';
255
+ schemaVersion: '3.3.2';
256
256
  categories: Category[];
257
257
  accounts: Account[];
258
258
  statements: Statement[];
@@ -755,7 +755,7 @@ export interface LucaSchema {
755
755
  /**
756
756
  * Schema contract version of the luca ledger
757
757
  */
758
- schemaVersion: '3.0.0';
758
+ schemaVersion: '3.3.2';
759
759
  /**
760
760
  * List of categories
761
761
  */
@@ -17,7 +17,7 @@
17
17
  "properties": {
18
18
  "schemaVersion": {
19
19
  "type": "string",
20
- "const": "3.0.0",
20
+ "const": "3.3.2",
21
21
  "description": "Schema contract version of the luca ledger"
22
22
  },
23
23
  "categories": {
package/dist/index.d.ts CHANGED
@@ -755,7 +755,7 @@ export interface LucaSchema {
755
755
  /**
756
756
  * Schema contract version of the luca ledger
757
757
  */
758
- schemaVersion: '3.0.0';
758
+ schemaVersion: '3.3.2';
759
759
  /**
760
760
  * List of categories
761
761
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luca-financial/luca-schema",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "description": "Schemas for the Luca Ledger application",
5
5
  "author": "Johnathan Aspinwall",
6
6
  "main": "dist/esm/index.js",