uneven-ai 1.1.1 → 1.1.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,19 @@ All notable changes to Uneven AI 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
+ ## [1.1.2] - 2026-04-24
9
+
10
+ ### Fixed
11
+
12
+ - **Engine Initialization**: Resolved a naming convention mismatch where `maxTokens` (camelCase) from the TypeScript configuration was not being correctly mapped to `max_tokens` (snake_case) expected by the native Rust engine.
13
+ - **Native Bridge**: Updated the bridge to ensure all configuration fields are correctly transformed before being passed to the native core, preventing initialization failures.
14
+
15
+ ## [1.1.1] - 2026-04-24
16
+
17
+ ### Fixed
18
+
19
+ - **Naming Conventions**: Stabilized internal naming conventions between TypeScript and Rust layers.
20
+
8
21
  ## [1.1.0] - 2026-04-20
9
22
 
10
23
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "uneven-ai",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org/"