valenceai 0.5.0 → 1.0.0

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,22 @@ 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
+ ## [0.5.1] - 2025-06-24
9
+
10
+ ### Fixed
11
+ - **Documentation Consistency**: Updated `README.dev.md` to use correct package name `valenceai` instead of outdated `valence-sdk-js`
12
+ - **Developer Experience**: Corrected installation instructions for publishing and development workflows
13
+ - **Package Alignment**: Ensured all development documentation reflects current package naming conventions
14
+
15
+ ### Documentation
16
+ - **Developer Guidelines**: Updated publish and install commands with correct package names
17
+ - **Consistency**: Aligned development documentation with current v0.5.x package structure
18
+ - **Clarity**: Improved developer onboarding with accurate installation instructions
19
+
20
+ ### Publishing
21
+ - **npm Commands**: Verified `npm publish --access public` workflow with correct package name
22
+ - **Installation**: Updated to `npm install valenceai` for consistency with published package
23
+
8
24
  ## [0.5.0] - 2025-06-23
9
25
 
10
26
  ### Added
package/README.dev.md CHANGED
@@ -3,5 +3,5 @@ npm login
3
3
  npm publish --access public
4
4
 
5
5
  # Install
6
- npm install valence-sdk-js
6
+ npm install valenceai
7
7