Current version
The latest stable release of Drift CLI is version 1.0.12. You can check your installed version at any time:Automatic update detection
Drift CLI automatically checks for new versions when you start the application. If an update is available, you’ll see a notification:Update checks happen automatically on startup. You don’t need to manually check for updates, but you can control when to install them.
How it works
Drift’s update detection:- Checks for new releases on startup
- Compares your current version with the latest release
- Shows a notification if an update is available
- Does not interrupt your work or force updates
Using the /update command
The simplest way to update Drift CLI is using the built-in update command:- Downloads the latest version
- Installs the update automatically
- Handles all dependencies
- Preserves your configuration
Update process
When you run/update, Drift will:
- Download - Fetch the latest
.debpackage from GitHub releases - Verify - Confirm the download is complete and valid
- Install - Use
dpkgto install the new version - Cleanup - Remove temporary files
- Complete - Exit so you can restart with the new version
Manual update process
If the/update command fails or you prefer manual installation, you can update Drift CLI manually.
Step 1: Download the latest release
Visit the Drift CLI releases page and download the latest.deb package:
Step 2: Install the package
Usedpkg to install the downloaded package:
You’ll need sudo privileges to install the
.deb package manually.Step 3: Verify the installation
Restart Drift CLI and check the version:Release notes
Detailed information about each release is available on GitHub: View Release Notes Release notes include:- New features - Major functionality additions
- Improvements - Enhancements to existing features
- Bug fixes - Resolved issues and problems
- Breaking changes - Changes that may affect existing workflows
- Known issues - Current limitations and workarounds
Version numbering
Drift CLI follows semantic versioning (SemVer):- Major version (X.0.0) - Breaking changes or major new features
- Minor version (0.X.0) - New features, backward compatible
- Patch version (0.0.X) - Bug fixes and minor improvements
1.0.12
- Major: 1
- Minor: 0
- Patch: 12
Patch updates (like 1.0.11 to 1.0.12) are always safe to install and don’t introduce breaking changes.
Troubleshooting updates
Update command fails
If/update fails:
- Check your internet connection
- Ensure you have sufficient disk space
- Verify you have proper permissions
- Try the manual update process instead
Permission denied errors
The update process requires elevated privileges:- The
/updatecommand will prompt for your password if needed - Make sure your user account has sudo access
- For manual installation, always use
sudo dpkg
”Command not found” after update
Ifdrift isn’t found after updating:
Staying informed
To stay up to date with Drift CLI development:- GitHub releases - Subscribe to release notifications
- Website - Check godrift.ai for announcements
- Issues - Follow the issues page for bug reports and feature requests
Downgrading
If you need to downgrade to a previous version:- Download the older
.debpackage from the releases page - Install it using
sudo dpkg -i drift-cli_OLD_VERSION_amd64.deb - Restart Drift CLI
Downgrading is rarely necessary but can be useful if you encounter issues with a new release.