winsmux 0.23.1 → 0.24.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/README.md CHANGED
@@ -69,3 +69,12 @@ longer part of the selected profile are removed from `~\.winsmux\winsmux-core\sc
69
69
  - the publish workflow stays tag-driven
70
70
  - the publish job uses the staged package from `scripts/stage-npm-release.mjs`
71
71
  - the publish job requires the repository `NPM_TOKEN` secret
72
+
73
+ ## License
74
+
75
+ The public npm package is Apache-2.0.
76
+ Some runtime compatibility code in the repository keeps an upstream MIT notice.
77
+ See the repository notices for provenance details:
78
+
79
+ - https://github.com/Sora-bluesky/winsmux/blob/main/core/LICENSE
80
+ - https://github.com/Sora-bluesky/winsmux/blob/main/THIRD_PARTY_NOTICES.md
package/install.ps1 CHANGED
@@ -12,7 +12,7 @@ param(
12
12
  $ErrorActionPreference = 'Stop'
13
13
  [Console]::OutputEncoding = [System.Text.Encoding]::UTF8
14
14
 
15
- $VERSION = "0.23.1"
15
+ $VERSION = "0.24.0"
16
16
  $WINSMUX_DIR = Join-Path $HOME ".winsmux"
17
17
  $BIN_DIR = Join-Path $WINSMUX_DIR "bin"
18
18
  $BACKUP_DIR = Join-Path $WINSMUX_DIR "backups"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "winsmux",
3
- "version": "0.23.1",
3
+ "version": "0.24.0",
4
4
  "description": "Windows npm install surface for winsmux.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",