From 1808d3634544b1a94c813be81f6a3109b8c78776 Mon Sep 17 00:00:00 2001 From: Dane Everitt Date: Mon, 31 Aug 2020 21:24:44 -0700 Subject: [PATCH] Bump versions --- panel/1.0/getting_started.md | 2 +- panel/1.0/upgrade/0.7_to_1.0.md | 2 +- panel/1.0/upgrade/1.0.md | 4 ++-- wings/1.0/installing.md | 2 +- wings/1.0/migrating.md | 2 +- wings/1.0/upgrading.md | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/panel/1.0/getting_started.md b/panel/1.0/getting_started.md index 55240b37..98818d85 100644 --- a/panel/1.0/getting_started.md +++ b/panel/1.0/getting_started.md @@ -89,7 +89,7 @@ and then set the correct permissions on the `storage/` and `bootstrap/cache/` di allow us to store files as well as keep a speedy cache available to reduce load times. ``` bash -curl -Lo panel.tar.gz https://github.com/pterodactyl/panel/releases/download/v1.0.0-rc.2/panel.tar.gz +curl -Lo panel.tar.gz https://github.com/pterodactyl/panel/releases/download/v1.0.0-rc.3/panel.tar.gz tar -xzvf panel.tar.gz chmod -R 755 storage/* bootstrap/cache/ ``` diff --git a/panel/1.0/upgrade/0.7_to_1.0.md b/panel/1.0/upgrade/0.7_to_1.0.md index 8372fbb8..b4004989 100644 --- a/panel/1.0/upgrade/0.7_to_1.0.md +++ b/panel/1.0/upgrade/0.7_to_1.0.md @@ -29,7 +29,7 @@ are not always detected properly, so simply uppacking over this location will re ``` bash # Delete the app directory to ensure we start with a clean slate here. This will not affect any # of your settings or servers. -curl -L -o panel.tar.gz https://github.com/pterodactyl/panel/releases/download/v1.0.0-rc.2/panel.tar.gz +curl -L -o panel.tar.gz https://github.com/pterodactyl/panel/releases/download/v1.0.0-rc.3/panel.tar.gz rm -rf $(find app public resources -depth | head -n -1 | grep -Fv "$(tar -tf panel.tar.gz)") # Download the updated files and delete the archive file. diff --git a/panel/1.0/upgrade/1.0.md b/panel/1.0/upgrade/1.0.md index dd143b9d..fb2122bf 100644 --- a/panel/1.0/upgrade/1.0.md +++ b/panel/1.0/upgrade/1.0.md @@ -1,6 +1,6 @@ # Upgrading 1.0 Series This documentation covers the process for upgrading within the `1.0.X` series of releases. This means upgrading from -— for example — `1.0.0-alpha.1` to `1.0.0-rc.2`. **Do not use this guide for upgrading from `0.7`.** +— for example — `1.0.0-alpha.1` to `1.0.0-rc.3`. **Do not use this guide for upgrading from `0.7`.** ::: danger Seriously, **stop** and read this warning. **Do not use this guide to upgrade from the 0.7 series.** You _will_ @@ -14,7 +14,7 @@ to ensure that you're in the `/var/www/pterodactyl` directory as the command bel into your current folder. ``` bash -curl -L https://github.com/pterodactyl/panel/releases/download/v1.0.0-rc.2/panel.tar.gz | tar -xzv +curl -L https://github.com/pterodactyl/panel/releases/download/v1.0.0-rc.3/panel.tar.gz | tar -xzv ``` Once all of the files are downloaded we need to set the correct permissions on the cache and storage directories to avoid diff --git a/wings/1.0/installing.md b/wings/1.0/installing.md index 3a953778..dd784801 100644 --- a/wings/1.0/installing.md +++ b/wings/1.0/installing.md @@ -95,7 +95,7 @@ run the commands below which will create the base directory and download the win ``` bash mkdir -p /etc/pterodactyl -curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/download/v1.0.0-rc.2/wings_linux_amd64 +curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/download/v1.0.0-rc.3/wings_linux_amd64 chmod u+x /usr/local/bin/wings ``` diff --git a/wings/1.0/migrating.md b/wings/1.0/migrating.md index 8e5cce9c..b98e5247 100644 --- a/wings/1.0/migrating.md +++ b/wings/1.0/migrating.md @@ -13,7 +13,7 @@ run the commands below which will create the base directory and download the win ``` bash mkdir -p /etc/pterodactyl -curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/download/v1.0.0-rc.2/wings_linux_amd64 +curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/download/v1.0.0-rc.3/wings_linux_amd64 chmod u+x /usr/local/bin/wings ``` diff --git a/wings/1.0/upgrading.md b/wings/1.0/upgrading.md index d76609e5..27f3dc63 100644 --- a/wings/1.0/upgrading.md +++ b/wings/1.0/upgrading.md @@ -5,7 +5,7 @@ Upgrading Wings is a painless process and should take less than a minute to comp First, download the updated wings binary into `/usr/local/bin`. ``` bash -curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/download/v1.0.0-rc.2/wings_linux_amd64 +curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/download/v1.0.0-rc.3/wings_linux_amd64 chmod u+x /usr/local/bin/wings ```