vcvars 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/lib/vcvars/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 63646d82991c0386b85e6c167294c8fee439fc2e9012855b426f21c34f59e328
|
|
4
|
+
data.tar.gz: a284cd11242a3ff972b4758da01a89e2f0361a507756924c87892115c0cee7bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f584d80d837ece6a41e2695ffd09dd17240ce245b625f586562420d57207a4ec857c84cff58487a81ec91cfaecaf25e15c68a5117765e15cf5208038d73aed84
|
|
7
|
+
data.tar.gz: 58779af66d4ab17a1548f153bd92fca79ee36e843c2035671404a2c91a2294fbd3867f3ccbd752ad275f3d08480859a9f685c6e421aeb584f91ae4cdbb80073f
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,21 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.1] - 2026-05-30
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- Locator now prefers a **stable** Visual Studio install over a prerelease/Insiders
|
|
13
|
+
one when both are present (queries vswhere without `-prerelease` first, falling
|
|
14
|
+
back to it), and resolves the vcvars path + version/name from the same install.
|
|
15
|
+
- `vcvars where`/`env`/`exec` with an unsupported `--arch` now report a clean
|
|
16
|
+
one-line error instead of leaking a Ruby backtrace.
|
|
17
|
+
- `vcvars new` scaffolds a gemspec that passes `gem build` (the generated
|
|
18
|
+
description no longer starts with `TODO`, which RubyGems rejects).
|
|
19
|
+
- `vcvars new` now emits a `LICENSE.txt` so the scaffold's `license = "MIT"` and
|
|
20
|
+
`LICENSE*` files glob aren't empty promises.
|
|
21
|
+
- `vcvars where`/`env` report a dangling `--arch`/`--format` flag (missing value)
|
|
22
|
+
instead of silently using the default.
|
|
23
|
+
|
|
9
24
|
## [0.1.0] - 2026-05-30
|
|
10
25
|
|
|
11
26
|
### Added
|
data/lib/vcvars/version.rb
CHANGED