Skip to content

Commit

Permalink
Update release version
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Nov 25, 2023
1 parent 72e1ff9 commit 6957363
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions pages/01.quick-start/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ UserFrosting has a few system requirements. You need to make sure your local Use
Use Composer to create an empty project with the latest version of UserFrosting skeleton into a new `UserFrosting` folder. This will clone the skeleton repository and run the installation process.

```bash
composer create-project userfrosting/userfrosting UserFrosting "^5.0@dev"
composer create-project userfrosting/userfrosting UserFrosting "^5.0"
```
<!-- TODO : Change this for release -->

[notice=tip]During installation, you can choose **sqlite** as database provider if you don't have a database provider available.[/notice]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Now that your local development environment is setup and ready to go, it's final
Use Composer to create an empty project with the latest version of UserFrosting skeleton into a new `UserFrosting` folder:

```bash
composer create-project userfrosting/userfrosting UserFrosting "^5.0@dev"
composer create-project userfrosting/userfrosting UserFrosting "^5.0"
```

[notice=tip]Note the `UserFrosting` at the end of the command. This means `composer` will create new `UserFrosting` subdirectory inside the current location. You can change `UserFrosting` to whatever you like.[/notice]
Expand Down
2 changes: 1 addition & 1 deletion pages/04.installation/02.environment/02.docker/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ First, you'll need to install Docker. Just follow the installation instructions
For the next part, you'll need to use to command line. We'll use Composer through a Docker image to create an empty project with the latest version of UserFrosting skeleton into a new `UserFrosting` folder:

```bash
docker run --rm -it -v "$(pwd):/app" composer create-project userfrosting/userfrosting UserFrosting "^5.0@dev" --no-scripts --no-install --ignore-platform-reqs
docker run --rm -it -v "$(pwd):/app" composer create-project userfrosting/userfrosting UserFrosting "^5.0" --no-scripts --no-install --ignore-platform-reqs
```

[notice=tip]Note the `UserFrosting` in the command. This means Composer will create new `UserFrosting` subdirectory inside the current location. You can change `UserFrosting` to whatever you like.[/notice]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ taxonomy:
First thing to do is to create an empty sprinkle for our code to live in from the UserFrosting 5 Skeleton. We'll call this sprinkle `Pastries`. As described in the [Installation Chapter](/installation) chapter, start by creating an empty base using the Skeleton template:

```bash
$ composer create-project userfrosting/userfrosting UserFrosting "^5.0.0"
$ composer create-project userfrosting/userfrosting UserFrosting "^5.0"
```

Make sure the default skeleton app is working. Once the base website is created and working, we can start creating our new page.
Expand Down

0 comments on commit 6957363

Please sign in to comment.