From b8177318d9aacba295c80ca9035920c4a32d72cd Mon Sep 17 00:00:00 2001 From: Simon Dwyer Date: Fri, 23 Jul 2021 16:20:52 +1000 Subject: [PATCH] Bump version --- CHANGELOG.md | 2 +- UPGRADING.md | 2 +- VERSION | 2 +- initialise.sh | 2 +- lib/disco_app/version.rb | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a1d1b75..1d488f3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/UPGRADING.md b/UPGRADING.md index 1061cc27..729d661b 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -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 diff --git a/VERSION b/VERSION index 503a21de..267d7e01 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.18.2 +0.18.3 diff --git a/initialise.sh b/initialise.sh index 866ed004..a12c0ed3 100755 --- a/initialise.sh +++ b/initialise.sh @@ -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 '' diff --git a/lib/disco_app/version.rb b/lib/disco_app/version.rb index 8ee3eb44..de82e98e 100644 --- a/lib/disco_app/version.rb +++ b/lib/disco_app/version.rb @@ -1,5 +1,5 @@ module DiscoApp - VERSION = '0.18.2'.freeze + VERSION = '0.18.3'.freeze end