Skip to content

Releases: DocSpring/renamify

VS Code Extension v0.6.0

11 Oct 00:00
vscode-v0.6.0
21e8997

Choose a tag to compare

What's Changed

Commits since vscode-v0.5.0

  • bumped versions to 0.6.0 (21e8997)

Installation

Install from VS Code Marketplace or download the VSIX file below.

From VS Code

  • Open VS Code
  • Go to Extensions (Ctrl+Shift+X)
  • Search for "Renamify"
  • Click Install

Manual VSIX Installation

code --install-extension renamify-*.vsix

MCP Server v0.6.0

11 Oct 00:00
mcp-v0.6.0
21e8997

Choose a tag to compare

What's Changed

Commits since mcp-v0.5.0

  • bumped versions to 0.6.0 (21e8997)

Installation

Install via npm:

npm install -g @renamify/mcp-server

Or use with npx:

npx @renamify/mcp-server

Renamify CLI v0.6.0

11 Oct 00:03
cli-v0.6.0
21e8997

Choose a tag to compare

What's Changed

Commits since cli-v0.5.0

  • fixes for e2e test (bfa0b93)
  • Fix: Prefer replacement separator style over container's flat style for filenames (671b092)
  • Fix: Prefer PascalCase over Sentence case in Rust comments for brand names (8a678bd)
  • Fix: Prefer PascalCase over Title case and use generic names in tests (c8f3f04)
  • Fix: Construct wrong pattern dynamically in test to avoid e2e grep (01d0fc9)
  • Fix: Detect mixed-case hyphenated patterns like 'Renamify-specific' as Mixed style (e1e712f)
  • Fix: Use generic names in test to avoid e2e self-hosting conflicts (539bac6)
  • Fix: Support configured acronyms in Train-Case and Title Case identifiers (1acfcbd)
  • Fix filename style resolution and add space-separated style support (3f717ce)
  • Fix: Prevent Rust lifetime heuristic from matching string literals (b8e10d0)
  • Workarounds for e2e test (ef6e7b3)
  • Fixed a lot more edge cases and bugs (68cea6c)
  • progress on fixing some more edge cases (c65851e)
  • handle more edge cases (fb3739c)

Installation

macOS (Intel)

curl -L https://github.com/DocSpring/renamify/releases/download//renamify-macos-amd64.tar.gz | tar xz -C /tmp
sudo mv /tmp/renamify /usr/local/bin/

macOS (Apple Silicon)

curl -L https://github.com/DocSpring/renamify/releases/download//renamify-macos-arm64.tar.gz | tar xz -C /tmp
sudo mv /tmp/renamify /usr/local/bin/

Linux (x86_64)

curl -L https://github.com/DocSpring/renamify/releases/download//renamify-linux-amd64.tar.gz | tar xz -C /tmp
sudo mv /tmp/renamify /usr/local/bin/

Linux (ARM64)

curl -L https://github.com/DocSpring/renamify/releases/download//renamify-linux-arm64.tar.gz | tar xz -C /tmp
sudo mv /tmp/renamify /usr/local/bin/

Windows (x86_64)

Invoke-WebRequest -Uri https://github.com/DocSpring/renamify/releases/download//renamify-windows-amd64.zip -OutFile $env:TEMP\renamify.zip
Expand-Archive -Path $env:TEMP\renamify.zip -DestinationPath $env:TEMP
Move-Item -Path $env:TEMP\renamify.exe -Destination C:\Windows\System32\

Windows (ARM64)

Invoke-WebRequest -Uri https://github.com/DocSpring/renamify/releases/download//renamify-windows-arm64.zip -OutFile $env:TEMP\renamify.zip
Expand-Archive -Path $env:TEMP\renamify.zip -DestinationPath $env:TEMP
Move-Item -Path $env:TEMP\renamify.exe -Destination C:\Windows\System32\

VS Code Extension v0.5.0

30 Sep 04:02
vscode-v0.5.0
e3e8b14

Choose a tag to compare

What's Changed

Commits since vscode-v0.4.1

  • better vscode design (0c68d70)
  • vscode ext tweak (e01539d)
  • updated vscode with new case styles (1c93232)
  • added support for plural/singular detection by default (624e775)
  • linting issues (8e626ce)

Installation

Install from VS Code Marketplace or download the VSIX file below.

From VS Code

  • Open VS Code
  • Go to Extensions (Ctrl+Shift+X)
  • Search for "Renamify"
  • Click Install

Manual VSIX Installation

code --install-extension renamify-*.vsix

MCP Server v0.5.0

30 Sep 04:02
mcp-v0.5.0
e3e8b14

Choose a tag to compare

What's Changed

Commits since mcp-v0.4.2

  • added support for plural/singular detection by default (624e775)

Installation

Install via npm:

npm install -g @renamify/mcp-server

Or use with npx:

npx @renamify/mcp-server

Renamify CLI v0.5.0

30 Sep 04:05
cli-v0.5.0
e3e8b14

Choose a tag to compare

What's Changed

Commits since cli-v0.4.1

  • use lower-flat and upper-flat, and added an awesome case study (e99c198)
  • improved case model to support more space separated cases, with a shorthand for all of them via CLI (18156bf)
  • fixed highlighting bug (51cf0c3)
  • fixed bug in title case replacement (80da50f)
  • fixed ctrlc (d6711df)
  • fixed more bugs (74bb011)
  • added support for plural/singular detection by default (624e775)
  • fixed more bugs in replacements (edd3668)
  • Fix Pascal segment coercion in camelCase renames (39fbb7f)
  • feat: respect ignore ambiguous flag in planner (0d75ff4)
  • Stabilize lock signal tests on macOS (630e257)
  • Optimize planner scanning performance (15bdff2)

Installation

macOS (Intel)

curl -L https://github.com/DocSpring/renamify/releases/download//renamify-macos-amd64.tar.gz | tar xz -C /tmp
sudo mv /tmp/renamify /usr/local/bin/

macOS (Apple Silicon)

curl -L https://github.com/DocSpring/renamify/releases/download//renamify-macos-arm64.tar.gz | tar xz -C /tmp
sudo mv /tmp/renamify /usr/local/bin/

Linux (x86_64)

curl -L https://github.com/DocSpring/renamify/releases/download//renamify-linux-amd64.tar.gz | tar xz -C /tmp
sudo mv /tmp/renamify /usr/local/bin/

Linux (ARM64)

curl -L https://github.com/DocSpring/renamify/releases/download//renamify-linux-arm64.tar.gz | tar xz -C /tmp
sudo mv /tmp/renamify /usr/local/bin/

Windows (x86_64)

Invoke-WebRequest -Uri https://github.com/DocSpring/renamify/releases/download//renamify-windows-amd64.zip -OutFile $env:TEMP\renamify.zip
Expand-Archive -Path $env:TEMP\renamify.zip -DestinationPath $env:TEMP
Move-Item -Path $env:TEMP\renamify.exe -Destination C:\Windows\System32\

Windows (ARM64)

Invoke-WebRequest -Uri https://github.com/DocSpring/renamify/releases/download//renamify-windows-arm64.zip -OutFile $env:TEMP\renamify.zip
Expand-Archive -Path $env:TEMP\renamify.zip -DestinationPath $env:TEMP
Move-Item -Path $env:TEMP\renamify.exe -Destination C:\Windows\System32\

MCP Server v0.4.2

28 Sep 01:00
mcp-v0.4.2
cd29f7a

Choose a tag to compare

What's Changed

Commits since mcp-v0.4.1

  • release new patch version of mcp server to fix npx issue (cd29f7a)
  • fixed wrong args for apply in mcp server (2deabae)
  • linting issues (8e626ce)
  • relax coverage threshold for now (fc0698e)
  • fixed mcp server for codex cli (3240d1c)
  • CLAUDE.md => AGENTS.md (with symlinks) (0258115)

Installation

Install via npm:

npm install -g @renamify/mcp-server

Or use with npx:

npx @renamify/mcp-server

VS Code Extension v0.4.1

02 Sep 14:51
vscode-v0.4.1
f182452

Choose a tag to compare

What's Changed

Commits since vscode-v0.4.0

  • No relevant git commits found

Installation

Install from VS Code Marketplace or download the VSIX file below.

From VS Code

  • Open VS Code
  • Go to Extensions (Ctrl+Shift+X)
  • Search for "Renamify"
  • Click Install

Manual VSIX Installation

code --install-extension renamify-*.vsix

MCP Server v0.4.1

02 Sep 14:50
mcp-v0.4.1
f182452

Choose a tag to compare

What's Changed

Commits since mcp-v0.4.0

  • No relevant git commits found

Installation

Install via npm:

npm install -g @renamify/mcp-server

Or use with npx:

npx @renamify/mcp-server

MCP Server v0.4.0

02 Sep 14:13
mcp-v0.4.0
c531c0d

Choose a tag to compare

What's Changed

Commits since mcp-v0.3.0

  • refactor: rename atomic flags for clarity and remove atomic-apply (93e0971)
  • fix more highlighting issues in vs code (char offset vs byte offset), fixed locking/sync issues when cancelling and restarting searches or plans in vscode (74a6774)

Installation

Install via npm:

npm install -g @renamify/mcp-server

Or use with npx:

npx @renamify/mcp-server