chore(rnr): update rnr to v0.1.1#267
Merged
Merged
Conversation
Bumps the rnr task runner from v0.1.0 to v0.1.1. This release fixes the tokenizer bug where internally-quoted flag arguments like -ldflags="-s -w" were split on whitespace into "-s and -w" tokens. With v0.1.1, ./rnr build and ./rnr build-shim now succeed against the existing rnr.yaml (which has had quoted ldflags since #264). Verified locally on Windows: ./rnr.cmd check passes (lint clean, all tests green) and ./rnr.cmd build produces the expected binaries (dtvem.exe 10.94 MB, dtvem-shim.exe 2.68 MB). The new release also teaches the Unix wrapper script to detect mingw/msys/cygwin shells, so ./rnr now works from Git Bash on Windows in addition to ./rnr.cmd.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Bumps the rnr task runner from v0.1.0 to v0.1.1. The new release fixes the tokenizer bug where internally-quoted flag arguments like
-ldflags="-s -w"were split on whitespace into"-sand-w"tokens. With v0.1.1,./rnr buildand./rnr build-shimnow succeed against the existingrnr.yaml— no workaround needed.Bonus: v0.1.1 also teaches the Unix wrapper script to detect
mingw/msys/cygwinshells, so./rnrnow works from Git Bash on Windows in addition to./rnr.cmd.Test plan
./rnr.cmd check— lint clean (0 issues), full test suite green./rnr.cmd build— builds both binaries successfully (dtvem.exe10.94 MB,dtvem-shim.exe2.68 MB; sizes match prior measurements)What's changed
.rnr/bin/rnr-*— five platform binaries refreshed (each ~50–100 KB smaller).rnr/config.yaml— version field bumped to0.1.1rnr— Unix wrapper now recognizes Git Bash / MSYS / Cygwin and routes to the Windows binaryResolves #263 via upstream fix CodingWithCalvin/rnr.cli#55.