Skip to content

Commit

Permalink
Merge pull request #53 from platformsh/legacy-4.3.0
Browse files Browse the repository at this point in the history
Bump legacy-cli version to 4.3.0
  • Loading branch information
akalipetis authored Mar 15, 2023
2 parents ad26786 + 60cd05b commit 17a6db6
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,32 @@ release:
github:
owner: platformsh
name: cli
footer: |
* * *
**Legacy CLI release Notes**: https://github.com/platformsh/legacy-cli/releases/v{{ .Tag }}
**Full Legacy CLI changelog**: https://github.com/platformsh/legacy-cli/compare/v{{ .PreviousTag }}...v{{ .Tag }}
* * *
## Upgrade
Upgrade using the same tool you used for installing the CLI:
### HomeBrew
```console
brew update && brew upgrade platformsh-cli
```
### Scoop
```console
scoop update platform
```
### Bash installer
```console
curl -fsSL https://raw.githubusercontent.com/platformsh/cli/main/installer.sh | bash
```
archives:
- name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PHP_VERSION = 8.0.28
PSH_VERSION = 4.2.1
PSH_VERSION = 4.3.0
GOOS := $(shell uname -s | tr '[:upper:]' '[:lower:]')
ifeq ($(GOOS), darwin)
GORELEASER_ID=platform-macos
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Upgrade using the same tool:
### HomeBrew

```console
brew upgrade platformsh-cli
brew update && brew upgrade platformsh-cli
```

### Scoop
Expand All @@ -80,6 +80,12 @@ brew upgrade platformsh-cli
scoop update platform
```

### Bash installer

```console
curl -fsSL https://raw.githubusercontent.com/platformsh/cli/main/installer.sh | bash
```

## Under the hood

The New Platform.sh CLI is built with backwards compatibility in mind. This is why we've embedded PHP, so that all Legacy PHP CLI commands can be executed in the exact same way, making sure that nothing breaks when you switch to it.
Expand Down

0 comments on commit 17a6db6

Please sign in to comment.