Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
pillep committed Apr 15, 2020
1 parent f9acf53 commit f38e6c7
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Change Log
All notable changes to this project will be documented in this file.

## 0.18.0 - 2020-04-15
### Changed
- Upgraded to Rails 6
- Upgraded to Ruby 2.6.5
- Upgraded to shopify_api 9
- Upgraded to shopify_app 12
- Upgraded to sidekiq 6
- Replaced .ruby-version with .tool-versions
- Updated Timber initialiser
- Updated README

## 0.17.0 - 2019-07-16
### Added
- Timber logging for generated apps
Expand Down
16 changes: 16 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@ This file contains more detailed instructions on what's required when updating
an application between one release version of the gem to the next. It's intended
as more in-depth accompaniment to the notes in `CHANGELOG.md` for each version.

## Upgrading from 0.17.0 to 0.18.0
Upgrade to Rails 6 ([guide](https://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#upgrading-from-rails-5-2-to-rails-6-0)).

Upgrade to Ruby 2.6.5.

Upgrade the following gems:
```
gem 'shopify_api', '~> 9.0'
gem 'shopify_app', '~> 12.0.7'
gem 'sidekiq', '~> 6.0'
```

Additionally, you might have to upgrade `react-rails`, `uglifier`, `vcr` and `webmock` gems.

Add `SHOPIFY_APP_API_VERSION` env variable.

## Upgrading from 0.16.1 to 0.17.1
Upgrade your app to Rails version 5.2.2.

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.17.0
0.18.0
2 changes: 1 addition & 1 deletion initialise.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
APP_NAME="$1"
RAILS_VERSION="${RAILS_VERSION:-6.0.1}"
RUBY_VERSION="${RUBY_VERSION:-2.6.5}"
DISCO_APP_VERSION="${DISCO_APP_VERSION:-0.17.0}"
DISCO_APP_VERSION="${DISCO_APP_VERSION:-0.18.0}"

if [ -z $APP_NAME ]; then
echo "Usage: ./initialise.sh app_name (rails_version) (ruby_version) (disco_app_version)"
Expand Down
2 changes: 1 addition & 1 deletion lib/disco_app/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module DiscoApp

VERSION = '0.17.0'.freeze
VERSION = '0.18.0'.freeze

end

0 comments on commit f38e6c7

Please sign in to comment.