Skip to content

Commit dcbef4e

Browse files
committed
Update version to 8.1 in the getting started guide
1 parent bcf0283 commit dcbef4e

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

guides/source/getting_started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ TIP: Any commands prefaced with a dollar sign `$` should be run in the terminal.
7373
For this project, you will need:
7474

7575
* Ruby 3.2 or newer
76-
* Rails 8.0.0 or newer
76+
* Rails 8.1.0 or newer
7777
* A code editor
7878

7979
Follow the [Install Ruby on Rails Guide](install_ruby_on_rails.html) if you need
@@ -85,10 +85,10 @@ printed out:
8585

8686
```bash
8787
$ rails --version
88-
Rails 8.0.0
88+
Rails 8.1.0
8989
```
9090

91-
The version shown should be Rails 8.0.0 or higher.
91+
The version shown should be Rails 8.1.0 or higher.
9292

9393
### Creating Your First Rails App
9494

@@ -181,7 +181,7 @@ your Rails application:
181181

182182
```bash
183183
=> Booting Puma
184-
=> Rails 8.0.0 application starting in development
184+
=> Rails 8.1.0 application starting in development
185185
=> Run `bin/rails server --help` for more startup options
186186
Puma starting in single mode...
187187
* Puma version: 6.4.3 (ruby 3.3.5-p100) ("The Eagle of Durango")
@@ -279,7 +279,7 @@ the migration does. This is located in
279279
`db/migrate/<timestamp>_create_products.rb`:
280280

281281
```ruby
282-
class CreateProducts < ActiveRecord::Migration[8.0]
282+
class CreateProducts < ActiveRecord::Migration[8.1]
283283
def change
284284
create_table :products do |t|
285285
t.string :name
@@ -345,7 +345,7 @@ $ bin/rails console
345345
You will be presented with a prompt like the following:
346346

347347
```irb
348-
Loading development environment (Rails 8.0.0)
348+
Loading development environment (Rails 8.1.0)
349349
store(dev)>
350350
```
351351

@@ -354,7 +354,7 @@ printing out the Rails version:
354354

355355
```irb
356356
store(dev)> Rails.version
357-
=> "8.0.0"
357+
=> "8.1.0"
358358
```
359359

360360
It works!

0 commit comments

Comments
 (0)