bunmicro 0.9.0 → 0.9.1

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
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.1] - 2026-06-03
4
+ - Upgrade method explanation
5
+
3
6
  ## [0.9.0] - 2026-06-03
4
7
  - Added more alt- key bindings
5
8
  - Alt-s for Selection mode
package/README.md CHANGED
@@ -77,6 +77,8 @@ npm install -g bun
77
77
 
78
78
  # Run bunmicro(stable)
79
79
  npx bunmicro
80
+ # npx bunmicro@latest to upgrade to new version
81
+
80
82
  # npx bunmicro [options] [file1] [file2] ...
81
83
  # alternative: bun bunmicro/src/index.js [options] [file1] [file2] ...
82
84
  # if npx is not available, use npm x -- bunmicro
@@ -93,6 +95,8 @@ npx bunmicro
93
95
 
94
96
  ```sh
95
97
  bun x bunmicro
98
+ # bun x bunmicro@latest to upgrade to new version
99
+
96
100
  # bun x bunmicro [options] [file1] [file2] ...
97
101
  # alternative: bun bunmicro/src/index.js [options] [file1] [file2] ...
98
102
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bunmicro",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Bun JavaScript rewrite of the micro editor originally in Golang",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",