Skip to content

Commit

Permalink
Bump version to 4.2.0 馃殌
Browse files Browse the repository at this point in the history
  • Loading branch information
damianlegawiec committed Feb 24, 2021
1 parent 25da64e commit 3051143
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/lib/spree/core/version.rb
@@ -1,5 +1,5 @@
module Spree
def self.version
'4.2.0.rc5'
'4.2.0'
end
end
10 changes: 4 additions & 6 deletions guides/src/content/developer/tutorials/existing_app_tutorial.md
Expand Up @@ -21,10 +21,10 @@ in your project root directory.
**Rails 6.0 and 6.1**

```ruby
gem 'spree', '~> 4.2.0.rc5'
gem 'spree', '~> 4.2.0'
gem 'spree_auth_devise', '~> 4.3'
gem 'spree_gateway', '~> 3.9'
gem 'sassc', github: 'sass/sassc-ruby', branch: 'master'
gem 'sassc', github: 'sass/sassc-ruby', branch: 'master' # only needed for MacOS and Ruby 3.0
```

**Rails 5.2**
Expand Down Expand Up @@ -74,11 +74,10 @@ in your project root directory.
### Installation options

By default, the installation generator (`rails g spree:install`) will run
migrations as well as adding seed and sample data and will copy storefront data
for easy customization (if `spree_frontend` available). This can be disabled using
migrations as well as adding seed and sample data. This can be disabled using

```shell
rails g spree:install --migrate=false --sample=false --seed=false --copy_storefront=false
rails g spree:install --migrate=false --sample=false --seed=false
```

You can always perform any of these steps later by using these commands.
Expand All @@ -88,7 +87,6 @@ bundle exec rake railties:install:migrations
bundle exec rails db:migrate
bundle exec rails db:seed
bundle exec rake spree_sample:load
bundle exec rails g spree:frontend:copy_storefront
```

### Headless installation (API-mode)
Expand Down
Expand Up @@ -18,7 +18,7 @@ This is the safest and recommended method.
## Update Gemfile

```ruby
gem 'spree', '~> 4.2.0.rc5'
gem 'spree', '~> 4.2.0'
gem 'spree_auth_devise', '~> 4.3'
gem 'spree_gateway', '~> 3.9'
gem 'spree_i18n', '~> 5.0'
Expand Down

0 comments on commit 3051143

Please sign in to comment.