-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
29 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 2 | ||
sidebar_position: 3 | ||
description: Adminterface Command Line Reference. | ||
--- | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
sidebar_position: 99 | ||
sidebar_position: 98 | ||
description: Adminterface Dependencies and Licenses. | ||
--- | ||
|
||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
sidebar_position: 2 | ||
description: Adminterface Upgrading Guide. | ||
--- | ||
|
||
# Upgrading | ||
We kept the NPM package and the Ruby gem versions in sync. When upgrading, please ensure you update them both. | ||
|
||
## Update the Gem | ||
Replace `$VERSION` with the target version. | ||
```ruby title="Gemfile" | ||
gem "adminterface", "$VERSION" | ||
``` | ||
And, run: | ||
```bash | ||
bundle install | ||
``` | ||
|
||
## Update the NPM package | ||
Replace `$VERSION` with the target version, and run: | ||
```bash | ||
yarn upgrade @cmdbrew/adminterface@$VERSION | ||
``` |