Skip to content

Commit f338d01

Browse files
Update version to 0.5.1 (#152)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 934da6d commit f338d01

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

getting-started/deployment/aws-ec2.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ Alternatively, you can follow the manual installation steps:
6464
2. In CloudShell, create a new directory and download the release files:
6565
```shell
6666
mkdir -p openops && cd openops && \
67-
wget https://github.com/openops-cloud/openops/releases/download/0.5.0/openops-dc-0.5.0.zip && \
68-
unzip -o openops-dc-0.5.0.zip && cp --update=none .env.defaults .env
67+
wget https://github.com/openops-cloud/openops/releases/download/0.5.1/openops-dc-0.5.1.zip && \
68+
unzip -o openops-dc-0.5.1.zip && cp --update=none .env.defaults .env
6969
```
7070
3. Update the application URL to use the instance's public IP address:
7171
```shell

getting-started/deployment/azure-vm.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ Alternatively, you can follow the manual installation steps:
5656
2. Create a new directory and download the OpenOps release files:
5757
```shell
5858
mkdir -p openops && cd openops && \
59-
wget https://github.com/openops-cloud/openops/releases/download/0.5.0/openops-dc-0.5.0.zip && \
60-
unzip -o openops-dc-0.5.0.zip && cp -n .env.defaults .env
59+
wget https://github.com/openops-cloud/openops/releases/download/0.5.1/openops-dc-0.5.1.zip && \
60+
unzip -o openops-dc-0.5.1.zip && cp -n .env.defaults .env
6161
```
6262
3. Edit the application URL to use the machine’s public IP address:
6363
```shell

getting-started/deployment/gcp-vm.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ Alternatively, you can follow the manual installation steps:
6868
2. In your SSH session, create a new directory and download the release files:
6969
```shell
7070
mkdir -p openops && cd openops
71-
wget https://github.com/openops-cloud/openops/releases/download/0.5.0/openops-dc-0.5.0.zip
72-
unzip -o openops-dc-0.5.0.zip
71+
wget https://github.com/openops-cloud/openops/releases/download/0.5.1/openops-dc-0.5.1.zip
72+
unzip -o openops-dc-0.5.1.zip
7373
cp -u .env.defaults .env
7474
```
7575
3. Update the application URL to use the instance’s external IP address:

getting-started/deployment/local.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ If you can't use the autoinstall script, follow the manual installation steps fo
2727
2. Open a new terminal window and run the following command to create a folder and download the OpenOps release files:
2828
```shell
2929
mkdir -p openops && cd openops && \
30-
curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.0/openops-dc-0.5.0.zip && \
31-
unzip openops-dc-0.5.0.zip && cp -n .env.defaults .env
30+
curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.1/openops-dc-0.5.1.zip && \
31+
unzip openops-dc-0.5.1.zip && cp -n .env.defaults .env
3232
```
3333
3. <UpdateCredentials/>
3434
4. Pull the images and run `docker compose`:
@@ -52,13 +52,13 @@ You can now access the application by navigating to http://localhost.
5252
# create and change directory
5353
mkdir -p openops && cd openops
5454
# download the release file
55-
curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.0/openops-dc-0.5.0.zip
55+
curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.1/openops-dc-0.5.1.zip
5656
# refresh package lists
5757
sudo apt update
5858
# install unzip
5959
sudo apt install unzip
6060
# decompress release file
61-
unzip openops-dc-0.5.0.zip
61+
unzip openops-dc-0.5.1.zip
6262
# copy the defaults to env without overwriting existing files
6363
cp --update=none .env.defaults .env
6464
```
@@ -97,8 +97,8 @@ You can now access the application by navigating to http://localhost.
9797
```
9898
3. Download the OpenOps release files:
9999
```powershell
100-
Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.5.0/openops-dc-0.5.0.zip"
101-
Expand-Archive -Path "openops-dc-0.5.0.zip" -DestinationPath .
100+
Invoke-WebRequest -Uri "https://github.com/openops-cloud/openops/releases/download/0.5.1/openops-dc-0.5.1.zip"
101+
Expand-Archive -Path "openops-dc-0.5.1.zip" -DestinationPath .
102102
if (-Not (Test-Path ".env")) {
103103
Copy-Item ".env.defaults" ".env"
104104
}

getting-started/updating-openops.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ The script will stop all running containers, pull the latest images, and restart
2828
```
2929
4. Download and extract the new version:
3030
```shell
31-
curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.0/openops-dc-0.5.0.zip && \
32-
unzip -o openops-dc-0.5.0.zip
31+
curl -OL https://github.com/openops-cloud/openops/releases/download/0.5.1/openops-dc-0.5.1.zip && \
32+
unzip -o openops-dc-0.5.1.zip
3333
```
3434
(This code sample refers to a specific version. Don't forget to update it to the version you're installing.)
3535
5. Fetch the new images and restart the application:

0 commit comments

Comments
 (0)