@chappibunny/repolens 0.6.3 β†’ 0.6.4

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
@@ -2,13 +2,18 @@
2
2
 
3
3
  All notable changes to RepoLens will be documented in this file.
4
4
 
5
+ ## 0.6.4
6
+
7
+ ### πŸ”§ Maintenance
8
+ - Removed internal infrastructure branding from user-facing documentation
9
+ - Re-published to npm with corrected README and CHANGELOG
10
+
5
11
  ## 0.6.3
6
12
 
7
13
  ### ✨ New Features
8
- - **User Feedback**: Added `repolens feedback` CLI command for sending feedback directly to the RepoLens team via Sentry
14
+ - **User Feedback**: Added `repolens feedback` CLI command for sending feedback directly to the RepoLens team
9
15
  - Interactive prompts for name, email, and message
10
16
  - Works even when telemetry is disabled β€” feedback is always accepted
11
- - Uses `Sentry.captureFeedback()` from `@sentry/node`
12
17
 
13
18
  ### πŸ”§ Maintenance
14
19
  - Updated version references across all documentation
package/README.md CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  AI-assisted documentation intelligence system that generates architecture docs for engineers AND readable system docs for stakeholders
22
22
 
23
- **Current Status**: v0.6.3 β€” Sentry User Feedback & Team Features
23
+ **Current Status**: v0.6.4 β€” User Feedback & Team Features
24
24
 
25
25
  RepoLens automatically generates and maintains living architecture documentation by analyzing your repository structure, extracting meaningful insights from your package.json, and creating visual dependency graphs. Run it once, or let it auto-update on every push.
26
26
 
@@ -224,7 +224,7 @@ npm link
224
224
  Install from a specific version:
225
225
 
226
226
  ```bash
227
- npm install https://github.com/CHAPIBUNNY/repolens/releases/download/v0.6.3/chappibunny-repolens-0.6.3.tgz
227
+ npm install https://github.com/CHAPIBUNNY/repolens/releases/download/v0.6.4/chappibunny-repolens-0.6.4.tgz
228
228
  ```
229
229
  </details>
230
230
 
@@ -1077,7 +1077,7 @@ Simulates the full user installation experience:
1077
1077
  npm pack
1078
1078
 
1079
1079
  # Install globally from tarball
1080
- npm install -g chappibunny-repolens-0.6.3.tgz
1080
+ npm install -g chappibunny-repolens-0.6.4.tgz
1081
1081
 
1082
1082
  # Verify
1083
1083
  repolens --version
@@ -1152,13 +1152,13 @@ RepoLens uses automated GitHub Actions releases.
1152
1152
  ### Creating a Release
1153
1153
 
1154
1154
  ```bash
1155
- # Patch version (0.6.3 β†’ 0.6.4) - Bug fixes
1155
+ # Patch version (0.6.4 β†’ 0.6.5) - Bug fixes
1156
1156
  npm run release:patch
1157
1157
 
1158
- # Minor version (0.6.3 β†’ 0.7.0) - New features
1158
+ # Minor version (0.6.4 β†’ 0.7.0) - New features
1159
1159
  npm run release:minor
1160
1160
 
1161
- # Major version (0.6.3 β†’ 1.0.0) - Breaking changes
1161
+ # Major version (0.6.4 β†’ 1.0.0) - Breaking changes
1162
1162
  npm run release:major
1163
1163
 
1164
1164
  # Push the tag to trigger workflow
@@ -1190,7 +1190,7 @@ RepoLens is currently in early access. v1.0 will open for community contribution
1190
1190
 
1191
1191
  ## πŸ—ΊοΈ Roadmap to v1.0
1192
1192
 
1193
- **Current Status:** v0.6.3 β€” Sentry User Feedback & Team Features
1193
+ **Current Status:** v0.6.4 β€” User Feedback & Team Features
1194
1194
 
1195
1195
  ### Completed βœ…
1196
1196
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chappibunny/repolens",
3
- "version": "0.6.3",
3
+ "version": "0.6.4",
4
4
  "description": "AI-assisted documentation intelligence system for technical and non-technical audiences",
5
5
  "license": "MIT",
6
6
  "type": "module",