Skip to content

Commit

Permalink
Merge tag '0.18.3' into develop
Browse files Browse the repository at this point in the history
Release 0.18.3
Simon Dwyer committed Jul 23, 2021
2 parents 2057ba4 + 2623403 commit d720793
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Change Log
All notable changes to this project will be documented in this file.

## Unreleased
## 0.18.3 - 2021-07-23
### Changed
- Address the [Shopify API deprecation of page-based pagination](https://shopify.dev/changelog/page-based-pagination-replaced-by-cursor-based-pagination-across-multiple-rest-endpoints) in favour of cursor-based in the `Synchronises` concern.

2 changes: 1 addition & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ 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.18.2 to unreleased
## Upgrading from 0.18.2 to 0.18.3
The `synchronise_all` method for models with the `Synchronises` concern has been updated to use cursor-based pagination per the [Shopify API deprecation](https://shopify.dev/changelog/page-based-pagination-replaced-by-cursor-based-pagination-across-multiple-rest-endpoints). Ad hoc app code updates to address this may now be removed.

## Upgrading from 0.18.1 to 0.18.2
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.18.2
0.18.3
2 changes: 1 addition & 1 deletion initialise.sh
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ fi
APP_NAME="$1"
RAILS_VERSION="${RAILS_VERSION:-6.0.2}"
NODE_VERSION="${NODE_VERSION:-13.7.0}"
DISCO_APP_VERSION="${DISCO_APP_VERSION:-0.18.2}"
DISCO_APP_VERSION="${DISCO_APP_VERSION:-0.18.3}"

if [ -z $APP_NAME ]; then
echo ''
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.18.2'.freeze
VERSION = '0.18.3'.freeze

end

0 comments on commit d720793

Please sign in to comment.