Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ Releases are managed through GitHub Actions. To create a new release:
3. Click on the "Release" workflow
4. Click "Run workflow"
5. Select the version bump type:
- `patch`: for backwards-compatible bug fixes (0.0.x)
- `minor`: for backwards-compatible new features (0.x.0)
- `major`: for breaking changes (x.0.0)
- `patch`: for backwards-compatible changes (0.0.x)
- `minor`: for breaking changes (0.x.0)
- `major`: for major breaking changes (x.0.0)
- `prerelease`: for pre-release versions (0.0.0-pre.timestamp)
6. Click "Run workflow" to start the release process

Expand Down
4 changes: 2 additions & 2 deletions src/lib/contracts/ContractDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ export function ContractList(props: { contracts: Contract[] }) {
</Box>

<Box paddingLeft={4} flexDirection="column">
<Text dimColor># Place a buy order to get started</Text>
<Text color="yellow">sf buy</Text>
<Text dimColor># Buy a node to get started</Text>
<Text color="yellow">sf nodes create</Text>
</Box>
</Box>
);
Expand Down
2 changes: 1 addition & 1 deletion src/lib/orders/OrderDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export function OrderDisplay(props: {

<Box paddingLeft={4} flexDirection="column">
<Text dimColor># Place an order to buy compute</Text>
<Text color="yellow">sf buy</Text>
<Text color="yellow">sf nodes create</Text>
</Box>
</Box>
);
Expand Down
Loading