From 1e5e6770a7801eaa61c1c3d019dad917ed144d23 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Sun, 18 Dec 2022 15:49:55 +0000 Subject: [PATCH 0001/1275] Silly Little App 0.0.2 --- README.md | 8 ++++---- appfair.xcconfig | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6c6eeb180e4a..3a2b4369ec3d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## App-Name: an App Fair app +## Silly-Little-App: an App Fair app The _Description_ section of the `README.md` file contains the description of this app as it will appear in App Fair. @@ -10,15 +10,15 @@ It supports **basic** formatting, but not images, lists, or links. ### App Fair Installation Once the initial release has been created, -App-Name can be downloaded and installed using +Silly-Little-App can be downloaded and installed using [App Fair.app](https://www.appfair.app) by opening -[appfair.app/fair?app=App-Name](https://appfair.app/fair?app=App-Name). +[appfair.app/fair?app=Silly-Little-App](https://appfair.app/fair?app=Silly-Little-App). ## Support The landing page for this app is available at -[https://App-Name.github.io/App/](https://App-Name.github.io/App/). +[https://Silly-Little-App.github.io/App/](https://Silly-Little-App.github.io/App/). Community Support for this app is available on the [Discussion](../../discussions) forums. diff --git a/appfair.xcconfig b/appfair.xcconfig index 803c58dc821e..56ea8438c919 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -1,13 +1,13 @@ // The configuration file for your App Fair App. See: https://www.appfair.net // PRODUCT_NAME is the app name, consisting of two words separated by a space -PRODUCT_NAME = App Name +PRODUCT_NAME = Silly Little App // PRODUCT_BUNDLE_IDENTIFIER must be in the form: "app.App-Name" -PRODUCT_BUNDLE_IDENTIFIER = app.App-Name +PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1 +MARKETING_VERSION = 0.0.2 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1 From 3cb3e783e07f0946d5fea6afc62ab3b356438e2b Mon Sep 17 00:00:00 2001 From: Marc Prud'hommeaux Date: Wed, 21 Dec 2022 15:17:57 -0500 Subject: [PATCH 0002/1275] Create CNAME --- docs/CNAME | 1 + 1 file changed, 1 insertion(+) create mode 100644 docs/CNAME diff --git a/docs/CNAME b/docs/CNAME new file mode 100644 index 000000000000..8542e1dc184a --- /dev/null +++ b/docs/CNAME @@ -0,0 +1 @@ +silly-little-app.appfair.net \ No newline at end of file From e1a199ed71827ec2580ce380843ca37fe4e1da76 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 15:20:41 -0500 Subject: [PATCH 0003/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 56ea8438c919..20dcfe8724be 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2 +MARKETING_VERSION = 0.0.1 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1 +CURRENT_PROJECT_VERSION = 149 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From 44f48ffe6d39fc897b3465626d8fd73352f7aa35 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 15:39:36 -0500 Subject: [PATCH 0004/1275] --- .github/workflows/auto_release.yml | 22 ++++++++++++++++++++++ App.yml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/auto_release.yml diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml new file mode 100644 index 000000000000..2b59b8690d3b --- /dev/null +++ b/.github/workflows/auto_release.yml @@ -0,0 +1,22 @@ +name: "Auto Release" +on: + workflow_dispatch: + +jobs: + create-release: + runs-on: macos-latest + timeout-minutes: 30 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + steps: + - name: Get swift version + run: swift --version + + - name: Checkout + uses: actions/checkout@v2 + + - name: Run fairtool + run: | + swift run fairtool version + diff --git a/App.yml b/App.yml index 43eb90d0181d..a61ef8d97434 100644 --- a/App.yml +++ b/App.yml @@ -23,7 +23,7 @@ app: # marketplace-issued indentifiers for the distribution channels for this app markets: - #testflight: "0123456789" # the assigned TestFlight id + testflight: "1661006261" # the assigned TestFlight id #testflighturl: "https://…" # the public TestFlight beta link #appstore: "0123456789" # the assigned App Store id #appstoreurl: "https://…" # the official App Store landing page From ee41473fd2c6a2afcfae4c5ec54b7a247a441727 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 17:04:10 -0500 Subject: [PATCH 0005/1275] --- .github/workflows/auto_release.yml | 9 ++++++++- ] | 26 ++++++++++++++++++++++++++ appfair.xcconfig | 4 ++-- 3 files changed, 36 insertions(+), 3 deletions(-) create mode 100644 ] diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 2b59b8690d3b..c98d8a7b2f90 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -1,6 +1,10 @@ name: "Auto Release" +# This command runs periodically and attempts to create and submit +# a new version of the app to the App Store. on: workflow_dispatch: + schedule: + - cron: '0 0,12 * * *' jobs: create-release: @@ -17,6 +21,9 @@ jobs: uses: actions/checkout@v2 - name: Run fairtool + run: swift run fairtool version + + - name: Bump release run: | - swift run fairtool version + swift run fairtool app configure # --bump patch --output json diff --git a/] b/] new file mode 100644 index 000000000000..b89edf2dea5b --- /dev/null +++ b/] @@ -0,0 +1,26 @@ +name: "Auto Release" +# This command runs periodically and attempts to create and submit +# a new version of the app to the App Store. +on: + workflow_dispatch: + schedule: + - cron: '0 0,12 * * *' + +jobs: + create-release: + runs-on: macos-latest + timeout-minutes: 30 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + steps: + - name: Get swift version + run: swift --version + + - name: Checkout + uses: actions/checkout@v2 + + - name: Run fairtool + run: | + swift run fairtool version + diff --git a/appfair.xcconfig b/appfair.xcconfig index 20dcfe8724be..9b6249876220 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1 +MARKETING_VERSION = 0.0.3 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 149 +CURRENT_PROJECT_VERSION = 151 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From be5a2aff2075dc87efd5dd97ea039d6b5aabaad3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 21:12:26 -0500 Subject: [PATCH 0006/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9b6249876220..84ff36246a3c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.3 +MARKETING_VERSION = 0.0.4 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 151 +CURRENT_PROJECT_VERSION = 152 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From 7dc4fd9b379ca98b886bbac38c5e434267185d10 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 02:26:53 +0000 Subject: [PATCH 0007/1275] Silly Little App 0.0.5 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 84ff36246a3c..789ed63fb79f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.4 +MARKETING_VERSION = 0.0.5 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6f07c7488d996b06d9e0300b4490fb6c09bb061a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 21:32:41 -0500 Subject: [PATCH 0008/1275] --- .github/workflows/auto_release.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index c98d8a7b2f90..12f32e49b0f9 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -2,9 +2,10 @@ name: "Auto Release" # This command runs periodically and attempts to create and submit # a new version of the app to the App Store. on: + #push: workflow_dispatch: - schedule: - - cron: '0 0,12 * * *' + #schedule: + #- cron: '0 0,12 * * *' jobs: create-release: @@ -25,5 +26,10 @@ jobs: - name: Bump release run: | - swift run fairtool app configure # --bump patch --output json + swift run fairtool app configure --bump patch | tee /tmp/fairv.json + TAGNAME=`cat /tmp/fairv.json | jq -re '.[0].version'` + git add appfair.xcconfig + git commit -m "Auto-release ${TAGNAME}" + git tag -s -a "${TAGNAME}" -m "Release ${TAGNAME}" + git push --follow-tags From a81abc6ff59f54cae83a7fb6eb71bd96a11300ae Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 21:32:51 -0500 Subject: [PATCH 0009/1275] From afca1e437a594bbb871d6f03db08f1cbb4ccde5e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 21:41:09 -0500 Subject: [PATCH 0010/1275] --- .github/workflows/auto_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 12f32e49b0f9..169df0531b80 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -30,6 +30,6 @@ jobs: TAGNAME=`cat /tmp/fairv.json | jq -re '.[0].version'` git add appfair.xcconfig git commit -m "Auto-release ${TAGNAME}" - git tag -s -a "${TAGNAME}" -m "Release ${TAGNAME}" + git tag -a "${TAGNAME}" -m "Release ${TAGNAME}" git push --follow-tags From 8d8e505058d05f94791eadc0060f5a3cc4e4482a Mon Sep 17 00:00:00 2001 From: runner Date: Thu, 22 Dec 2022 02:44:22 +0000 Subject: [PATCH 0011/1275] Auto-release 0.0.6 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 789ed63fb79f..349431a099d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.5 +MARKETING_VERSION = 0.0.6 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4141bba37fc84700d8aa57710f471d9895be96b8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 21:50:02 -0500 Subject: [PATCH 0012/1275] --- .github/workflows/auto_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 169df0531b80..f7f9f86c1ac9 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -9,10 +9,10 @@ on: jobs: create-release: - runs-on: macos-latest + runs-on: ubuntu-latest timeout-minutes: 30 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_TOKEN: ${{ secrets.CI_ACCESS_TOKEN }} steps: - name: Get swift version From e50f205d92eef76909ad3d0eb9976a8679eb64c7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 21:50:10 -0500 Subject: [PATCH 0013/1275] From 69b03ff0e7d8f852f0b75471d09e5903ca408d60 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 21:53:43 -0500 Subject: [PATCH 0014/1275] --- .github/workflows/auto_release.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index f7f9f86c1ac9..2c81a4ea06ba 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -26,10 +26,13 @@ jobs: - name: Bump release run: | - swift run fairtool app configure --bump patch | tee /tmp/fairv.json - TAGNAME=`cat /tmp/fairv.json | jq -re '.[0].version'` - git add appfair.xcconfig - git commit -m "Auto-release ${TAGNAME}" - git tag -a "${TAGNAME}" -m "Release ${TAGNAME}" - git push --follow-tags + swift run fairtool app configure --bump patch | tee /tmp/fairv.json + TAGNAME=`cat /tmp/fairv.json | jq -re '.[0].version'` + git config --global user.name 'fair-ground action' + git config --global user.email 'fair-ground@users.noreply.github.com' + + git add appfair.xcconfig + git commit -m "Auto-release ${TAGNAME}" + git tag -a "${TAGNAME}" -m "Release ${TAGNAME}" + git push --follow-tags From ef0aeb9f0790c10570c956c76038c8662545cb37 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 02:55:28 +0000 Subject: [PATCH 0015/1275] Auto-release 0.0.7 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 349431a099d2..75824f914393 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.6 +MARKETING_VERSION = 0.0.7 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c6e451a818f8abf78d90df8b3aff50e4a97bccd1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 22:02:08 -0500 Subject: [PATCH 0016/1275] --- .github/workflows/auto_release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 2c81a4ea06ba..2bb2662ab1a1 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -20,6 +20,8 @@ jobs: - name: Checkout uses: actions/checkout@v2 + with: + token: ${{ env.GITHUB_TOKEN }} - name: Run fairtool run: swift run fairtool version From 7b2f83214534d2e77197ad1d0d6893826486360d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 22:02:19 -0500 Subject: [PATCH 0017/1275] From f5de8f0ba1a24dfb164db0270dd5dd402a0eaf6f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 22:05:07 -0500 Subject: [PATCH 0018/1275] --- .github/workflows/auto_release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 2bb2662ab1a1..a9c05f9b5134 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -1,4 +1,5 @@ name: "Auto Release" + # This command runs periodically and attempts to create and submit # a new version of the app to the App Store. on: From 2fa46c12a76453868f010e2244c4a1b93b9ab17d Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 03:06:30 +0000 Subject: [PATCH 0019/1275] Auto-release 0.0.8 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 75824f914393..1082838188d3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.7 +MARKETING_VERSION = 0.0.8 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 85b3918a22dda241f58d35aa228145da198a858a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 22:14:59 -0500 Subject: [PATCH 0020/1275] --- .github/workflows/auto_release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index a9c05f9b5134..5c96d835804b 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -30,12 +30,17 @@ jobs: - name: Bump release run: | swift run fairtool app configure --bump patch | tee /tmp/fairv.json + APPID=`cat /tmp/fairv.json | jq -re '.[0].bundleIdentifier'` TAGNAME=`cat /tmp/fairv.json | jq -re '.[0].version'` git config --global user.name 'fair-ground action' git config --global user.email 'fair-ground@users.noreply.github.com' + # Trigger the release git add appfair.xcconfig git commit -m "Auto-release ${TAGNAME}" git tag -a "${TAGNAME}" -m "Release ${TAGNAME}" git push --follow-tags + # Trigger the integration + gh pr create --title "${APPID} ${TAGNAME}" --body "Auto-release ${TAGNAME}" + From f069d8a17b10602873c8424fea92d4393a99bba1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 22:24:32 -0500 Subject: [PATCH 0021/1275] From 97954b9ded97d263131bdb44a5f6710a9dceb184 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 03:26:13 +0000 Subject: [PATCH 0022/1275] Auto-release 0.0.9 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1082838188d3..de00874c1bcf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.8 +MARKETING_VERSION = 0.0.9 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 889bec7e51d69405da2dc795bb2b0e160cd04b53 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 22:36:13 -0500 Subject: [PATCH 0023/1275] --- .github/workflows/auto_release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 5c96d835804b..af7c530cb918 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -41,6 +41,8 @@ jobs: git tag -a "${TAGNAME}" -m "Release ${TAGNAME}" git push --follow-tags + cat .git/config + # Trigger the integration - gh pr create --title "${APPID} ${TAGNAME}" --body "Auto-release ${TAGNAME}" + gh pr create --repo appfair/App --title "${APPID} ${TAGNAME}" --body "Auto-release ${TAGNAME}" From 02a7257a4eec9a16288bb2eb0210fecfe1c072ba Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 03:37:54 +0000 Subject: [PATCH 0024/1275] Auto-release 0.0.10 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index de00874c1bcf..4c0bb2563463 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.9 +MARKETING_VERSION = 0.0.10 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0182c0da3e8a8ecf4a40f2d90f9b6e6e22627676 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 22:40:43 -0500 Subject: [PATCH 0025/1275] --- .github/workflows/auto_release.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index af7c530cb918..d2d0dbc1a073 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -29,9 +29,12 @@ jobs: - name: Bump release run: | - swift run fairtool app configure --bump patch | tee /tmp/fairv.json - APPID=`cat /tmp/fairv.json | jq -re '.[0].bundleIdentifier'` - TAGNAME=`cat /tmp/fairv.json | jq -re '.[0].version'` + swift run fairtool app configure -J --bump patch | tee /tmp/fairv.json + + APPNAME=`cat /tmp/fairv.json | jq -re '.productName'` + APPID=`cat /tmp/fairv.json | jq -re '.bundleIdentifier'` + TAGNAME=`cat /tmp/fairv.json | jq -re '.version'` + git config --global user.name 'fair-ground action' git config --global user.email 'fair-ground@users.noreply.github.com' @@ -44,5 +47,5 @@ jobs: cat .git/config # Trigger the integration - gh pr create --repo appfair/App --title "${APPID} ${TAGNAME}" --body "Auto-release ${TAGNAME}" + gh pr create --repo appfair/App --title "${APPNAME} ${TAGNAME}" --body "Auto-release ${TAGNAME}" From 5ab14fda5ec16e83706ec8cc659cc2996607e162 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 03:42:40 +0000 Subject: [PATCH 0026/1275] Auto-release 0.0.11 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c0bb2563463..5b33d64ff3bb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.10 +MARKETING_VERSION = 0.0.11 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a0e9dde707281db1684f9e0e2cc6a880e534355a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 23:08:35 -0500 Subject: [PATCH 0027/1275] --- .github/workflows/auto_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index d2d0dbc1a073..3bb6086676e8 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -5,8 +5,8 @@ name: "Auto Release" on: #push: workflow_dispatch: - #schedule: - #- cron: '0 0,12 * * *' + schedule: + - cron: '0 0,12 * * *' jobs: create-release: From 2415afbfa15936996415261cc666d3f139452c88 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 04:49:56 +0000 Subject: [PATCH 0028/1275] Silly Little App 0.0.12 --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5b33d64ff3bb..597549bc5798 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.11 +MARKETING_VERSION = 0.0.12 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 @@ -19,7 +19,7 @@ APP_CATEGORY = public.app-category.utilities // SUPPORTED_PLATFORMS = macosx // SUPPORTED_PLATFORMS = iphoneos iphonesimulator // SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator android -SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator +SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator // On-device testing may need to override the bundle ID // PRODUCT_BUNDLE_IDENTIFIER[config=Debug][sdk=iphoneos*] = myorg.app.App-Name From 758d0b50c84091aafca9da5caeab2529cd301799 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 05:05:01 +0000 Subject: [PATCH 0029/1275] Auto-release 0.0.13 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 597549bc5798..ebbbf45c575b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.12 +MARKETING_VERSION = 0.0.13 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6c3382a21fc4d2e947d658703fe887c1939d1d14 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 12:20:19 +0000 Subject: [PATCH 0030/1275] Auto-release 0.0.14 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ebbbf45c575b..ca30942a5483 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.13 +MARKETING_VERSION = 0.0.14 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 641e8c0bc6b9df603d245a101de9195362e85be3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Dec 2022 09:44:35 -0500 Subject: [PATCH 0031/1275] --- .github/workflows/auto_release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 3bb6086676e8..678e03cff93e 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -6,14 +6,15 @@ on: #push: workflow_dispatch: schedule: - - cron: '0 0,12 * * *' + - cron: '0 * * * *' + #- cron: '0 0,12 * * *' jobs: create-release: runs-on: ubuntu-latest timeout-minutes: 30 env: - GITHUB_TOKEN: ${{ secrets.CI_ACCESS_TOKEN }} + GITHUB_TOKEN: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} steps: - name: Get swift version From c9d804b8bc67a7152abd3d078615e179caecb977 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 14:46:07 +0000 Subject: [PATCH 0032/1275] Auto-release 0.0.15 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ca30942a5483..028fc2db7233 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.14 +MARKETING_VERSION = 0.0.15 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 480f005d647beec3dc2e482b2dd65e80edeae816 Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Thu, 22 Dec 2022 15:16:30 +0000 Subject: [PATCH 0033/1275] Auto-release 0.0.16 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 028fc2db7233..83332a3dc390 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.15 +MARKETING_VERSION = 0.0.16 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 916433c86ec30cc955694c4ab45e26696d90f991 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Dec 2022 10:29:12 -0500 Subject: [PATCH 0034/1275] --- .github/workflows/auto_release.yml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 678e03cff93e..3f24adc8e156 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -1,4 +1,4 @@ -name: "Auto Release" +name: "Scheduled Automatic Release" # This command runs periodically and attempts to create and submit # a new version of the app to the App Store. @@ -6,7 +6,7 @@ on: #push: workflow_dispatch: schedule: - - cron: '0 * * * *' + - cron: '30 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 * * *' #- cron: '0 0,12 * * *' jobs: @@ -25,28 +25,32 @@ jobs: with: token: ${{ env.GITHUB_TOKEN }} + - name: Setup git + run: | + git config --global user.name 'appfairbot' + git config --global user.email 'appfairbot@appfair.net' + - name: Run fairtool run: swift run fairtool version - name: Bump release run: | + # update the appfair.xcconfig with a new patch version swift run fairtool app configure -J --bump patch | tee /tmp/fairv.json + # extract build configuration variables from output APPNAME=`cat /tmp/fairv.json | jq -re '.productName'` APPID=`cat /tmp/fairv.json | jq -re '.bundleIdentifier'` TAGNAME=`cat /tmp/fairv.json | jq -re '.version'` - git config --global user.name 'fair-ground action' - git config --global user.email 'fair-ground@users.noreply.github.com' - - # Trigger the release + # Push a semver tag to trigger a release of + # https://github.com/Silly-Little-App/App.git git add appfair.xcconfig git commit -m "Auto-release ${TAGNAME}" git tag -a "${TAGNAME}" -m "Release ${TAGNAME}" git push --follow-tags - cat .git/config - - # Trigger the integration + # Create a pull request for https://github.com/appfair/App.git + # to trigger the integration and distribution gh pr create --repo appfair/App --title "${APPNAME} ${TAGNAME}" --body "Auto-release ${TAGNAME}" From dd04e9e4d7311721458a279446b13f3bfa8c4dae Mon Sep 17 00:00:00 2001 From: appfairbot Date: Thu, 22 Dec 2022 15:39:29 +0000 Subject: [PATCH 0035/1275] Auto-release 0.0.17 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 83332a3dc390..06c7ea68a77b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.16 +MARKETING_VERSION = 0.0.17 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7f7a7ea6594df08b72075a68c77b043b3e405baa Mon Sep 17 00:00:00 2001 From: appfairbot Date: Thu, 22 Dec 2022 16:44:18 +0000 Subject: [PATCH 0036/1275] Auto-release 0.0.18 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 06c7ea68a77b..b270972a80c0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.17 +MARKETING_VERSION = 0.0.18 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4d2b4c2d8152365797016aea888f27794ce13e2e Mon Sep 17 00:00:00 2001 From: appfairbot Date: Thu, 22 Dec 2022 17:34:10 +0000 Subject: [PATCH 0037/1275] Auto-release 0.0.19 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b270972a80c0..627bcf44fe6a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.18 +MARKETING_VERSION = 0.0.19 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f091c68ab5622e738c96f912bcc4cf6b97b9f040 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Thu, 22 Dec 2022 18:37:55 +0000 Subject: [PATCH 0038/1275] Auto-release 0.0.20 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 627bcf44fe6a..a35a339409dc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.19 +MARKETING_VERSION = 0.0.20 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 77359ac86742612d4137baaa5905ffe2274c622d Mon Sep 17 00:00:00 2001 From: appfairbot Date: Thu, 22 Dec 2022 19:34:41 +0000 Subject: [PATCH 0039/1275] Auto-release 0.0.21 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a35a339409dc..6a999ec44571 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.20 +MARKETING_VERSION = 0.0.21 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b4ba31984b1f1528129677ca61fc1c90d2335473 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Thu, 22 Dec 2022 20:34:27 +0000 Subject: [PATCH 0040/1275] Auto-release 0.0.22 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6a999ec44571..d211068f7988 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.21 +MARKETING_VERSION = 0.0.22 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c4b59ed223fc3328d60f487ca82c857dd34c0326 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Thu, 22 Dec 2022 21:35:03 +0000 Subject: [PATCH 0041/1275] Auto-release 0.0.23 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d211068f7988..ce6a8072bb86 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.22 +MARKETING_VERSION = 0.0.23 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d2dab6699c67c75bd4a291e1289f467aa753aab5 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Thu, 22 Dec 2022 22:34:37 +0000 Subject: [PATCH 0042/1275] Auto-release 0.0.24 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ce6a8072bb86..3e4203f48900 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.23 +MARKETING_VERSION = 0.0.24 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6ac23b09b961d9cfe7116b703579bbb19cc2b897 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Thu, 22 Dec 2022 23:34:45 +0000 Subject: [PATCH 0043/1275] Auto-release 0.0.25 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e4203f48900..0fcbcb2c4b9b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.24 +MARKETING_VERSION = 0.0.25 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0da8625556a0d94b8d1008126ed981531536625d Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 01:53:32 +0000 Subject: [PATCH 0044/1275] Auto-release 0.0.26 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0fcbcb2c4b9b..3e682544d584 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.25 +MARKETING_VERSION = 0.0.26 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 55695a1a8280ae1398fbb8213782d87228621a66 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 02:49:55 +0000 Subject: [PATCH 0045/1275] Auto-release 0.0.27 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e682544d584..685b63e27d2b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.26 +MARKETING_VERSION = 0.0.27 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7e3b7a1e4afd385d85179f60754dc4cffd917ca8 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 03:34:53 +0000 Subject: [PATCH 0046/1275] Auto-release 0.0.28 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 685b63e27d2b..aa46e4f1a144 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.27 +MARKETING_VERSION = 0.0.28 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c37f1e0853881444cea51bee98460926523ed11e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Dec 2022 22:58:55 -0500 Subject: [PATCH 0047/1275] --- .github/workflows/auto_release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 3f24adc8e156..3af7c9f48d5a 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -6,8 +6,7 @@ on: #push: workflow_dispatch: schedule: - - cron: '30 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23 * * *' - #- cron: '0 0,12 * * *' + - cron: '0 0,12 * * *' jobs: create-release: From 4c81a58800358b0b1e839f616d023f8e7e0bfd3e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Dec 2022 22:59:10 -0500 Subject: [PATCH 0048/1275] From d304d9cf49c3a736787a32f0dc46dec27a0d9fd1 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 12:23:48 +0000 Subject: [PATCH 0049/1275] Auto-release 0.0.29 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aa46e4f1a144..4fdb6219d443 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.28 +MARKETING_VERSION = 0.0.29 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f146b254822adc953da5517fec5b16b7e7668c18 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 16:05:26 +0000 Subject: [PATCH 0050/1275] Auto-release 0.0.30 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4fdb6219d443..0b25735f86f8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.29 +MARKETING_VERSION = 0.0.30 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From eb2cdd7b3e10612ee0be2ed39ed42979fc57672e Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 16:56:57 +0000 Subject: [PATCH 0051/1275] Auto-release 0.0.31 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0b25735f86f8..a4fe1c952779 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.30 +MARKETING_VERSION = 0.0.31 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8fd2eec64d2cb36d2963257d8f115fd9ee2681bd Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 18:37:41 +0000 Subject: [PATCH 0052/1275] Auto-release 0.0.32 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a4fe1c952779..e50865ef7798 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.31 +MARKETING_VERSION = 0.0.32 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 80ed19411605254df5e51de0693dc56c40084b22 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 14:33:14 -0500 Subject: [PATCH 0053/1275] --- .appconfig.json | 9 +++++++++ .github/workflows/auto_release.yml | 3 +-- 2 files changed, 10 insertions(+), 2 deletions(-) create mode 100644 .appconfig.json diff --git a/.appconfig.json b/.appconfig.json new file mode 100644 index 000000000000..7cb7680025b7 --- /dev/null +++ b/.appconfig.json @@ -0,0 +1,9 @@ +[ +{ + "buildNumber" : 152, + "bundleIdentifier" : "app.Silly-Little-App", + "productName" : "Silly Little App", + "supportedPlatforms" : " macosx iphoneos iphonesimulator", + "version" : "0.0.28" +} +] diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 3af7c9f48d5a..56b88eb8710f 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -3,7 +3,6 @@ name: "Scheduled Automatic Release" # This command runs periodically and attempts to create and submit # a new version of the app to the App Store. on: - #push: workflow_dispatch: schedule: - cron: '0 0,12 * * *' @@ -20,7 +19,7 @@ jobs: run: swift --version - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: token: ${{ env.GITHUB_TOKEN }} From bbe2780598bb4550bcdc86e2530a9309f04a649a Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 20:54:33 +0000 Subject: [PATCH 0054/1275] Auto-release 0.0.33 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e50865ef7798..0817a19c7f1d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.32 +MARKETING_VERSION = 0.0.33 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b58cd835e4f808bf4481ee562df22901fc93e54d Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 21:18:10 +0000 Subject: [PATCH 0055/1275] Auto-release 0.0.34 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0817a19c7f1d..c724d3377b9c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.33 +MARKETING_VERSION = 0.0.34 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 86519914cc458b7699a002a6b020c285f1145401 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 18:09:41 -0500 Subject: [PATCH 0056/1275] --- .github/workflows/auto_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 56b88eb8710f..685faa1fd013 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -5,7 +5,7 @@ name: "Scheduled Automatic Release" on: workflow_dispatch: schedule: - - cron: '0 0,12 * * *' + - cron: '0 0,8,16 * * *' jobs: create-release: From a39fad6caee5e1c32654a849f01333bfc6ef25a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 18:11:00 -0500 Subject: [PATCH 0057/1275] --- .github/workflows/auto_release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 685faa1fd013..67a3642897dd 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -34,7 +34,10 @@ jobs: - name: Bump release run: | # update the appfair.xcconfig with a new patch version - swift run fairtool app configure -J --bump patch | tee /tmp/fairv.json + swift run fairtool app configure -J --bump patch > /tmp/fairv.json + + # show configuration + cat /tmp/fairv.json | jq . # extract build configuration variables from output APPNAME=`cat /tmp/fairv.json | jq -re '.productName'` From 461a6f9be99664136121db2a8c5d314151b49595 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 18:25:09 -0500 Subject: [PATCH 0058/1275] --- .github/workflows/auto_release.yml | 102 ++++++++++++++--------------- 1 file changed, 49 insertions(+), 53 deletions(-) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/auto_release.yml index 67a3642897dd..cbb80d1ba544 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/auto_release.yml @@ -1,57 +1,53 @@ -name: "Scheduled Automatic Release" - -# This command runs periodically and attempts to create and submit -# a new version of the app to the App Store. -on: +name: "Release App" +# Release App creates a release of the app and issues a release PR. +# +# See: https://www.appfair.net +on: + #schedule: + #- cron: '0 0,8,16 * * *' workflow_dispatch: - schedule: - - cron: '0 0,8,16 * * *' + inputs: + bump_major: + type: boolean + description: 'Bump Version Major' + required: false + default: false + bump_minor: + type: boolean + description: 'Bump Version Minor' + required: false + default: false + bump_patch: + type: boolean + description: 'Bump Version Patch' + required: false + default: false + version: + type: string + description: 'Set App Version' + required: false jobs: - create-release: - runs-on: ubuntu-latest - timeout-minutes: 30 - env: - GITHUB_TOKEN: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} - - steps: - - name: Get swift version - run: swift --version - - - name: Checkout - uses: actions/checkout@v3 - with: - token: ${{ env.GITHUB_TOKEN }} - - - name: Setup git - run: | - git config --global user.name 'appfairbot' - git config --global user.email 'appfairbot@appfair.net' - - - name: Run fairtool - run: swift run fairtool version - - - name: Bump release - run: | - # update the appfair.xcconfig with a new patch version - swift run fairtool app configure -J --bump patch > /tmp/fairv.json - - # show configuration - cat /tmp/fairv.json | jq . - - # extract build configuration variables from output - APPNAME=`cat /tmp/fairv.json | jq -re '.productName'` - APPID=`cat /tmp/fairv.json | jq -re '.bundleIdentifier'` - TAGNAME=`cat /tmp/fairv.json | jq -re '.version'` - - # Push a semver tag to trigger a release of - # https://github.com/Silly-Little-App/App.git - git add appfair.xcconfig - git commit -m "Auto-release ${TAGNAME}" - git tag -a "${TAGNAME}" -m "Release ${TAGNAME}" - git push --follow-tags - - # Create a pull request for https://github.com/appfair/App.git - # to trigger the integration and distribution - gh pr create --repo appfair/App --title "${APPNAME} ${TAGNAME}" --body "Auto-release ${TAGNAME}" + call-workflow: + uses: appfair/fairground/.github/workflows/release.yml@main + with: + version: ${{ github.event.inputs.version }} + bump_major: ${{ github.event.inputs.bump_major == 'true' }} + bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} + bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} + +permissions: + actions: write + checks: write + contents: write + deployments: write + id-token: write + issues: write + discussions: write + packages: write + pages: write + pull-requests: write + repository-projects: write + security-events: write + statuses: write From b2c8cb1fdcb2ffbb86afff2c0ca624175fe85917 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 19:14:45 -0500 Subject: [PATCH 0059/1275] --- .github/workflows/{auto_release.yml => release.yml} | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) rename .github/workflows/{auto_release.yml => release.yml} (87%) diff --git a/.github/workflows/auto_release.yml b/.github/workflows/release.yml similarity index 87% rename from .github/workflows/auto_release.yml rename to .github/workflows/release.yml index cbb80d1ba544..2147604368c3 100644 --- a/.github/workflows/auto_release.yml +++ b/.github/workflows/release.yml @@ -3,28 +3,26 @@ name: "Release App" # # See: https://www.appfair.net on: + # Releases can be scheduled (e.g., weekly) if an access token is specified #schedule: - #- cron: '0 0,8,16 * * *' + # - cron: '0 0 0 * *' workflow_dispatch: inputs: bump_major: type: boolean description: 'Bump Version Major' - required: false default: false bump_minor: type: boolean description: 'Bump Version Minor' - required: false default: false bump_patch: type: boolean description: 'Bump Version Patch' - required: false - default: false + default: true version: type: string - description: 'Set App Version' + description: 'Specific App Version' required: false jobs: From 773be626985b9019cf108a747ca9bfa367a64ed4 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Sat, 24 Dec 2022 00:20:57 +0000 Subject: [PATCH 0060/1275] Auto-release 0.0.35 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c724d3377b9c..faf4df058db5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.34 +MARKETING_VERSION = 0.0.35 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2404af65d823d17281705a1363616ada0579b2fb Mon Sep 17 00:00:00 2001 From: appfairbot Date: Sat, 24 Dec 2022 00:22:57 +0000 Subject: [PATCH 0061/1275] Auto-release 0.0.36 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index faf4df058db5..a1191a3a2b08 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.35 +MARKETING_VERSION = 0.0.36 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7cd69fc45cfb122c8c094d6ba4324051119059ed Mon Sep 17 00:00:00 2001 From: fair-ground action Date: Sat, 24 Dec 2022 00:27:19 +0000 Subject: [PATCH 0062/1275] Auto-release 0.0.37 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a1191a3a2b08..6028b502351e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.36 +MARKETING_VERSION = 0.0.37 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e695c1818977991e0ed9d975faa3d42ad5e712d6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 00:34:30 +0000 Subject: [PATCH 0063/1275] Auto-release 0.0.38 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6028b502351e..bdc660239f73 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.37 +MARKETING_VERSION = 0.0.38 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 586e6a99277696d0c8544e22f844920d150a39a4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 00:39:14 +0000 Subject: [PATCH 0064/1275] Auto-release 0.0.39 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bdc660239f73..667f6984e3f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.38 +MARKETING_VERSION = 0.0.39 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b4ce13bef3e223472df005fda32328efe8d93437 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 19:37:55 -0500 Subject: [PATCH 0065/1275] --- .github/workflows/release.yml | 27 ++++++++------------------- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2147604368c3..26df7aa8d35d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,21 +10,25 @@ on: inputs: bump_major: type: boolean - description: 'Bump Version Major' + description: 'Bump major version' default: false bump_minor: type: boolean - description: 'Bump Version Minor' + description: 'Bump minor version' default: false bump_patch: type: boolean - description: 'Bump Version Patch' + description: 'Bump patch version' default: true version: type: string - description: 'Specific App Version' + description: 'Set specific version' required: false +permissions: + contents: write + pull-requests: write + jobs: call-workflow: uses: appfair/fairground/.github/workflows/release.yml@main @@ -34,18 +38,3 @@ jobs: bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} -permissions: - actions: write - checks: write - contents: write - deployments: write - id-token: write - issues: write - discussions: write - packages: write - pages: write - pull-requests: write - repository-projects: write - security-events: write - statuses: write - From b379b9154615b7f48c0bdcec09251ecab9a9a9f5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 19:41:36 -0500 Subject: [PATCH 0066/1275] From 83926540bea3f533f970f3306d9d963447ee9337 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 00:43:10 +0000 Subject: [PATCH 0067/1275] Auto-release 0.0.40 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 667f6984e3f7..6fa133c3bf48 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.39 +MARKETING_VERSION = 0.0.40 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 916c1a035021e322be40b823043964571844c6f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 19:46:30 -0500 Subject: [PATCH 0068/1275] --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 26df7aa8d35d..6787470ab267 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,8 +4,8 @@ name: "Release App" # See: https://www.appfair.net on: # Releases can be scheduled (e.g., weekly) if an access token is specified - #schedule: - # - cron: '0 0 0 * *' + schedule: + - cron: '0 0,8,16 * * *' workflow_dispatch: inputs: bump_major: @@ -37,4 +37,5 @@ jobs: bump_major: ${{ github.event.inputs.bump_major == 'true' }} bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} + token: ${{ secrets.GITHUB_TOKEN }} From 41f74137573a918872b6b27af8a92bfffbecd318 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 19:50:52 -0500 Subject: [PATCH 0069/1275] --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6787470ab267..705082d3da5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,5 +37,6 @@ jobs: bump_major: ${{ github.event.inputs.bump_major == 'true' }} bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} + secrets: token: ${{ secrets.GITHUB_TOKEN }} From 0056853cd3d7e46f974d7ac48f3e2274be9770c0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 00:53:38 +0000 Subject: [PATCH 0070/1275] Auto-release 0.0.41 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6fa133c3bf48..ead3d9ff765a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.40 +MARKETING_VERSION = 0.0.41 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3856a43d8f61cbec2b5e01b68a84f16b865280f0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 19:54:12 -0500 Subject: [PATCH 0071/1275] --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 705082d3da5a..5c1ee4145a64 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,5 +38,6 @@ jobs: bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} secrets: - token: ${{ secrets.GITHUB_TOKEN }} + #token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} From 5c7bf9b9f7eda560af7a5a1592b3fbf9c734e4aa Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 00:55:34 +0000 Subject: [PATCH 0072/1275] Auto-release 0.0.42 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ead3d9ff765a..60023c0c1142 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.41 +MARKETING_VERSION = 0.0.42 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2536f409f45b3a734b6028fcd642e5beb12b2657 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 01:03:27 +0000 Subject: [PATCH 0073/1275] Auto-release 0.0.43 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 60023c0c1142..5def7a25479a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.42 +MARKETING_VERSION = 0.0.43 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3037e18a485912713ca56617a592204e1d1a638f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 20:32:27 -0500 Subject: [PATCH 0074/1275] --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c1ee4145a64..7ed61291141f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,6 +38,9 @@ jobs: bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} secrets: - #token: ${{ secrets.GITHUB_TOKEN }} - token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} + #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} + run: + gh run list + gh run watch --exit-status `gh run list --limit 1 | cut -f 7` From 389d393c2a3c402c00d162b3cc3d1a81ecd04fc6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 20:33:52 -0500 Subject: [PATCH 0075/1275] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7ed61291141f..5feaeba5596f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: secrets: token: ${{ secrets.GITHUB_TOKEN }} #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} - run: + run: | gh run list gh run watch --exit-status `gh run list --limit 1 | cut -f 7` From 0e332668a1f2a79dc852f66d6b47c0b7fae068cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 20:35:33 -0500 Subject: [PATCH 0076/1275] --- .github/workflows/release.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5feaeba5596f..0427726120f2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,9 @@ jobs: secrets: token: ${{ secrets.GITHUB_TOKEN }} #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} - run: | - gh run list - gh run watch --exit-status `gh run list --limit 1 | cut -f 7` + monitor-workflow: + steps: + run: | + gh run list + gh run watch --exit-status `gh run list --limit 1 | cut -f 7` From e92fc120f35aed5b354c05e85f9ab9f271d04c3c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 20:36:00 -0500 Subject: [PATCH 0077/1275] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0427726120f2..eb996205c8d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} monitor-workflow: steps: - run: | + run: | gh run list gh run watch --exit-status `gh run list --limit 1 | cut -f 7` From 9783e42ad7e29587500b8cdc357a510675d6046d Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 20:36:47 -0500 Subject: [PATCH 0078/1275] --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eb996205c8d5..a65cbe262e6d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,8 @@ jobs: #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} monitor-workflow: steps: - run: | - gh run list - gh run watch --exit-status `gh run list --limit 1 | cut -f 7` + - name: "Monitor Workflow" + run: | + gh run list + gh run watch --exit-status `gh run list --limit 1 | cut -f 7` From 4bb47f9c58a03572fb87880e6b2fb56d45dbc776 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 20:43:52 -0500 Subject: [PATCH 0079/1275] --- .github/workflows/release.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a65cbe262e6d..8f29a93e65e1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,10 +40,4 @@ jobs: secrets: token: ${{ secrets.GITHUB_TOKEN }} #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} - monitor-workflow: - steps: - - name: "Monitor Workflow" - run: | - gh run list - gh run watch --exit-status `gh run list --limit 1 | cut -f 7` From 7ad4a3fa723e7fc9990f7acb43ab078636db1d10 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 01:45:23 +0000 Subject: [PATCH 0080/1275] Auto-release 0.0.44 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5def7a25479a..e0ac1a7b1c57 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.43 +MARKETING_VERSION = 0.0.44 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c724599dded9f43a121702af24742bfdd815906f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 21:03:47 -0500 Subject: [PATCH 0081/1275] --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8f29a93e65e1..08b1de77d932 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,6 +27,7 @@ on: permissions: contents: write + issues: write pull-requests: write jobs: @@ -38,6 +39,8 @@ jobs: bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} secrets: + # Requires https://github.com/Silly-Little-App/App/settings/actions + # to enable "Allow GitHub Actions to create and approve pull requests" token: ${{ secrets.GITHUB_TOKEN }} #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} From fa17dbeb8e8986ba42436314621df3a8d9c4958f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 21:08:04 -0500 Subject: [PATCH 0082/1275] --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 08b1de77d932..944ce2584a6c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,7 +39,8 @@ jobs: bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} secrets: - # Requires https://github.com/Silly-Little-App/App/settings/actions + # Requires org settings + # https://github.com/organizations/Silly-Little-App/settings/actions # to enable "Allow GitHub Actions to create and approve pull requests" token: ${{ secrets.GITHUB_TOKEN }} #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} From d697f3a508ce123d001de059cd8bb3be79724e08 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 02:10:05 +0000 Subject: [PATCH 0083/1275] Auto-release 0.0.45 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e0ac1a7b1c57..78cfce08ea1b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.44 +MARKETING_VERSION = 0.0.45 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 41a56ec1a309ca478aded764b63ba70084d6dd0f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 21:15:45 -0500 Subject: [PATCH 0084/1275] --- .github/workflows/release.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 944ce2584a6c..e53ea535ecaa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,6 @@ on: permissions: contents: write - issues: write pull-requests: write jobs: From c673338447c0d58cfbb2ae630ec3dfa8ec58b156 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 02:17:06 +0000 Subject: [PATCH 0085/1275] Auto-release 0.0.46 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 78cfce08ea1b..79f41e81b98a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.45 +MARKETING_VERSION = 0.0.46 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 918fef9dec9d3f907a691fb5bb23d4847c8e03c4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 21:23:37 -0500 Subject: [PATCH 0086/1275] --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e53ea535ecaa..6df8c93b8e6d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -41,6 +41,6 @@ jobs: # Requires org settings # https://github.com/organizations/Silly-Little-App/settings/actions # to enable "Allow GitHub Actions to create and approve pull requests" - token: ${{ secrets.GITHUB_TOKEN }} - #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} + #token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} From 953725acef334e84bd283debc135fcfc068be9d9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 02:24:53 +0000 Subject: [PATCH 0087/1275] Auto-release 0.0.47 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 79f41e81b98a..86b0e6afa2fd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.46 +MARKETING_VERSION = 0.0.47 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From deab095c622bc2969ceb1e83701ccbdd841b78f1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 21:34:18 -0500 Subject: [PATCH 0088/1275] --- .github/workflows/release.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6df8c93b8e6d..e67e0071c745 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,10 +25,6 @@ on: description: 'Set specific version' required: false -permissions: - contents: write - pull-requests: write - jobs: call-workflow: uses: appfair/fairground/.github/workflows/release.yml@main @@ -37,10 +33,13 @@ jobs: bump_major: ${{ github.event.inputs.bump_major == 'true' }} bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} + permissions: + contents: write + pull-requests: write secrets: # Requires org settings # https://github.com/organizations/Silly-Little-App/settings/actions # to enable "Allow GitHub Actions to create and approve pull requests" - #token: ${{ secrets.GITHUB_TOKEN }} - token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} + #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} From 235a79c4fbf3552e744cfdc80d1ff847bcc899f5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 02:37:16 +0000 Subject: [PATCH 0089/1275] Auto-release 0.0.48 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 86b0e6afa2fd..3f1d59334ea2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.47 +MARKETING_VERSION = 0.0.48 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 478663913c251c1859fb1de0d7d8ec2414dc67c7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Dec 2022 21:42:12 -0500 Subject: [PATCH 0090/1275] --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e67e0071c745..629f602a1818 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,6 +40,6 @@ jobs: # Requires org settings # https://github.com/organizations/Silly-Little-App/settings/actions # to enable "Allow GitHub Actions to create and approve pull requests" - token: ${{ secrets.GITHUB_TOKEN }} - #token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} + #token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.APP_FAIR_BOT_SLA_TOKEN }} From 38be53497c171b352a11fca32237d3387535b57f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 02:43:29 +0000 Subject: [PATCH 0091/1275] Auto-release 0.0.49 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f1d59334ea2..2de07104d304 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.48 +MARKETING_VERSION = 0.0.49 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1e55120ef18783e186d9522ffe82d24d9c10e27b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 08:36:36 -0500 Subject: [PATCH 0092/1275] --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 629f602a1818..10c80b5d7d39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,8 @@ name: "Release App" on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: - - cron: '0 0,8,16 * * *' + - cron: '0 * * * *' + #- cron: '0 0,8,16 * * *' workflow_dispatch: inputs: bump_major: From 739706561fbc6e0900992305c4227464d8a74e6c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 08:57:50 -0500 Subject: [PATCH 0093/1275] --- .github/workflows/release.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 10c80b5d7d39..ceccf227ce8a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,10 +5,19 @@ name: "Release App" on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: - - cron: '0 * * * *' - #- cron: '0 0,8,16 * * *' + - cron: '0 0,8,16 * * *' workflow_dispatch: inputs: + bump: + type: choice + description: 'Bump Version' + options: + - none + - major + - minor + - patch + - specific + required: true bump_major: type: boolean description: 'Bump major version' From e4a21be128d43c483336e1e93d7ccf9188451ae6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 08:59:41 -0500 Subject: [PATCH 0094/1275] --- .github/workflows/release.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ceccf227ce8a..10c80b5d7d39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,19 +5,10 @@ name: "Release App" on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: - - cron: '0 0,8,16 * * *' + - cron: '0 * * * *' + #- cron: '0 0,8,16 * * *' workflow_dispatch: inputs: - bump: - type: choice - description: 'Bump Version' - options: - - none - - major - - minor - - patch - - specific - required: true bump_major: type: boolean description: 'Bump major version' From 78b9ab248c61c7084632b063bc4b56253cc502c9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 09:42:11 -0500 Subject: [PATCH 0095/1275] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 10c80b5d7d39..a1310aff1add 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ name: "Release App" on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: - - cron: '0 * * * *' + - cron: '0 45 * * *' #- cron: '0 0,8,16 * * *' workflow_dispatch: inputs: From 5b7c4b88c92940a647ee620e0d1e19ff1da5c761 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 09:45:42 -0500 Subject: [PATCH 0096/1275] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1310aff1add..8c2705eb7be5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ name: "Release App" on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: - - cron: '0 45 * * *' + - cron: '46 * * * *' #- cron: '0 0,8,16 * * *' workflow_dispatch: inputs: From 454f5b751b1bb5173823808476ac63b6b182e03b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 09:51:51 -0500 Subject: [PATCH 0097/1275] --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c2705eb7be5..914a5a5d35d9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,8 @@ name: "Release App" on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: - - cron: '46 * * * *' + #- cron: '1/60 3/24 * * *' + - cron: '15/60 * * * *' #- cron: '0 0,8,16 * * *' workflow_dispatch: inputs: From 7064c512b8082958bdc6f0510f4774b1ef510331 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 09:55:26 -0500 Subject: [PATCH 0098/1275] --- .github/workflows/release.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 914a5a5d35d9..96e6a6656c32 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,10 +31,11 @@ jobs: call-workflow: uses: appfair/fairground/.github/workflows/release.yml@main with: + # bump only patch when unspecified (e.g., when run by cron) + bump_major: ${{ github.event.inputs.bump_major || 'false' }} + bump_minor: ${{ github.event.inputs.bump_minor || 'false' }} + bump_patch: ${{ github.event.inputs.bump_patch || 'true' }} version: ${{ github.event.inputs.version }} - bump_major: ${{ github.event.inputs.bump_major == 'true' }} - bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} - bump_patch: ${{ github.event.inputs.bump_patch == 'true' }} permissions: contents: write pull-requests: write From b8010b176da4a30d6d6cd69191b3a123fee033df Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 09:58:18 -0500 Subject: [PATCH 0099/1275] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 96e6a6656c32..820f2b1ef3f0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: #- cron: '1/60 3/24 * * *' - - cron: '15/60 * * * *' + - cron: '0 * * * *' #- cron: '0 0,8,16 * * *' workflow_dispatch: inputs: From e14a6e060cdcaa0f0b23343f20256ab0cef5d079 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 10:32:26 -0500 Subject: [PATCH 0100/1275] --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 820f2b1ef3f0..19a3b269aa2f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,8 +5,8 @@ name: "Release App" on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: - #- cron: '1/60 3/24 * * *' - - cron: '0 * * * *' + #- cron: '0 */8 * * *' + - cron: '35 * * * *' #- cron: '0 0,8,16 * * *' workflow_dispatch: inputs: @@ -32,9 +32,9 @@ jobs: uses: appfair/fairground/.github/workflows/release.yml@main with: # bump only patch when unspecified (e.g., when run by cron) - bump_major: ${{ github.event.inputs.bump_major || 'false' }} - bump_minor: ${{ github.event.inputs.bump_minor || 'false' }} - bump_patch: ${{ github.event.inputs.bump_patch || 'true' }} + bump_major: ${{ github.event.inputs.bump_major == 'true' }} + bump_minor: ${{ github.event.inputs.bump_minor == 'true' }} + bump_patch: ${{ github.event.inputs.bump_patch != 'false' }} version: ${{ github.event.inputs.version }} permissions: contents: write From b9d1542c94eba286a3c6ff3148b3e6524919d113 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 15:41:09 +0000 Subject: [PATCH 0101/1275] Auto-release 0.0.50 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2de07104d304..37fd8ae3cf1b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.49 +MARKETING_VERSION = 0.0.50 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9bb3b486abcb66351b05165e967f1a810a588007 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 16:45:21 +0000 Subject: [PATCH 0102/1275] Auto-release 0.0.51 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 37fd8ae3cf1b..a7022474dd93 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.50 +MARKETING_VERSION = 0.0.51 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1ed4278255008775be644355e37dfb377cd28829 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 12:00:07 -0500 Subject: [PATCH 0103/1275] --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 19a3b269aa2f..011e4fbc4b23 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,8 +5,8 @@ name: "Release App" on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: - #- cron: '0 */8 * * *' - - cron: '35 * * * *' + - cron: '0 */2 * * *' + #- cron: '0,15,30,45 * * * *' #- cron: '0 0,8,16 * * *' workflow_dispatch: inputs: From 2b9e2908dca9ddcad258c43d73db47ddb714db60 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 12:54:45 -0500 Subject: [PATCH 0104/1275] --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 011e4fbc4b23..936a3dfa9079 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ name: "Release App" on: # Releases can be scheduled (e.g., weekly) if an access token is specified schedule: - - cron: '0 */2 * * *' + - cron: '0 */6 * * *' #- cron: '0,15,30,45 * * * *' #- cron: '0 0,8,16 * * *' workflow_dispatch: From db719d463da6b341cae69cba6cc73d9cc562f212 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 18:10:36 +0000 Subject: [PATCH 0105/1275] Auto-release 0.0.52 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a7022474dd93..53ed0b28faf2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.51 +MARKETING_VERSION = 0.0.52 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6b20f1ce048f4cdaa18737b98d77a3a72fc72375 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Dec 2022 00:45:47 +0000 Subject: [PATCH 0106/1275] Auto-release 0.0.53 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 53ed0b28faf2..c8ff47396cc1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.52 +MARKETING_VERSION = 0.0.53 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a4550dc40c0cbd1fdb77d6d29f9a1755361c2adb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Dec 2022 06:11:17 +0000 Subject: [PATCH 0107/1275] Auto-release 0.0.54 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c8ff47396cc1..ef2ebe63ff8e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.53 +MARKETING_VERSION = 0.0.54 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1d46b7ebdec87f4dcdcb64e008cc283a01470867 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Dec 2022 12:15:10 +0000 Subject: [PATCH 0108/1275] Auto-release 0.0.55 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ef2ebe63ff8e..9e111fe3a86b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.54 +MARKETING_VERSION = 0.0.55 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 88a7fcad50edee0bc74567df6b27f703167cd24f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Dec 2022 18:10:42 +0000 Subject: [PATCH 0109/1275] Auto-release 0.0.56 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e111fe3a86b..b16cdff8849b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.55 +MARKETING_VERSION = 0.0.56 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e19605aea6f6d1ce7efbf6c18a582431e6a9c601 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Dec 2022 00:44:41 +0000 Subject: [PATCH 0110/1275] Auto-release 0.0.57 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b16cdff8849b..14c97924f4a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.56 +MARKETING_VERSION = 0.0.57 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 72e0bda6bcfbc487a8d1cae66216004bbf9c8e66 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Dec 2022 06:12:33 +0000 Subject: [PATCH 0111/1275] Auto-release 0.0.58 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 14c97924f4a7..bd65c473098f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.57 +MARKETING_VERSION = 0.0.58 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4f71039ac5e30b80b4ec6ba4b056f187ea07ad4f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Dec 2022 12:15:58 +0000 Subject: [PATCH 0112/1275] Auto-release 0.0.59 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bd65c473098f..4c6c60e3abba 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.58 +MARKETING_VERSION = 0.0.59 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3ad1fef945997aba044a2d045d056efcab75623f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Dec 2022 07:45:32 -0500 Subject: [PATCH 0113/1275] --- .appconfig.json | 9 --------- ] | 26 -------------------------- 2 files changed, 35 deletions(-) delete mode 100644 .appconfig.json delete mode 100644 ] diff --git a/.appconfig.json b/.appconfig.json deleted file mode 100644 index 7cb7680025b7..000000000000 --- a/.appconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -[ -{ - "buildNumber" : 152, - "bundleIdentifier" : "app.Silly-Little-App", - "productName" : "Silly Little App", - "supportedPlatforms" : " macosx iphoneos iphonesimulator", - "version" : "0.0.28" -} -] diff --git a/] b/] deleted file mode 100644 index b89edf2dea5b..000000000000 --- a/] +++ /dev/null @@ -1,26 +0,0 @@ -name: "Auto Release" -# This command runs periodically and attempts to create and submit -# a new version of the app to the App Store. -on: - workflow_dispatch: - schedule: - - cron: '0 0,12 * * *' - -jobs: - create-release: - runs-on: macos-latest - timeout-minutes: 30 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - steps: - - name: Get swift version - run: swift --version - - - name: Checkout - uses: actions/checkout@v2 - - - name: Run fairtool - run: | - swift run fairtool version - From ae788dc561bfc0f8346c9a5ae3eb88ad2fe59a58 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Dec 2022 18:10:56 +0000 Subject: [PATCH 0114/1275] Auto-release 0.0.60 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c6c60e3abba..fddd31ee5236 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.59 +MARKETING_VERSION = 0.0.60 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7e3471e838041790b556ef97648273c8904cc57b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Dec 2022 00:44:07 +0000 Subject: [PATCH 0115/1275] Auto-release 0.0.61 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fddd31ee5236..70b5d934f13c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.60 +MARKETING_VERSION = 0.0.61 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 516a3cfa6b115734fe14c23bf37e4be28aa1010d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Dec 2022 06:12:05 +0000 Subject: [PATCH 0116/1275] Auto-release 0.0.62 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 70b5d934f13c..2d4886778a01 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.61 +MARKETING_VERSION = 0.0.62 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 41c707b092b8b9f6e56226781619fd73028a43be Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Dec 2022 12:16:24 +0000 Subject: [PATCH 0117/1275] Auto-release 0.0.63 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d4886778a01..d44b97b43ff3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.62 +MARKETING_VERSION = 0.0.63 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fc23aeb9880af4d30e6706072946f25820d883c4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Dec 2022 18:11:55 +0000 Subject: [PATCH 0118/1275] Auto-release 0.0.64 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d44b97b43ff3..592b39b9203c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.63 +MARKETING_VERSION = 0.0.64 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ab7edc8be200c94338ca8e045aa1a91d602a8c1b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Dec 2022 00:43:44 +0000 Subject: [PATCH 0119/1275] Auto-release 0.0.65 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 592b39b9203c..593c59b7b8eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.64 +MARKETING_VERSION = 0.0.65 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0017dc6ce12e37bd2b325b033852e19a7b1cafaa Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Dec 2022 06:12:32 +0000 Subject: [PATCH 0120/1275] Auto-release 0.0.66 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 593c59b7b8eb..d533f061da56 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.65 +MARKETING_VERSION = 0.0.66 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From daae740d8ce7284694c21f13fbd3acdc1f7f522c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Dec 2022 12:16:04 +0000 Subject: [PATCH 0121/1275] Auto-release 0.0.67 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d533f061da56..e307dfd36cbf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.66 +MARKETING_VERSION = 0.0.67 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0239b961a93b9e953bc2b4641be10df1ee8eb0d7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Dec 2022 18:11:03 +0000 Subject: [PATCH 0122/1275] Auto-release 0.0.68 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e307dfd36cbf..44ba157c7f45 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.67 +MARKETING_VERSION = 0.0.68 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5b61f5f05345cf1a24eb6296460d8e85bbfc587c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Dec 2022 00:45:19 +0000 Subject: [PATCH 0123/1275] Auto-release 0.0.69 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 44ba157c7f45..7ea8a63c123d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.68 +MARKETING_VERSION = 0.0.69 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fc153ea27a751da44935a0fb2b3e862678e7380b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Dec 2022 06:12:38 +0000 Subject: [PATCH 0124/1275] Auto-release 0.0.70 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7ea8a63c123d..298869e7c675 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.69 +MARKETING_VERSION = 0.0.70 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 117837cb1e81c3bed65584cf311fd62e37593bd9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Dec 2022 12:16:12 +0000 Subject: [PATCH 0125/1275] Auto-release 0.0.71 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 298869e7c675..cdd47302654f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.70 +MARKETING_VERSION = 0.0.71 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0fbf126876582061bd3e8f7d88a45ef0e627e879 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Dec 2022 18:11:25 +0000 Subject: [PATCH 0126/1275] Auto-release 0.0.72 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cdd47302654f..af95b24717d1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.71 +MARKETING_VERSION = 0.0.72 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From dfba9e0f71d6216acb40ee2d5c80dfa150773ab7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Dec 2022 00:45:09 +0000 Subject: [PATCH 0127/1275] Auto-release 0.0.73 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index af95b24717d1..729b7c36c84d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.72 +MARKETING_VERSION = 0.0.73 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 92f6dd18e00053410a436f1c6b2bffd19c2a0a27 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Dec 2022 06:12:15 +0000 Subject: [PATCH 0128/1275] Auto-release 0.0.74 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 729b7c36c84d..00f5c01ab72c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.73 +MARKETING_VERSION = 0.0.74 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9843d7fa4846e944316fa109a660efd7f30e66d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Dec 2022 12:15:54 +0000 Subject: [PATCH 0129/1275] Auto-release 0.0.75 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 00f5c01ab72c..3a3d8695fd4d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.74 +MARKETING_VERSION = 0.0.75 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e9c67bc215bcebcb4c5a5cfef52fe194b5a91ea2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Dec 2022 18:11:12 +0000 Subject: [PATCH 0130/1275] Auto-release 0.0.76 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3a3d8695fd4d..2f21527f653f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.75 +MARKETING_VERSION = 0.0.76 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c7b86fb667f0e2be6efce77ee3f4acdf6ed5e871 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 31 Dec 2022 00:42:55 +0000 Subject: [PATCH 0131/1275] Auto-release 0.0.77 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f21527f653f..4df8b2e5ca9b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.76 +MARKETING_VERSION = 0.0.77 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From dad42d37d63fbc3938371cb9e2fc42316e8a9cba Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 31 Dec 2022 06:11:24 +0000 Subject: [PATCH 0132/1275] Auto-release 0.0.78 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4df8b2e5ca9b..d544b8c0460b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.77 +MARKETING_VERSION = 0.0.78 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d8c5c6e0fbfefe8288f28f2e7b05ffbfb7eb270a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 31 Dec 2022 12:14:34 +0000 Subject: [PATCH 0133/1275] Auto-release 0.0.79 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d544b8c0460b..68ab289055f8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.78 +MARKETING_VERSION = 0.0.79 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f641d9598090bc6a8908360fca1217c5fc6e8073 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 31 Dec 2022 18:10:17 +0000 Subject: [PATCH 0134/1275] Auto-release 0.0.80 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 68ab289055f8..03548503601c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.79 +MARKETING_VERSION = 0.0.80 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From afe6fe8dbbffe935037964953f5c14a36fd7656e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Jan 2023 00:52:07 +0000 Subject: [PATCH 0135/1275] Auto-release 0.0.81 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 03548503601c..646eeea60f60 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.80 +MARKETING_VERSION = 0.0.81 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5e6fa762490452ed2d69132f89604445fd2d9231 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Jan 2023 06:11:39 +0000 Subject: [PATCH 0136/1275] Auto-release 0.0.82 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 646eeea60f60..7bc659944ed1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.81 +MARKETING_VERSION = 0.0.82 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2a9b4dba6b6edfc849ef3a1d8a238fdd78215cfe Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Jan 2023 12:15:29 +0000 Subject: [PATCH 0137/1275] Auto-release 0.0.83 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7bc659944ed1..5141b9b1b813 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.82 +MARKETING_VERSION = 0.0.83 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 46f1dd9be0deb586e208109f2240758a1362153c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Jan 2023 18:10:38 +0000 Subject: [PATCH 0138/1275] Auto-release 0.0.84 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5141b9b1b813..14fe13792ed1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.83 +MARKETING_VERSION = 0.0.84 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4fccbdab25ba2d1d613659ebfc763a9fb85fce8b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Jan 2023 00:44:27 +0000 Subject: [PATCH 0139/1275] Auto-release 0.0.85 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 14fe13792ed1..3935fa059c48 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.84 +MARKETING_VERSION = 0.0.85 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ae0be0926f552f30919c11c5314cb26afaba65ca Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Jan 2023 06:12:35 +0000 Subject: [PATCH 0140/1275] Auto-release 0.0.86 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3935fa059c48..ec52784c25b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.85 +MARKETING_VERSION = 0.0.86 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9a781deebe0987e612ba1265fca423de23c39d28 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Jan 2023 12:16:49 +0000 Subject: [PATCH 0141/1275] Auto-release 0.0.87 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ec52784c25b0..11c5a029ab55 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.86 +MARKETING_VERSION = 0.0.87 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5d90004c9d45c4571c6c264977b3eec3d893bc82 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Jan 2023 18:11:22 +0000 Subject: [PATCH 0142/1275] Auto-release 0.0.88 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 11c5a029ab55..98a6dc2aac73 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.87 +MARKETING_VERSION = 0.0.88 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 557dadc9161a38e6b1c6100e5a42badb1ccc10ff Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 3 Jan 2023 00:44:21 +0000 Subject: [PATCH 0143/1275] Auto-release 0.0.89 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 98a6dc2aac73..bfdb40dae1f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.88 +MARKETING_VERSION = 0.0.89 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1c4eccd90582aaa8bcdf5a3168b9eaa2cdfe3995 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 3 Jan 2023 06:10:33 +0000 Subject: [PATCH 0144/1275] Auto-release 0.0.90 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bfdb40dae1f1..048f21b20294 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.89 +MARKETING_VERSION = 0.0.90 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8876c0616a76c892e9babccacf8f85e8bcf803de Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 3 Jan 2023 12:16:54 +0000 Subject: [PATCH 0145/1275] Auto-release 0.0.91 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 048f21b20294..6321acff8cae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.90 +MARKETING_VERSION = 0.0.91 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f24882facfacca47993048c5ffbdf49fb2576e92 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 3 Jan 2023 18:11:36 +0000 Subject: [PATCH 0146/1275] Auto-release 0.0.92 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c4cb740bda2e..070435d24b22 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.91 +MARKETING_VERSION = 0.0.92 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 91293ea7eededca1d5dcdcd12a2fd8cb3d3d1f3b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 4 Jan 2023 00:44:52 +0000 Subject: [PATCH 0147/1275] Auto-release 0.0.93 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 070435d24b22..047e7e737c25 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.92 +MARKETING_VERSION = 0.0.93 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6edf1a73733f1b8f454dbd4a1c717cb0a79d5c47 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 4 Jan 2023 06:12:20 +0000 Subject: [PATCH 0148/1275] Auto-release 0.0.94 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 047e7e737c25..e4a4dec96d71 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.93 +MARKETING_VERSION = 0.0.94 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f61fa3316c2fa8653e7e8234504c9db96a3abe2c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 4 Jan 2023 12:17:25 +0000 Subject: [PATCH 0149/1275] Auto-release 0.0.95 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e4a4dec96d71..e98181600af9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.94 +MARKETING_VERSION = 0.0.95 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0ba820d682c78bf7947844bd40f8c5a8458f8e84 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 4 Jan 2023 18:12:06 +0000 Subject: [PATCH 0150/1275] Auto-release 0.0.96 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e98181600af9..ad5623f0b6a3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.95 +MARKETING_VERSION = 0.0.96 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d1a48930c447c4e57c62813de018d82643a04096 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 5 Jan 2023 00:46:43 +0000 Subject: [PATCH 0151/1275] Auto-release 0.0.97 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad5623f0b6a3..44c806244d9a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.96 +MARKETING_VERSION = 0.0.97 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 99b6426efa485a926e67daa0a3619b85a760d1e4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 5 Jan 2023 06:11:14 +0000 Subject: [PATCH 0152/1275] Auto-release 0.0.98 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 44c806244d9a..a3f19c7b8080 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.97 +MARKETING_VERSION = 0.0.98 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ad0fcf5fd7a782b66061be964150e7b8ba0b72cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 5 Jan 2023 12:17:46 +0000 Subject: [PATCH 0153/1275] Auto-release 0.0.99 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a3f19c7b8080..a856a46df29b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.98 +MARKETING_VERSION = 0.0.99 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0199bb5db34e72f8b897e4de1eb33c3dcb90c0d5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 5 Jan 2023 18:11:48 +0000 Subject: [PATCH 0154/1275] Auto-release 0.0.100 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a856a46df29b..72625dade3d7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.99 +MARKETING_VERSION = 0.0.100 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8bfcc5f8e38416d4191a8ad8016352757819d0a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 6 Jan 2023 00:45:54 +0000 Subject: [PATCH 0155/1275] Auto-release 0.0.101 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 72625dade3d7..7f04dea5f546 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.100 +MARKETING_VERSION = 0.0.101 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 38647209939b5b5b39d6e943c311d2814c2bdf02 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 6 Jan 2023 06:12:46 +0000 Subject: [PATCH 0156/1275] Auto-release 0.0.102 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7f04dea5f546..c74dced124aa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.101 +MARKETING_VERSION = 0.0.102 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 729aaf23c5a25a62f288d7b72a7e13041e6869f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 6 Jan 2023 12:16:44 +0000 Subject: [PATCH 0157/1275] Auto-release 0.0.103 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c74dced124aa..62541a66bf5d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.102 +MARKETING_VERSION = 0.0.103 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 90dded7b4a6fe4f0d1cc623310ce8379cc1ce9fd Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 6 Jan 2023 18:11:20 +0000 Subject: [PATCH 0158/1275] Auto-release 0.0.104 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 62541a66bf5d..e889c72602c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.103 +MARKETING_VERSION = 0.0.104 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1d62806d77db19021c7ba0627a207a80ce721e15 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 7 Jan 2023 00:44:12 +0000 Subject: [PATCH 0159/1275] Auto-release 0.0.105 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e889c72602c8..0ada16024f45 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.104 +MARKETING_VERSION = 0.0.105 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ce6a0db76708ff60a5512bebf2674a4aad5457e8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 7 Jan 2023 06:11:11 +0000 Subject: [PATCH 0160/1275] Auto-release 0.0.106 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0ada16024f45..58c34dc30143 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.105 +MARKETING_VERSION = 0.0.106 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1366c9c1ef749f71f43890527c7fe47bbfd769c6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 7 Jan 2023 12:15:09 +0000 Subject: [PATCH 0161/1275] Auto-release 0.0.107 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 58c34dc30143..da54e59a8fec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.106 +MARKETING_VERSION = 0.0.107 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 517432963b49b29669bd63231803abe107b7a4f1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 7 Jan 2023 18:10:59 +0000 Subject: [PATCH 0162/1275] Auto-release 0.0.108 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index da54e59a8fec..a1f9d04dfeab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.107 +MARKETING_VERSION = 0.0.108 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d3cbbe6ce9ecc58810a2d128f7bf048d615f2ea0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 8 Jan 2023 00:49:07 +0000 Subject: [PATCH 0163/1275] Auto-release 0.0.109 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a1f9d04dfeab..01ba71ae5409 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.108 +MARKETING_VERSION = 0.0.109 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3bcdb0514334ede4f3b11f05471bde9b30c9d2a4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 8 Jan 2023 06:11:24 +0000 Subject: [PATCH 0164/1275] Auto-release 0.0.110 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 01ba71ae5409..d22fd1f02111 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.109 +MARKETING_VERSION = 0.0.110 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f33a467f7d6554918fc40ef37a1c2d2ed65f0585 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 8 Jan 2023 12:15:35 +0000 Subject: [PATCH 0165/1275] Auto-release 0.0.111 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d22fd1f02111..81f96f3a6276 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.110 +MARKETING_VERSION = 0.0.111 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 52db0fd3a484c6e03f0c61df02bbeb9a8f8abb5d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 8 Jan 2023 18:10:52 +0000 Subject: [PATCH 0166/1275] Auto-release 0.0.112 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 81f96f3a6276..85ba6da825d4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.111 +MARKETING_VERSION = 0.0.112 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ac927e83e6c3914fb14fc098efffbd0303554765 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 9 Jan 2023 00:45:17 +0000 Subject: [PATCH 0167/1275] Auto-release 0.0.113 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 85ba6da825d4..abb20b3feec2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.112 +MARKETING_VERSION = 0.0.113 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0a07b05e786e7713338cb442ccc76e11798ae19b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 9 Jan 2023 06:12:33 +0000 Subject: [PATCH 0168/1275] Auto-release 0.0.114 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index abb20b3feec2..eabd7db48f9c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.113 +MARKETING_VERSION = 0.0.114 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0f6dc60978bbe8c5675f82af403f02716661acb2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 9 Jan 2023 12:17:54 +0000 Subject: [PATCH 0169/1275] Auto-release 0.0.115 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eabd7db48f9c..be48f2cc7569 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.114 +MARKETING_VERSION = 0.0.115 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b1b8f8742911975a97288b3da469993e4f314235 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 9 Jan 2023 18:12:25 +0000 Subject: [PATCH 0170/1275] Auto-release 0.0.116 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index be48f2cc7569..950e730aefae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.115 +MARKETING_VERSION = 0.0.116 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c03021d0c869c988de8fa658ad19e7272fe847e7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 10 Jan 2023 00:48:36 +0000 Subject: [PATCH 0171/1275] Auto-release 0.0.117 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 950e730aefae..b556cc0f7193 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.116 +MARKETING_VERSION = 0.0.117 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 78d237653d5e74d86f26a19516b67fbc1a1ef029 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 10 Jan 2023 06:13:02 +0000 Subject: [PATCH 0172/1275] Auto-release 0.0.118 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b556cc0f7193..1af3e7e34305 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.117 +MARKETING_VERSION = 0.0.118 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 54aa65be71fa60e1844e934b19f24ec6ec4cf5f2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 10 Jan 2023 12:17:45 +0000 Subject: [PATCH 0173/1275] Auto-release 0.0.119 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1af3e7e34305..d6a0963798f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.118 +MARKETING_VERSION = 0.0.119 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9dcbe09b726721b2b4deb2325e6a70c9e9d5381a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 10 Jan 2023 18:12:01 +0000 Subject: [PATCH 0174/1275] Auto-release 0.0.120 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d6a0963798f7..d5aa31deeadf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.119 +MARKETING_VERSION = 0.0.120 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 77c940390580f4e9c55f4c2d5f88a4d1dafc1beb Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 11 Jan 2023 00:45:37 +0000 Subject: [PATCH 0175/1275] Auto-release 0.0.121 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d5aa31deeadf..9dabf282b354 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.120 +MARKETING_VERSION = 0.0.121 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8969bd6c22ac3882f8324a96278ff519ac49b791 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 11 Jan 2023 06:12:59 +0000 Subject: [PATCH 0176/1275] Auto-release 0.0.122 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9dabf282b354..ac7c985e27f5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.121 +MARKETING_VERSION = 0.0.122 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 050b2c6686cbeea90fc286da1577ea0aa64c91ed Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 11 Jan 2023 12:17:53 +0000 Subject: [PATCH 0177/1275] Auto-release 0.0.123 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ac7c985e27f5..5f458231a43a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.122 +MARKETING_VERSION = 0.0.123 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9773bf6cc9621c394eb8f6304f17b860861abb89 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 11 Jan 2023 18:14:40 +0000 Subject: [PATCH 0178/1275] Auto-release 0.0.124 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5f458231a43a..1b56a97d2c8f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.123 +MARKETING_VERSION = 0.0.124 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b74f640498250a9fdfa03d7df360b53642961539 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 12 Jan 2023 00:46:59 +0000 Subject: [PATCH 0179/1275] Auto-release 0.0.125 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1b56a97d2c8f..31d496a8e68f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.124 +MARKETING_VERSION = 0.0.125 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e36fc33075360239001f93333b7de7f3cf5484e5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 12 Jan 2023 06:12:37 +0000 Subject: [PATCH 0180/1275] Auto-release 0.0.126 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 31d496a8e68f..71bccf742b92 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.125 +MARKETING_VERSION = 0.0.126 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 977f09f876972465e143c760976bb8b13e65328c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 12 Jan 2023 12:19:26 +0000 Subject: [PATCH 0181/1275] Auto-release 0.0.127 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 71bccf742b92..7e1bbdb573aa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.126 +MARKETING_VERSION = 0.0.127 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c22e0bbe299b2c8ec35438631a8ff91903a1b7d1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 12 Jan 2023 18:12:49 +0000 Subject: [PATCH 0182/1275] Auto-release 0.0.128 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7e1bbdb573aa..ef5fa9dcf312 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.127 +MARKETING_VERSION = 0.0.128 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d567c1dadf5a16ab4d46e981ce7478abbbfacc1f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 13 Jan 2023 00:47:19 +0000 Subject: [PATCH 0183/1275] Auto-release 0.0.129 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ef5fa9dcf312..8f06b44b94a2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.128 +MARKETING_VERSION = 0.0.129 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5a41f20338bfcf9c246992b6b49af5db38fa3304 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 13 Jan 2023 06:13:11 +0000 Subject: [PATCH 0184/1275] Auto-release 0.0.130 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8f06b44b94a2..49a1702cf91f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.129 +MARKETING_VERSION = 0.0.130 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f326740b3bac4c47f0e161a908a7dd7800de3f8e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 13 Jan 2023 12:18:01 +0000 Subject: [PATCH 0185/1275] Auto-release 0.0.131 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 49a1702cf91f..bf4d91e7da48 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.130 +MARKETING_VERSION = 0.0.131 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5ea48bce906063f74be8c9f14c636de3c706cc60 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 13 Jan 2023 18:11:30 +0000 Subject: [PATCH 0186/1275] Auto-release 0.0.132 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bf4d91e7da48..957863eb1b3c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.131 +MARKETING_VERSION = 0.0.132 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5123e0833c8b22f3f5d6310aa2e060f3b3a47d5d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 14 Jan 2023 00:43:54 +0000 Subject: [PATCH 0187/1275] Auto-release 0.0.133 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 957863eb1b3c..03c61efa64f5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.132 +MARKETING_VERSION = 0.0.133 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 964f8d102829e021e3c786a0a93f25ae8d1fe4aa Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 14 Jan 2023 06:11:27 +0000 Subject: [PATCH 0188/1275] Auto-release 0.0.134 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 03c61efa64f5..fb9fa582942a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.133 +MARKETING_VERSION = 0.0.134 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 14cb34a288d48de78da7d2e1bc3b366384ad17b9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 14 Jan 2023 12:15:34 +0000 Subject: [PATCH 0189/1275] Auto-release 0.0.135 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb9fa582942a..9fc9fb16cc67 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.134 +MARKETING_VERSION = 0.0.135 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5cd5046d764b7f0000fdbb58f7097cf8e300e174 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 14 Jan 2023 18:10:36 +0000 Subject: [PATCH 0190/1275] Auto-release 0.0.136 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9fc9fb16cc67..6abcf36113ef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.135 +MARKETING_VERSION = 0.0.136 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8a12974e2493b96b1a752cc50961fe5087ba36ab Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 15 Jan 2023 00:50:07 +0000 Subject: [PATCH 0191/1275] Auto-release 0.0.137 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6abcf36113ef..bbe7cbbf02b5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.136 +MARKETING_VERSION = 0.0.137 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 60d301e4807d74d878eab658ee0b78d5f0dadb55 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 15 Jan 2023 06:11:37 +0000 Subject: [PATCH 0192/1275] Auto-release 0.0.138 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bbe7cbbf02b5..61f38d4ebd24 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.137 +MARKETING_VERSION = 0.0.138 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 88888c60c3c444b255d8a5d84f6ccf4df810ceef Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 15 Jan 2023 12:15:53 +0000 Subject: [PATCH 0193/1275] Auto-release 0.0.139 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 61f38d4ebd24..af54b898e7bd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.138 +MARKETING_VERSION = 0.0.139 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2f68c384e68396ea3f5fb292b4c3b1914afea32f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 15 Jan 2023 18:10:59 +0000 Subject: [PATCH 0194/1275] Auto-release 0.0.140 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index af54b898e7bd..7649354e289d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.139 +MARKETING_VERSION = 0.0.140 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d2197404de29c0a0d30dfd78c626ef70cccc4bf3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 16 Jan 2023 00:45:32 +0000 Subject: [PATCH 0195/1275] Auto-release 0.0.141 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7649354e289d..ea39635a55ce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.140 +MARKETING_VERSION = 0.0.141 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ac8c482184ecec2137aa9c6b0753693c4d58bbd9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 16 Jan 2023 06:13:29 +0000 Subject: [PATCH 0196/1275] Auto-release 0.0.142 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ea39635a55ce..f24a79a48322 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.141 +MARKETING_VERSION = 0.0.142 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d3579de207f2b6dfc64c85b9d45dfd09d067d7de Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 16 Jan 2023 12:17:23 +0000 Subject: [PATCH 0197/1275] Auto-release 0.0.143 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f24a79a48322..4136b9c8b22c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.142 +MARKETING_VERSION = 0.0.143 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 58c5949937c6e038d8af948bffc3960cbe16a2e6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 16 Jan 2023 18:11:31 +0000 Subject: [PATCH 0198/1275] Auto-release 0.0.144 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4136b9c8b22c..9db7e212320d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.143 +MARKETING_VERSION = 0.0.144 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7fdae9e4c52cf87eab5438b8cdf20370fe01f96c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 17 Jan 2023 00:46:21 +0000 Subject: [PATCH 0199/1275] Auto-release 0.0.145 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9db7e212320d..cf24f78f6ca7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.144 +MARKETING_VERSION = 0.0.145 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 82bd2c094b764b09e6a42be432a9be56cadd9d8a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 17 Jan 2023 06:12:22 +0000 Subject: [PATCH 0200/1275] Auto-release 0.0.146 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf24f78f6ca7..390a3b7ab4c0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.145 +MARKETING_VERSION = 0.0.146 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fb251f294de0a0acccdb6ddfea18204c1663e91c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 17 Jan 2023 12:18:19 +0000 Subject: [PATCH 0201/1275] Auto-release 0.0.147 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 390a3b7ab4c0..a3f1c121fd74 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.146 +MARKETING_VERSION = 0.0.147 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 572e560a2af6838e6761f1654dbc77824a34b423 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 17 Jan 2023 18:12:04 +0000 Subject: [PATCH 0202/1275] Auto-release 0.0.148 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a3f1c121fd74..1310ff882ab6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.147 +MARKETING_VERSION = 0.0.148 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e640ff72a62cecf5db4d63bd9601575a89c25196 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 18 Jan 2023 00:52:24 +0000 Subject: [PATCH 0203/1275] Auto-release 0.0.149 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1310ff882ab6..fccb59ce1016 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.148 +MARKETING_VERSION = 0.0.149 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 896116c2addfa16ba53f6e1b5e0568c06cbae059 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 18 Jan 2023 06:13:03 +0000 Subject: [PATCH 0204/1275] Auto-release 0.0.150 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fccb59ce1016..1f00e4c4d68c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.149 +MARKETING_VERSION = 0.0.150 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4ed74570b00b446be0c6513a9224d7d62cb4a104 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 18 Jan 2023 12:17:16 +0000 Subject: [PATCH 0205/1275] Auto-release 0.0.151 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1f00e4c4d68c..4c5398b53a3b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.150 +MARKETING_VERSION = 0.0.151 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 50b24321f469ae7b4d4ffbe1564cdf44d108e1f6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 18 Jan 2023 18:11:27 +0000 Subject: [PATCH 0206/1275] Auto-release 0.0.152 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c5398b53a3b..79113f4c134c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.151 +MARKETING_VERSION = 0.0.152 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e8e6b511a3800fc8ed28aedca51f106acb3f2cc1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 19 Jan 2023 00:47:14 +0000 Subject: [PATCH 0207/1275] Auto-release 0.0.153 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 79113f4c134c..c4ee1af88315 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.152 +MARKETING_VERSION = 0.0.153 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c4496a70018cfc39491c1087eb6a59aa69695ccb Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 19 Jan 2023 06:12:16 +0000 Subject: [PATCH 0208/1275] Auto-release 0.0.154 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c4ee1af88315..e485c832e83a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.153 +MARKETING_VERSION = 0.0.154 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 87d2002f4651a1de23149c72e533a25380842341 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 19 Jan 2023 12:18:15 +0000 Subject: [PATCH 0209/1275] Auto-release 0.0.155 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e485c832e83a..3e1ef028be81 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.154 +MARKETING_VERSION = 0.0.155 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 05364e61fc107930edba4a1768fea4598cb07eb7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 19 Jan 2023 18:12:43 +0000 Subject: [PATCH 0210/1275] Auto-release 0.0.156 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e1ef028be81..bc53c21007cf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.155 +MARKETING_VERSION = 0.0.156 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 39231d98fd6fc83d7bed4448e14df5799f515d30 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 20 Jan 2023 00:48:34 +0000 Subject: [PATCH 0211/1275] Auto-release 0.0.157 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bc53c21007cf..ac13a41a4d87 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.156 +MARKETING_VERSION = 0.0.157 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e431213fd7e87e3582c6156b4b7fc0f8d4756180 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 20 Jan 2023 06:12:46 +0000 Subject: [PATCH 0212/1275] Auto-release 0.0.158 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ac13a41a4d87..a8b5d2130d7a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.157 +MARKETING_VERSION = 0.0.158 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6233265dec93a14ea2308ab18d23be29c147ec2c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 20 Jan 2023 12:19:11 +0000 Subject: [PATCH 0213/1275] Auto-release 0.0.159 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a8b5d2130d7a..43ed55ed4cf2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.158 +MARKETING_VERSION = 0.0.159 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From aaa7d694fb41629469cffbe4dc065671bed03ccc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 20 Jan 2023 18:11:59 +0000 Subject: [PATCH 0214/1275] Auto-release 0.0.160 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 43ed55ed4cf2..1521bba73a2b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.159 +MARKETING_VERSION = 0.0.160 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9cf55c9e2cd0165243bb5e3f5a918b5be38c8dae Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 21 Jan 2023 00:46:37 +0000 Subject: [PATCH 0215/1275] Auto-release 0.0.161 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1521bba73a2b..f848a1c2f7a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.160 +MARKETING_VERSION = 0.0.161 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1deb2f52bfcbbac1ca39437e83817b0af94a43a8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 21 Jan 2023 06:11:25 +0000 Subject: [PATCH 0216/1275] Auto-release 0.0.162 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f848a1c2f7a7..8dc4f4458054 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.161 +MARKETING_VERSION = 0.0.162 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3f63ad0c8c0364ac157a79f0720bafdbdf4b96d9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 21 Jan 2023 12:15:29 +0000 Subject: [PATCH 0217/1275] Auto-release 0.0.163 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8dc4f4458054..f1e1ab57be39 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.162 +MARKETING_VERSION = 0.0.163 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cf1b2bfae569ff3931eea3624b097e4909020489 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 21 Jan 2023 18:10:33 +0000 Subject: [PATCH 0218/1275] Auto-release 0.0.164 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f1e1ab57be39..ea48e8d1884a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.163 +MARKETING_VERSION = 0.0.164 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From df3dbf0b077eef3965590a97ae3574c4c2a8dbea Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 22 Jan 2023 00:49:26 +0000 Subject: [PATCH 0219/1275] Auto-release 0.0.165 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ea48e8d1884a..baed4ea768a6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.164 +MARKETING_VERSION = 0.0.165 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ea8fa9fc4b8b99d29dfd58bb4eee42c8c993ce13 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 22 Jan 2023 06:11:21 +0000 Subject: [PATCH 0220/1275] Auto-release 0.0.166 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index baed4ea768a6..7f574790e162 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.165 +MARKETING_VERSION = 0.0.166 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c33426c2c4b9ea0ef3a7948f24ff472b9e43915e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 22 Jan 2023 12:16:01 +0000 Subject: [PATCH 0221/1275] Auto-release 0.0.167 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7f574790e162..b92d3b24df7c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.166 +MARKETING_VERSION = 0.0.167 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a2e6f422d6a70bbb0d34d8a33de2c6be420d05be Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 22 Jan 2023 18:11:01 +0000 Subject: [PATCH 0222/1275] Auto-release 0.0.168 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b92d3b24df7c..e2b46f570a1b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.167 +MARKETING_VERSION = 0.0.168 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5ab0d917040d904d13ddec2ab32f28bea6f6961c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 23 Jan 2023 00:44:39 +0000 Subject: [PATCH 0223/1275] Auto-release 0.0.169 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e2b46f570a1b..57e4a742c56a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.168 +MARKETING_VERSION = 0.0.169 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cbccb8ae5bf6483df2e89f3cada4b45efc3e8595 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 23 Jan 2023 06:12:02 +0000 Subject: [PATCH 0224/1275] Auto-release 0.0.170 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 57e4a742c56a..c77c8d58394a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.169 +MARKETING_VERSION = 0.0.170 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9db99fb6f80b57792c453340ded041718ce7f857 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 23 Jan 2023 12:17:20 +0000 Subject: [PATCH 0225/1275] Auto-release 0.0.171 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c77c8d58394a..fca9ad0e7df6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.170 +MARKETING_VERSION = 0.0.171 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5c869761cabe21865ab4ee6ed56955a3a6a69901 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 23 Jan 2023 18:11:04 +0000 Subject: [PATCH 0226/1275] Auto-release 0.0.172 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fca9ad0e7df6..f7861031f9b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.171 +MARKETING_VERSION = 0.0.172 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8ea99f52ae7316a75a1e3957493cf80f6f7f6ead Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 24 Jan 2023 00:48:35 +0000 Subject: [PATCH 0227/1275] Auto-release 0.0.173 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f7861031f9b9..04d67c843229 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.172 +MARKETING_VERSION = 0.0.173 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d49fbe7a4d6d14abec0bebd9006c6fd0b1d00556 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 24 Jan 2023 06:12:35 +0000 Subject: [PATCH 0228/1275] Auto-release 0.0.174 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 04d67c843229..1929ef096567 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.173 +MARKETING_VERSION = 0.0.174 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 58b34a44cf39d21cc3a5017bd22497a8945f971d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 24 Jan 2023 12:18:02 +0000 Subject: [PATCH 0229/1275] Auto-release 0.0.175 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1929ef096567..ffddb3ffe27b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.174 +MARKETING_VERSION = 0.0.175 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 07694a99a3a8ca39b9648538c0cad1d1f2b08015 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 24 Jan 2023 18:12:55 +0000 Subject: [PATCH 0230/1275] Auto-release 0.0.176 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ffddb3ffe27b..6a6e0cfc43cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.175 +MARKETING_VERSION = 0.0.176 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d93e46b64badef09472c50a71f7d46f1056f42bf Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 25 Jan 2023 00:44:54 +0000 Subject: [PATCH 0231/1275] Auto-release 0.0.177 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6a6e0cfc43cc..bc8e0b3b51d4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.176 +MARKETING_VERSION = 0.0.177 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bf78086961809219839ad6cc648ec4a3cb42a470 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 25 Jan 2023 06:12:29 +0000 Subject: [PATCH 0232/1275] Auto-release 0.0.178 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bc8e0b3b51d4..32ac4305b993 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.177 +MARKETING_VERSION = 0.0.178 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6a34176ca1f521a19f2690ffac1c1e86b89dbb6a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 25 Jan 2023 12:18:07 +0000 Subject: [PATCH 0233/1275] Auto-release 0.0.179 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 32ac4305b993..5ca59f2ba4f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.178 +MARKETING_VERSION = 0.0.179 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From aaae15a72b74cafb10bc1b67cbcd38a062384228 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 25 Jan 2023 18:11:10 +0000 Subject: [PATCH 0234/1275] Auto-release 0.0.180 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5ca59f2ba4f1..8b9a104cc583 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.179 +MARKETING_VERSION = 0.0.180 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8ce497b5e653ad00b07fb6ef9e50dd99f3969646 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 26 Jan 2023 00:46:21 +0000 Subject: [PATCH 0235/1275] Auto-release 0.0.181 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8b9a104cc583..948f14759397 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.180 +MARKETING_VERSION = 0.0.181 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 728e8a7ce4b8176f1a02d00d77f4b0b8f9c9ac31 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 26 Jan 2023 06:12:46 +0000 Subject: [PATCH 0236/1275] Auto-release 0.0.182 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 948f14759397..252b848fbd48 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.181 +MARKETING_VERSION = 0.0.182 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3cd55577ec787816d7db1700a6fc338e79819619 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 26 Jan 2023 12:18:01 +0000 Subject: [PATCH 0237/1275] Auto-release 0.0.183 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 252b848fbd48..a33862adb0b4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.182 +MARKETING_VERSION = 0.0.183 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 38e2d0912dbb9875bc7d88a6e5d673b01e218184 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 26 Jan 2023 18:11:54 +0000 Subject: [PATCH 0238/1275] Auto-release 0.0.184 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a33862adb0b4..97954aa56a35 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.183 +MARKETING_VERSION = 0.0.184 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 664244054c58f51b8c9450bb0e1b277b24d6957e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 27 Jan 2023 00:53:00 +0000 Subject: [PATCH 0239/1275] Auto-release 0.0.185 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 97954aa56a35..e3f7d02c5e12 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.184 +MARKETING_VERSION = 0.0.185 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ae0ffba812fcc84823a775e16550c2d6234119a8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 27 Jan 2023 06:12:43 +0000 Subject: [PATCH 0240/1275] Auto-release 0.0.186 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e3f7d02c5e12..79d8df24f2c0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.185 +MARKETING_VERSION = 0.0.186 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bf49f766287077967392094b6937b62d3dddc055 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 27 Jan 2023 12:16:32 +0000 Subject: [PATCH 0241/1275] Auto-release 0.0.187 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 79d8df24f2c0..932cd43db07a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.186 +MARKETING_VERSION = 0.0.187 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8ffbdaaab3c0e13628fe0295c6d323503e764506 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 27 Jan 2023 18:11:23 +0000 Subject: [PATCH 0242/1275] Auto-release 0.0.188 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 932cd43db07a..8bf6d5d985d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.187 +MARKETING_VERSION = 0.0.188 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ebedd03c661bf2f7f6a4289eac40d1a903ec2954 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 28 Jan 2023 00:46:32 +0000 Subject: [PATCH 0243/1275] Auto-release 0.0.189 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8bf6d5d985d2..5ce8f93b951e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.188 +MARKETING_VERSION = 0.0.189 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 08a6e2fde8581bea55db6eb793eafd914d9e5a1e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 28 Jan 2023 06:11:51 +0000 Subject: [PATCH 0244/1275] Auto-release 0.0.190 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5ce8f93b951e..740cb6a59a57 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.189 +MARKETING_VERSION = 0.0.190 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From dc9a0658de2dae484364d0d2038a622584de70b7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 28 Jan 2023 12:15:18 +0000 Subject: [PATCH 0245/1275] Auto-release 0.0.191 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 740cb6a59a57..146f96f02f59 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.190 +MARKETING_VERSION = 0.0.191 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 457792c6294db4b01587e0c27560ef76a391848b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 28 Jan 2023 18:10:37 +0000 Subject: [PATCH 0246/1275] Auto-release 0.0.192 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 146f96f02f59..c9c391da266f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.191 +MARKETING_VERSION = 0.0.192 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 456a805c6c4830065a1683975af8c0c899111edd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 29 Jan 2023 00:51:29 +0000 Subject: [PATCH 0247/1275] Auto-release 0.0.193 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c9c391da266f..e266bf63323b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.192 +MARKETING_VERSION = 0.0.193 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7942fe06afd606211e5e72f6c3067c2740258bd2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 29 Jan 2023 06:11:30 +0000 Subject: [PATCH 0248/1275] Auto-release 0.0.194 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e266bf63323b..154c5290523b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.193 +MARKETING_VERSION = 0.0.194 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 08f419ac93eb9c75bde1b77bf97dfbb9431347f5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 29 Jan 2023 12:15:49 +0000 Subject: [PATCH 0249/1275] Auto-release 0.0.195 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 154c5290523b..795056cb25bd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.194 +MARKETING_VERSION = 0.0.195 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3f5f29a781982a1c32dd703eeb3fc5e5cc00b12b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 29 Jan 2023 18:10:49 +0000 Subject: [PATCH 0250/1275] Auto-release 0.0.196 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 795056cb25bd..a0b5fc2d287d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.195 +MARKETING_VERSION = 0.0.196 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 17ec3aa785edac50625aef5494ce44b006dbd91c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 30 Jan 2023 00:43:02 +0000 Subject: [PATCH 0251/1275] Auto-release 0.0.197 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a0b5fc2d287d..daf7445d7ff5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.196 +MARKETING_VERSION = 0.0.197 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 807ebcf5fe03e912ad87836bc4cdd75c4db13ef8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 30 Jan 2023 06:13:16 +0000 Subject: [PATCH 0252/1275] Auto-release 0.0.198 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index daf7445d7ff5..24873a1a547b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.197 +MARKETING_VERSION = 0.0.198 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d4f69263290ecec637b3fa894195d1d41212c747 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 30 Jan 2023 12:17:35 +0000 Subject: [PATCH 0253/1275] Auto-release 0.0.199 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 24873a1a547b..ce14c10bd2ba 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.198 +MARKETING_VERSION = 0.0.199 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f622ba51bc14776cd0a72bd6d8ee896af15d38cc Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 30 Jan 2023 18:12:02 +0000 Subject: [PATCH 0254/1275] Auto-release 0.0.200 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ce14c10bd2ba..237e299c7566 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.199 +MARKETING_VERSION = 0.0.200 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7b2aa177edbe180041edd4bfe3dbd02f03dc2418 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 31 Jan 2023 00:49:50 +0000 Subject: [PATCH 0255/1275] Auto-release 0.0.201 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 237e299c7566..62b658dc6e71 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.200 +MARKETING_VERSION = 0.0.201 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 64bd44f022a1433169d867f72adabfa5fe30b05c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 31 Jan 2023 06:12:33 +0000 Subject: [PATCH 0256/1275] Auto-release 0.0.202 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 62b658dc6e71..0d70144d7124 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.201 +MARKETING_VERSION = 0.0.202 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9fed373131bfcd058445d15465b896089b287187 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 31 Jan 2023 12:16:48 +0000 Subject: [PATCH 0257/1275] Auto-release 0.0.203 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0d70144d7124..0a1dbeed09de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.202 +MARKETING_VERSION = 0.0.203 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4a6568f6405d5b85457868b1cc916bb85cccd2b7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 31 Jan 2023 18:11:52 +0000 Subject: [PATCH 0258/1275] Auto-release 0.0.204 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0a1dbeed09de..e00aadf07069 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.203 +MARKETING_VERSION = 0.0.204 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5d1c5fed0e37414aa200cd18aa01f8926368cdca Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Feb 2023 00:54:23 +0000 Subject: [PATCH 0259/1275] Auto-release 0.0.205 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e00aadf07069..5484eeac1871 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.204 +MARKETING_VERSION = 0.0.205 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5e09d117fa610e1e550772c6b1dbbdee4d776dc1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Feb 2023 06:13:13 +0000 Subject: [PATCH 0260/1275] Auto-release 0.0.206 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5484eeac1871..e4e6fc405d68 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.205 +MARKETING_VERSION = 0.0.206 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 35a7ae360577c242fa34b500a94d63a9df65f80b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Feb 2023 12:18:48 +0000 Subject: [PATCH 0261/1275] Auto-release 0.0.207 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e4e6fc405d68..99a4d79a3865 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.206 +MARKETING_VERSION = 0.0.207 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 474e947de2b75fc52437223593ee78988e41401d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Feb 2023 18:12:04 +0000 Subject: [PATCH 0262/1275] Auto-release 0.0.208 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 99a4d79a3865..72b65d9fd680 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.207 +MARKETING_VERSION = 0.0.208 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d44cf3e294652b69bf4fe835becdcb06d8c0fcbc Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Feb 2023 00:48:03 +0000 Subject: [PATCH 0263/1275] Auto-release 0.0.209 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 72b65d9fd680..e40ff90f3be7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.208 +MARKETING_VERSION = 0.0.209 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d16418fc15978deee5becff94f1f3ded35025db8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Feb 2023 06:12:55 +0000 Subject: [PATCH 0264/1275] Auto-release 0.0.210 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e40ff90f3be7..37dc13675bd7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.209 +MARKETING_VERSION = 0.0.210 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5746d8e69693274fd40952dd89d7fc9df7ca660e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Feb 2023 12:17:34 +0000 Subject: [PATCH 0265/1275] Auto-release 0.0.211 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 37dc13675bd7..6a064ec6c01e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.210 +MARKETING_VERSION = 0.0.211 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0f19ba2d46d46e9235e480e86d1aaa6f5bac75b9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Feb 2023 18:12:26 +0000 Subject: [PATCH 0266/1275] Auto-release 0.0.212 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6a064ec6c01e..d1375f798954 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.211 +MARKETING_VERSION = 0.0.212 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f2814c6d603fd24da3854ffb0fb735d873194195 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Feb 2023 00:52:53 +0000 Subject: [PATCH 0267/1275] Auto-release 0.0.213 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d1375f798954..7ff3d2ce1b54 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.212 +MARKETING_VERSION = 0.0.213 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 02aa29bc37c3c87fdf394287ecd3adf7a4849d25 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Feb 2023 06:12:38 +0000 Subject: [PATCH 0268/1275] Auto-release 0.0.214 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7ff3d2ce1b54..ef26a48e10dc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.213 +MARKETING_VERSION = 0.0.214 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 03bf03f6d89a0221125e7e4cb2449a99acd7ecd1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Feb 2023 12:17:26 +0000 Subject: [PATCH 0269/1275] Auto-release 0.0.215 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ef26a48e10dc..c307a34c80e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.214 +MARKETING_VERSION = 0.0.215 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f238a66c5f0536fb9e4a43c60db5f5a26c9c40d2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Feb 2023 18:11:46 +0000 Subject: [PATCH 0270/1275] Auto-release 0.0.216 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c307a34c80e9..46605aec0ad6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.215 +MARKETING_VERSION = 0.0.216 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7d410d07dca70207dafb7a62605f1a1d67103bba Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Feb 2023 00:45:23 +0000 Subject: [PATCH 0271/1275] Auto-release 0.0.217 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 46605aec0ad6..5b989fddd1d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.216 +MARKETING_VERSION = 0.0.217 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From aba7390f061b9dea21357fa99d48d67a031a13e5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Feb 2023 06:11:45 +0000 Subject: [PATCH 0272/1275] Auto-release 0.0.218 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5b989fddd1d0..24fa3fcfe22c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.217 +MARKETING_VERSION = 0.0.218 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8cfee248bc5534ff9ed726a41234750d8847101d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Feb 2023 12:15:21 +0000 Subject: [PATCH 0273/1275] Auto-release 0.0.219 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 24fa3fcfe22c..6984d6ce7e2c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.218 +MARKETING_VERSION = 0.0.219 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 09cc6b93d6089f40791a0b1d9b5ad1d8e3b0a814 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Feb 2023 18:10:54 +0000 Subject: [PATCH 0274/1275] Auto-release 0.0.220 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6984d6ce7e2c..b16c5aebceab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.219 +MARKETING_VERSION = 0.0.220 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0c7abefbedf37d170defbdc7786ae03aea2d1340 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Feb 2023 00:52:44 +0000 Subject: [PATCH 0275/1275] Auto-release 0.0.221 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b16c5aebceab..447da8e150ff 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.220 +MARKETING_VERSION = 0.0.221 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 30137e54035e32df38e56ed43b195d3e33bc8eed Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Feb 2023 06:11:34 +0000 Subject: [PATCH 0276/1275] Auto-release 0.0.222 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 447da8e150ff..bb5f3c10f8b1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.221 +MARKETING_VERSION = 0.0.222 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 96e7040f5fb36430a48cf8a879b61543c4d6b9cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Feb 2023 12:15:26 +0000 Subject: [PATCH 0277/1275] Auto-release 0.0.223 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bb5f3c10f8b1..6dc61e480ccf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.222 +MARKETING_VERSION = 0.0.223 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 27e25bf2ee59dc314ce77a55add583398a57e22d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Feb 2023 18:10:36 +0000 Subject: [PATCH 0278/1275] Auto-release 0.0.224 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6dc61e480ccf..dcab328720ad 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.223 +MARKETING_VERSION = 0.0.224 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 698d0759afbfebc55c5c46759200964167a58bdf Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Feb 2023 00:45:15 +0000 Subject: [PATCH 0279/1275] Auto-release 0.0.225 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dcab328720ad..dda1aac36b8e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.224 +MARKETING_VERSION = 0.0.225 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From dcedafd6b09de3fa599392c0a454333387b2c25b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Feb 2023 06:12:52 +0000 Subject: [PATCH 0280/1275] Auto-release 0.0.226 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dda1aac36b8e..b53ac7290843 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.225 +MARKETING_VERSION = 0.0.226 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 851b9fe8d292ec20f1b21a090599bf5e046852c7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Feb 2023 12:18:00 +0000 Subject: [PATCH 0281/1275] Auto-release 0.0.227 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b53ac7290843..75409accdcdd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.226 +MARKETING_VERSION = 0.0.227 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 847f4054e56c117a98c8bab4d35365470c6cb836 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Feb 2023 18:11:50 +0000 Subject: [PATCH 0282/1275] Auto-release 0.0.228 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 75409accdcdd..7f04eee65996 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.227 +MARKETING_VERSION = 0.0.228 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f9a4519f3e79d39fb22fbd2d0fc87cb801656535 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Feb 2023 00:47:43 +0000 Subject: [PATCH 0283/1275] Auto-release 0.0.229 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7f04eee65996..e03dadf10dd7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.228 +MARKETING_VERSION = 0.0.229 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d8e394eda34227fe6781bd58a921537ed737d28f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Feb 2023 06:12:32 +0000 Subject: [PATCH 0284/1275] Auto-release 0.0.230 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e03dadf10dd7..1ad170ab7db6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.229 +MARKETING_VERSION = 0.0.230 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5afefbff1dd369191e037fa878fb93fce99f4f07 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Feb 2023 12:17:26 +0000 Subject: [PATCH 0285/1275] Auto-release 0.0.231 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ad170ab7db6..35b3445081a8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.230 +MARKETING_VERSION = 0.0.231 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7f6877573e90515686000b7ff2d7ddb34babb1e4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Feb 2023 18:12:11 +0000 Subject: [PATCH 0286/1275] Auto-release 0.0.232 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 35b3445081a8..327a2c4e703f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.231 +MARKETING_VERSION = 0.0.232 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9ed1e08a7cf5aa91ef7479a11efb18d94ff63d2c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Feb 2023 00:47:56 +0000 Subject: [PATCH 0287/1275] Auto-release 0.0.233 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 327a2c4e703f..5294d48b900d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.232 +MARKETING_VERSION = 0.0.233 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 135ab76fe009adefa578973eb2979490ba1620b0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Feb 2023 06:13:13 +0000 Subject: [PATCH 0288/1275] Auto-release 0.0.234 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5294d48b900d..34efa9108326 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.233 +MARKETING_VERSION = 0.0.234 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8451c3f595390137164d1a7a516872095a4b11ee Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Feb 2023 12:17:54 +0000 Subject: [PATCH 0289/1275] Auto-release 0.0.235 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34efa9108326..0c68c255e34a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.234 +MARKETING_VERSION = 0.0.235 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a56202055aea8f1469410d87179c719698f66d84 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Feb 2023 18:12:18 +0000 Subject: [PATCH 0290/1275] Auto-release 0.0.236 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0c68c255e34a..b77eb52bb083 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.235 +MARKETING_VERSION = 0.0.236 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6d2696bf7a39b15f10795f56bde1a49cead3e3e8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Feb 2023 00:46:35 +0000 Subject: [PATCH 0291/1275] Auto-release 0.0.237 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b77eb52bb083..3efb7dc3d7d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.236 +MARKETING_VERSION = 0.0.237 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d22c3e5d0a3b2262592ba2f600f828e789f3d077 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Feb 2023 06:13:11 +0000 Subject: [PATCH 0292/1275] Auto-release 0.0.238 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3efb7dc3d7d0..816e349b2fd9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.237 +MARKETING_VERSION = 0.0.238 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From be837a5001abd02f12925414d9f1c3349f12e2db Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Feb 2023 12:18:22 +0000 Subject: [PATCH 0293/1275] Auto-release 0.0.239 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 816e349b2fd9..2b80d5d516d1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.238 +MARKETING_VERSION = 0.0.239 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1600a8f3db70f73f5b6e1c2bcdca043929f90eb1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Feb 2023 18:12:21 +0000 Subject: [PATCH 0294/1275] Auto-release 0.0.240 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2b80d5d516d1..9dc221d71ae3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.239 +MARKETING_VERSION = 0.0.240 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d2b61aae3635dadef7ef3e4150058f0ef93237ff Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Feb 2023 00:52:03 +0000 Subject: [PATCH 0295/1275] Auto-release 0.0.241 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9dc221d71ae3..c0a359ebe3a1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.240 +MARKETING_VERSION = 0.0.241 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6511d7ea425c70249198d3d9cb2729933be6f286 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Feb 2023 06:12:58 +0000 Subject: [PATCH 0296/1275] Auto-release 0.0.242 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c0a359ebe3a1..b24eec031326 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.241 +MARKETING_VERSION = 0.0.242 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d789c752d1fbc69f18dd6792864529401e52e29a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Feb 2023 12:17:59 +0000 Subject: [PATCH 0297/1275] Auto-release 0.0.243 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b24eec031326..6aa01467b75c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.242 +MARKETING_VERSION = 0.0.243 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1829d0a21bfa01a22dccb7ee9877e922a961c6be Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Feb 2023 18:12:23 +0000 Subject: [PATCH 0298/1275] Auto-release 0.0.244 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6aa01467b75c..899948282212 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.243 +MARKETING_VERSION = 0.0.244 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e6c24cee450c9aba391cec1e09482f381a90dbcf Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Feb 2023 00:42:11 +0000 Subject: [PATCH 0299/1275] Auto-release 0.0.245 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 899948282212..ba5566ba4903 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.244 +MARKETING_VERSION = 0.0.245 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fba2bfbfe72ecfa6d79ccc2835f56d91a4a9eed1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Feb 2023 06:11:49 +0000 Subject: [PATCH 0300/1275] Auto-release 0.0.246 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ba5566ba4903..dd5c16092319 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.245 +MARKETING_VERSION = 0.0.246 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7892cdb5d4501ff5f23e32ebb31184f89b380abd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Feb 2023 12:16:07 +0000 Subject: [PATCH 0301/1275] Auto-release 0.0.247 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dd5c16092319..d30ee7473269 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.246 +MARKETING_VERSION = 0.0.247 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f2616c3d2abd134d58979328d529887ddf012390 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Feb 2023 18:11:15 +0000 Subject: [PATCH 0302/1275] Auto-release 0.0.248 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d30ee7473269..0e9bfe697220 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.247 +MARKETING_VERSION = 0.0.248 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d06c042ab8040026e070e950e8b93ed1122d4050 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Feb 2023 00:51:46 +0000 Subject: [PATCH 0303/1275] Auto-release 0.0.249 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0e9bfe697220..16d86335816f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.248 +MARKETING_VERSION = 0.0.249 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 94f76977cc005bbabad6cd50970de71d2e37c3a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Feb 2023 06:11:44 +0000 Subject: [PATCH 0304/1275] Auto-release 0.0.250 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 16d86335816f..e501ba120514 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.249 +MARKETING_VERSION = 0.0.250 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 59da87d681b5de7d6e4cd85841a00a9d95e5e4e4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Feb 2023 12:16:12 +0000 Subject: [PATCH 0305/1275] Auto-release 0.0.251 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e501ba120514..957dbc3073c7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.250 +MARKETING_VERSION = 0.0.251 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 982728886fa88c7db8686845b284dc0ac9777378 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Feb 2023 18:11:13 +0000 Subject: [PATCH 0306/1275] Auto-release 0.0.252 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 957dbc3073c7..c5b35482763a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.251 +MARKETING_VERSION = 0.0.252 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 59209f8e25419a0b2b2e1349f3ef7a678d71780a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Feb 2023 00:49:56 +0000 Subject: [PATCH 0307/1275] Auto-release 0.0.253 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c5b35482763a..1a067f0151df 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.252 +MARKETING_VERSION = 0.0.253 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0a9e8628b0466dcfa21265ede06dc03e30324f59 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Feb 2023 06:14:09 +0000 Subject: [PATCH 0308/1275] Auto-release 0.0.254 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1a067f0151df..0194d0d36b39 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.253 +MARKETING_VERSION = 0.0.254 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 13712c11f5b03e3c7bc92c102237dca5c55e5449 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Feb 2023 12:18:31 +0000 Subject: [PATCH 0309/1275] Auto-release 0.0.255 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0194d0d36b39..76190a30d495 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.254 +MARKETING_VERSION = 0.0.255 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1df2e2ab4093beab5ad26f53a466d762eb632659 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Feb 2023 18:12:33 +0000 Subject: [PATCH 0310/1275] Auto-release 0.0.256 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 76190a30d495..a8f59803eaed 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.255 +MARKETING_VERSION = 0.0.256 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2fe687e0919517d10beb25225a0f793d292e877c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Feb 2023 00:50:21 +0000 Subject: [PATCH 0311/1275] Auto-release 0.0.257 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a8f59803eaed..d6fdffa29f68 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.256 +MARKETING_VERSION = 0.0.257 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9f659ddb843fff4f94522f4890610bda104581ab Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Feb 2023 06:14:45 +0000 Subject: [PATCH 0312/1275] Auto-release 0.0.258 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d6fdffa29f68..641849e4dad3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.257 +MARKETING_VERSION = 0.0.258 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8f5a968d21b2a0bb5a7d610a20cb5c2c59931599 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Feb 2023 12:18:31 +0000 Subject: [PATCH 0313/1275] Auto-release 0.0.259 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 641849e4dad3..33c572b86619 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.258 +MARKETING_VERSION = 0.0.259 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ce72c343635bc2b5706a84df6600b7edafadf87c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Feb 2023 18:12:39 +0000 Subject: [PATCH 0314/1275] Auto-release 0.0.260 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 33c572b86619..a083ebfa4916 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.259 +MARKETING_VERSION = 0.0.260 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1912fb1f6ccfc4a978038eadfa319d2d476c0436 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Feb 2023 00:50:13 +0000 Subject: [PATCH 0315/1275] Auto-release 0.0.261 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a083ebfa4916..612283a1ba07 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.260 +MARKETING_VERSION = 0.0.261 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bc9b90f87f2bec1af5b75982d4317c9a024e6efc Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Feb 2023 06:13:37 +0000 Subject: [PATCH 0316/1275] Auto-release 0.0.262 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 612283a1ba07..f918972ec66c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.261 +MARKETING_VERSION = 0.0.262 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 79213b4105b234ff844c282df0acc7826e578661 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Feb 2023 12:18:20 +0000 Subject: [PATCH 0317/1275] Auto-release 0.0.263 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f918972ec66c..5184c3ffa054 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.262 +MARKETING_VERSION = 0.0.263 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 78bc489c68ac921db41bd834755b531a8fafb35b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Feb 2023 18:12:17 +0000 Subject: [PATCH 0318/1275] Auto-release 0.0.264 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5184c3ffa054..96b70486cdb0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.263 +MARKETING_VERSION = 0.0.264 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7f0d4fc6a86bff60c4a0b70d87c3a419875cb1bd Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Feb 2023 00:48:20 +0000 Subject: [PATCH 0319/1275] Auto-release 0.0.265 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 96b70486cdb0..5eac4ed9e60d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.264 +MARKETING_VERSION = 0.0.265 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 459ff3d52943cbc8e5d406a500eff854338620c9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Feb 2023 06:12:56 +0000 Subject: [PATCH 0320/1275] Auto-release 0.0.266 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5eac4ed9e60d..e30c9218d2a4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.265 +MARKETING_VERSION = 0.0.266 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c5ab3c17b89317208ca7ddc9dfff2ef6ca59387a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Feb 2023 12:18:17 +0000 Subject: [PATCH 0321/1275] Auto-release 0.0.267 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e30c9218d2a4..57e69d1c7e00 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.266 +MARKETING_VERSION = 0.0.267 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5754ad1a2a19634d6c57b0b1a65a0472a8c92a3e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Feb 2023 18:11:21 +0000 Subject: [PATCH 0322/1275] Auto-release 0.0.268 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 57e69d1c7e00..215f1d910fd8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.267 +MARKETING_VERSION = 0.0.268 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2ce94c3def5d60d0e37a91862df48e8462b6a7d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Feb 2023 00:52:27 +0000 Subject: [PATCH 0323/1275] Auto-release 0.0.269 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 215f1d910fd8..4367975c4b49 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.268 +MARKETING_VERSION = 0.0.269 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e46dfa150f3b7c9f34b3b5ed8a6da61e90dc4588 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Feb 2023 06:13:11 +0000 Subject: [PATCH 0324/1275] Auto-release 0.0.270 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4367975c4b49..798f2b9b8f8c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.269 +MARKETING_VERSION = 0.0.270 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From aba016b78923095190c0f0fae585772e80568165 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Feb 2023 12:17:44 +0000 Subject: [PATCH 0325/1275] Auto-release 0.0.271 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 798f2b9b8f8c..c63cf56987cd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.270 +MARKETING_VERSION = 0.0.271 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7c972086e21f8085c63467f6f0a2a24f3a5b4539 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Feb 2023 18:12:13 +0000 Subject: [PATCH 0326/1275] Auto-release 0.0.272 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c63cf56987cd..df68f78c93e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.271 +MARKETING_VERSION = 0.0.272 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ef19255496b231a69e29ce119691206aac78d4fe Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Feb 2023 00:48:10 +0000 Subject: [PATCH 0327/1275] Auto-release 0.0.273 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df68f78c93e9..6cca406ba05c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.272 +MARKETING_VERSION = 0.0.273 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 94b8e82b43ee6304a09e0a166171af3499626a56 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Feb 2023 06:11:48 +0000 Subject: [PATCH 0328/1275] Auto-release 0.0.274 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6cca406ba05c..a853cfbb49ee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.273 +MARKETING_VERSION = 0.0.274 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b552612a7d7f35a86777ad5c6e905c89b2fc8c0e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Feb 2023 12:15:59 +0000 Subject: [PATCH 0329/1275] Auto-release 0.0.275 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a853cfbb49ee..945e30593874 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.274 +MARKETING_VERSION = 0.0.275 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c144e7b3ab3001fcfb8e737bdbc644efb18bf315 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Feb 2023 18:11:34 +0000 Subject: [PATCH 0330/1275] Auto-release 0.0.276 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 945e30593874..2b9e36f24b04 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.275 +MARKETING_VERSION = 0.0.276 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From addffa258630dcba8ece1cccbbe70717bd1836d6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Feb 2023 00:50:35 +0000 Subject: [PATCH 0331/1275] Auto-release 0.0.277 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2b9e36f24b04..df3bdc17b401 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.276 +MARKETING_VERSION = 0.0.277 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7c7a831be95138ab6b25b9619f83e3d5bc819bf8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Feb 2023 06:11:56 +0000 Subject: [PATCH 0332/1275] Auto-release 0.0.278 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df3bdc17b401..f85380ad6b6c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.277 +MARKETING_VERSION = 0.0.278 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5e658d3bf345ca969e673a3f0f10081944955e77 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Feb 2023 12:16:12 +0000 Subject: [PATCH 0333/1275] Auto-release 0.0.279 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f85380ad6b6c..1ec0dc5b5e36 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.278 +MARKETING_VERSION = 0.0.279 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7c6ad9da10ba80171a1fbe9cc605ad4c5c4124a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Feb 2023 18:11:04 +0000 Subject: [PATCH 0334/1275] Auto-release 0.0.280 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ec0dc5b5e36..2954eb518125 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.279 +MARKETING_VERSION = 0.0.280 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5c5239204e02f4033a3ccc473890684871a7c580 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Feb 2023 00:51:42 +0000 Subject: [PATCH 0335/1275] Auto-release 0.0.281 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2954eb518125..589171e4e192 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.280 +MARKETING_VERSION = 0.0.281 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 104212b3ec76beeabdf8c3a4cdf2a565633ad379 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Feb 2023 06:13:26 +0000 Subject: [PATCH 0336/1275] Auto-release 0.0.282 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 589171e4e192..3b4e23e77d10 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.281 +MARKETING_VERSION = 0.0.282 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a3240c4f0e5b2b147c0e65df695f68577f496eb5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Feb 2023 12:18:23 +0000 Subject: [PATCH 0337/1275] Auto-release 0.0.283 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3b4e23e77d10..05aa0819c7d1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.282 +MARKETING_VERSION = 0.0.283 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3eb494ef479d863a34062b5e3ed3efa8b7a1e2b5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Feb 2023 18:12:11 +0000 Subject: [PATCH 0338/1275] Auto-release 0.0.284 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 05aa0819c7d1..1bfa0fa6868c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.283 +MARKETING_VERSION = 0.0.284 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1975d81f6f4d9f487d23ef35e4d30cb9ca08dbed Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Feb 2023 00:50:56 +0000 Subject: [PATCH 0339/1275] Auto-release 0.0.285 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1bfa0fa6868c..b0ea617a8470 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.284 +MARKETING_VERSION = 0.0.285 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From acec700fbcf67fbff9d71b4f0c50faf3eb4cbc25 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Feb 2023 06:12:42 +0000 Subject: [PATCH 0340/1275] Auto-release 0.0.286 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b0ea617a8470..ddfb59271591 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.285 +MARKETING_VERSION = 0.0.286 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cacc9c9eefab3239fa0ec3afb4e32c61e1851eb7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Feb 2023 12:18:06 +0000 Subject: [PATCH 0341/1275] Auto-release 0.0.287 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ddfb59271591..4d3c71ca584e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.286 +MARKETING_VERSION = 0.0.287 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c91674ce409f134cc7cbb4b21fc7e8bdbd02e37e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Feb 2023 18:12:20 +0000 Subject: [PATCH 0342/1275] Auto-release 0.0.288 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4d3c71ca584e..e5f2d1e5331f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.287 +MARKETING_VERSION = 0.0.288 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 366def5aa5fe57172866df47c9fc392376ca2510 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Feb 2023 00:45:59 +0000 Subject: [PATCH 0343/1275] Auto-release 0.0.289 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e5f2d1e5331f..0f552c5d9ce8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.288 +MARKETING_VERSION = 0.0.289 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 22ab31484622ced33a1d0050a9b0b2862949773b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Feb 2023 06:13:16 +0000 Subject: [PATCH 0344/1275] Auto-release 0.0.290 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0f552c5d9ce8..dc2792a9e531 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.289 +MARKETING_VERSION = 0.0.290 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2013efc706fecd9517438669035493d621028b81 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Feb 2023 12:18:27 +0000 Subject: [PATCH 0345/1275] Auto-release 0.0.291 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dc2792a9e531..d90456915417 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.290 +MARKETING_VERSION = 0.0.291 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0d3396d973f7ee9decb114d90efcc2780451f50e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Feb 2023 18:12:20 +0000 Subject: [PATCH 0346/1275] Auto-release 0.0.292 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d90456915417..dcb51b2a6d0d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.291 +MARKETING_VERSION = 0.0.292 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4c0fc898225e76f24c10adbcf46b8ff418d6fa58 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Feb 2023 00:47:37 +0000 Subject: [PATCH 0347/1275] Auto-release 0.0.293 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dcb51b2a6d0d..49d62d88c934 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.292 +MARKETING_VERSION = 0.0.293 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3c3a2e6c93aa43aa112baffe481090229aee9478 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Feb 2023 06:13:09 +0000 Subject: [PATCH 0348/1275] Auto-release 0.0.294 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 49d62d88c934..28785eec861e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.293 +MARKETING_VERSION = 0.0.294 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9024bd74b79e9ecb8a1159203e56db3c7cc355fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Feb 2023 12:19:23 +0000 Subject: [PATCH 0349/1275] Auto-release 0.0.295 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 28785eec861e..98ab9d913f04 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.294 +MARKETING_VERSION = 0.0.295 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f938c65cab58f80aedd198ed65977f82fd3a0266 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Feb 2023 18:12:55 +0000 Subject: [PATCH 0350/1275] Auto-release 0.0.296 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 98ab9d913f04..0cdd6fa9b0b4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.295 +MARKETING_VERSION = 0.0.296 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6e608a89bfbeaedb4cd172c0bd4ed71f5b767400 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Feb 2023 00:48:14 +0000 Subject: [PATCH 0351/1275] Auto-release 0.0.297 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0cdd6fa9b0b4..22f71be789a6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.296 +MARKETING_VERSION = 0.0.297 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bdfee743cc8728b5a73142a0f7925d889a18522b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Feb 2023 06:13:27 +0000 Subject: [PATCH 0352/1275] Auto-release 0.0.298 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 22f71be789a6..202b8b54a3d7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.297 +MARKETING_VERSION = 0.0.298 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0eb312e3575ffb3b22c8fa334cb51e07f6dc89d6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Feb 2023 12:18:14 +0000 Subject: [PATCH 0353/1275] Auto-release 0.0.299 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 202b8b54a3d7..802d01d308c5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.298 +MARKETING_VERSION = 0.0.299 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4bd64546e08ab70d84d4da3ed20239989c530c5b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Feb 2023 18:12:26 +0000 Subject: [PATCH 0354/1275] Auto-release 0.0.300 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 802d01d308c5..6d7583d1f538 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.299 +MARKETING_VERSION = 0.0.300 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ec870e0450df3d96ce1eea888c00d9305c1d873a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Feb 2023 00:49:28 +0000 Subject: [PATCH 0355/1275] Auto-release 0.0.301 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6d7583d1f538..e48344e6d0d9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.300 +MARKETING_VERSION = 0.0.301 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6be2fb7bd8dd5c17b72e43bcb350b7d92bddf890 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Feb 2023 06:11:55 +0000 Subject: [PATCH 0356/1275] Auto-release 0.0.302 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e48344e6d0d9..bd7f54901b0f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.301 +MARKETING_VERSION = 0.0.302 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 59de51d9fdfc336e2748b83a687ca1a8c633f3db Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Feb 2023 12:16:34 +0000 Subject: [PATCH 0357/1275] Auto-release 0.0.303 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bd7f54901b0f..74eb32f91df8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.302 +MARKETING_VERSION = 0.0.303 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 383f703f01f5cab4b3fd75d3157363d98553f0e0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Feb 2023 18:11:39 +0000 Subject: [PATCH 0358/1275] Auto-release 0.0.304 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 74eb32f91df8..39979b0cffcc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.303 +MARKETING_VERSION = 0.0.304 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f0074f787c28d0cda2395b43e67f027e94d72517 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Feb 2023 00:55:42 +0000 Subject: [PATCH 0359/1275] Auto-release 0.0.305 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 39979b0cffcc..a73705554661 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.304 +MARKETING_VERSION = 0.0.305 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4f704c8fd0039d83be4f34d407510f15d1a70f3d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Feb 2023 06:12:33 +0000 Subject: [PATCH 0360/1275] Auto-release 0.0.306 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a73705554661..b6da5676e5e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.305 +MARKETING_VERSION = 0.0.306 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 549659c91de0a35c61fdbb5769e2313b7ab56548 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Feb 2023 12:16:57 +0000 Subject: [PATCH 0361/1275] Auto-release 0.0.307 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6da5676e5e9..b6fea4def8ef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.306 +MARKETING_VERSION = 0.0.307 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7d4d37b9351e93b61e564855505447da4bfc57eb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Feb 2023 18:11:31 +0000 Subject: [PATCH 0362/1275] Auto-release 0.0.308 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6fea4def8ef..ef90b1e70fb0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.307 +MARKETING_VERSION = 0.0.308 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e6d489c0b435b1ded4c4be1b6ba4d5d4dc7b405f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Feb 2023 00:49:06 +0000 Subject: [PATCH 0363/1275] Auto-release 0.0.309 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ef90b1e70fb0..a0ceeb4a4d91 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.308 +MARKETING_VERSION = 0.0.309 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e0020470e55e31f9bcaac7a7abd258b263d4ad5e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Feb 2023 06:13:38 +0000 Subject: [PATCH 0364/1275] Auto-release 0.0.310 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a0ceeb4a4d91..82dcbbe381c0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.309 +MARKETING_VERSION = 0.0.310 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6e155cc3e3be92e1010be92cad0f317cb3624a1b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Feb 2023 12:19:29 +0000 Subject: [PATCH 0365/1275] Auto-release 0.0.311 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 82dcbbe381c0..979e1991ba76 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.310 +MARKETING_VERSION = 0.0.311 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0aff71232c51d5a5c7d865baa3a48d776d169e93 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Feb 2023 18:12:49 +0000 Subject: [PATCH 0366/1275] Auto-release 0.0.312 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 979e1991ba76..12820c8036f9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.311 +MARKETING_VERSION = 0.0.312 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 939869a873260212886621579cc803f597961574 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Feb 2023 00:50:01 +0000 Subject: [PATCH 0367/1275] Auto-release 0.0.313 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 12820c8036f9..fb162716920a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.312 +MARKETING_VERSION = 0.0.313 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c8b7c9683530e7832acf7041675856caf739f163 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Feb 2023 06:13:42 +0000 Subject: [PATCH 0368/1275] Auto-release 0.0.314 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb162716920a..c5b616fabd4b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.313 +MARKETING_VERSION = 0.0.314 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5d9c50119ce3c1db50429e1b56526b8224d53c68 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Feb 2023 12:18:45 +0000 Subject: [PATCH 0369/1275] Auto-release 0.0.315 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c5b616fabd4b..d9073e2615f3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.314 +MARKETING_VERSION = 0.0.315 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 50328f94741eb2687d9bb775e7749798900d045f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Feb 2023 18:12:53 +0000 Subject: [PATCH 0370/1275] Auto-release 0.0.316 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d9073e2615f3..d4a51ea959f2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.315 +MARKETING_VERSION = 0.0.316 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 035252df38c455a26667b396217ad08d24ec0029 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Mar 2023 00:55:11 +0000 Subject: [PATCH 0371/1275] Auto-release 0.0.317 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d4a51ea959f2..179f8ae9887a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.316 +MARKETING_VERSION = 0.0.317 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fe54696ce64e779b815447756828ce664a27a679 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Mar 2023 06:14:13 +0000 Subject: [PATCH 0372/1275] Auto-release 0.0.318 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 179f8ae9887a..68f562859cae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.317 +MARKETING_VERSION = 0.0.318 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1894aa7dad03e45a53c11bcfdb00ff70a95682fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Mar 2023 12:19:37 +0000 Subject: [PATCH 0373/1275] Auto-release 0.0.319 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 68f562859cae..c6e0e8f11335 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.318 +MARKETING_VERSION = 0.0.319 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8f797b00b2a6f28854c9fa02a396392ff0ced576 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Mar 2023 18:13:12 +0000 Subject: [PATCH 0374/1275] Auto-release 0.0.320 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c6e0e8f11335..74f0a9b05d88 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.319 +MARKETING_VERSION = 0.0.320 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4cd3b13bc937c92487b38ff3ef5ef084c612af96 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Mar 2023 00:53:47 +0000 Subject: [PATCH 0375/1275] Auto-release 0.0.321 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 74f0a9b05d88..18d847f98845 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.320 +MARKETING_VERSION = 0.0.321 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f024e7872424fe2b4998bf0e740cc0f2d41933b7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Mar 2023 06:13:27 +0000 Subject: [PATCH 0376/1275] Auto-release 0.0.322 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 18d847f98845..bbd0c3ba4c7b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.321 +MARKETING_VERSION = 0.0.322 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1a5ce12504a4e9c9dfff2e7357f605d5fc393ab6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Mar 2023 12:17:43 +0000 Subject: [PATCH 0377/1275] Auto-release 0.0.323 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bbd0c3ba4c7b..ceceab26f863 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.322 +MARKETING_VERSION = 0.0.323 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7ea51d391d1ca343513346e29274812a55f9af72 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Mar 2023 18:13:33 +0000 Subject: [PATCH 0378/1275] Auto-release 0.0.324 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ceceab26f863..46755c1c68e0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.323 +MARKETING_VERSION = 0.0.324 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 35ddf82e9387b52217a47f42e8b9c6b5a6ba4bdd Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Mar 2023 02:40:46 +0000 Subject: [PATCH 0379/1275] Auto-release 0.0.325 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 46755c1c68e0..365c0249e91a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.324 +MARKETING_VERSION = 0.0.325 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d8074db622034bf8ae6539d36fcca06fb23a3e9a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Mar 2023 06:13:26 +0000 Subject: [PATCH 0380/1275] Auto-release 0.0.326 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 365c0249e91a..67530bc44a5e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.325 +MARKETING_VERSION = 0.0.326 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3dc78db30a934d73804a609e594c2e8eaffaa9fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Mar 2023 12:17:56 +0000 Subject: [PATCH 0381/1275] Auto-release 0.0.327 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 67530bc44a5e..775bd70dff58 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.326 +MARKETING_VERSION = 0.0.327 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 61c9683facced668b1f49176679968f18bb14c29 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Mar 2023 18:13:14 +0000 Subject: [PATCH 0382/1275] Auto-release 0.0.328 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 775bd70dff58..141fa0a5f062 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.327 +MARKETING_VERSION = 0.0.328 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f290e0b34c9bf960b7ba3d49856d0df9c107f5dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Mar 2023 00:47:43 +0000 Subject: [PATCH 0383/1275] Auto-release 0.0.329 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 141fa0a5f062..3a8da830841a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.328 +MARKETING_VERSION = 0.0.329 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b04cba635e412f8c9aecfffd850775a06125c965 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Mar 2023 06:11:54 +0000 Subject: [PATCH 0384/1275] Auto-release 0.0.330 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3a8da830841a..a08e74715bec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.329 +MARKETING_VERSION = 0.0.330 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9eed73f49b9b7493557f90fff6b2fb96548e49ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Mar 2023 12:16:58 +0000 Subject: [PATCH 0385/1275] Auto-release 0.0.331 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a08e74715bec..f5b12e55bda6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.330 +MARKETING_VERSION = 0.0.331 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6bf7cc1705c0f5d3955b3da1156dbcf8636fd4d2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Mar 2023 18:11:16 +0000 Subject: [PATCH 0386/1275] Auto-release 0.0.332 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f5b12e55bda6..a73e36bf8332 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.331 +MARKETING_VERSION = 0.0.332 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7e3c934d06c03c2d290ebf6c7d69617349b2aa70 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Mar 2023 00:56:18 +0000 Subject: [PATCH 0387/1275] Auto-release 0.0.333 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a73e36bf8332..2205a3d29b9e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.332 +MARKETING_VERSION = 0.0.333 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From edb78aaf1052e652bf8ebdb12d202ef953d37ab5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Mar 2023 06:11:57 +0000 Subject: [PATCH 0388/1275] Auto-release 0.0.334 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2205a3d29b9e..7fa796b842c2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.333 +MARKETING_VERSION = 0.0.334 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9a0f525a3d7ab823735debeb9ee8c1bc9f36744b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Mar 2023 12:16:43 +0000 Subject: [PATCH 0389/1275] Auto-release 0.0.335 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7fa796b842c2..6405e53125c7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.334 +MARKETING_VERSION = 0.0.335 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8e84801f877f87975739d87527fa92f9cbd3c53a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Mar 2023 18:11:21 +0000 Subject: [PATCH 0390/1275] Auto-release 0.0.336 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6405e53125c7..a8440c12b552 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.335 +MARKETING_VERSION = 0.0.336 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 136657c2817f43131f48c55e762a8704b588adab Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Mar 2023 00:49:52 +0000 Subject: [PATCH 0391/1275] Auto-release 0.0.337 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a8440c12b552..7304b64c1306 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.336 +MARKETING_VERSION = 0.0.337 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 775289aa27dee1faaf7a67df604d1d32937ce11e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Mar 2023 06:13:22 +0000 Subject: [PATCH 0392/1275] Auto-release 0.0.338 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7304b64c1306..bb82e3e87770 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.337 +MARKETING_VERSION = 0.0.338 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e498678778fc7bad8ce59f9e1e44fd0ce9813394 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Mar 2023 12:19:10 +0000 Subject: [PATCH 0393/1275] Auto-release 0.0.339 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bb82e3e87770..2f87eee60a80 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.338 +MARKETING_VERSION = 0.0.339 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3b653fb46f1f6355ab5ef84e2db41d9415438195 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Mar 2023 18:12:55 +0000 Subject: [PATCH 0394/1275] Auto-release 0.0.340 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f87eee60a80..5999f8cb1d80 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.339 +MARKETING_VERSION = 0.0.340 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 190ce0d0469b3a2a760632423f02c03a330106ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Mar 2023 00:53:56 +0000 Subject: [PATCH 0395/1275] Auto-release 0.0.341 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5999f8cb1d80..8023e97338b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.340 +MARKETING_VERSION = 0.0.341 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6304c227c2540e63116bdd6ac49217a67852869a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Mar 2023 06:14:09 +0000 Subject: [PATCH 0396/1275] Auto-release 0.0.342 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8023e97338b9..6f74506d86e1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.341 +MARKETING_VERSION = 0.0.342 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From eb2fd55bb83d83cef982e4aa03f92d42be1b9492 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Mar 2023 12:19:07 +0000 Subject: [PATCH 0397/1275] Auto-release 0.0.343 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6f74506d86e1..63773850e97b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.342 +MARKETING_VERSION = 0.0.343 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ce4abe34dc8f8108dee0b26cacf62024fadd2057 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Mar 2023 18:12:41 +0000 Subject: [PATCH 0398/1275] Auto-release 0.0.344 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 63773850e97b..afae076badbd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.343 +MARKETING_VERSION = 0.0.344 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 423f06d073f339c675e9c412eb33a96ef9331f53 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Mar 2023 00:52:26 +0000 Subject: [PATCH 0399/1275] Auto-release 0.0.345 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index afae076badbd..041804044378 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.344 +MARKETING_VERSION = 0.0.345 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 59f282864cdc75bd910f9d473f00aac7b5c82e6a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Mar 2023 06:13:04 +0000 Subject: [PATCH 0400/1275] Auto-release 0.0.346 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 041804044378..e2688682e7cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.345 +MARKETING_VERSION = 0.0.346 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c9d3e7cdd2a1b271e3d816b91c96f9c0c54939a9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Mar 2023 12:18:38 +0000 Subject: [PATCH 0401/1275] Auto-release 0.0.347 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e2688682e7cb..c39665bbad32 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.346 +MARKETING_VERSION = 0.0.347 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e1e540d70c36e7954a3b6397d26d31fe9c027cdf Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Mar 2023 18:13:12 +0000 Subject: [PATCH 0402/1275] Auto-release 0.0.348 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c39665bbad32..cf058556c20f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.347 +MARKETING_VERSION = 0.0.348 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9faae08668eba13c74dc44ef52ffcfcf124dcaa6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Mar 2023 00:51:07 +0000 Subject: [PATCH 0403/1275] Auto-release 0.0.349 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf058556c20f..55b73b965b95 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.348 +MARKETING_VERSION = 0.0.349 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 71f18099452c10a3d20c5366a5a2a98a41b68444 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Mar 2023 06:14:09 +0000 Subject: [PATCH 0404/1275] Auto-release 0.0.350 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 55b73b965b95..196252f1bcdd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.349 +MARKETING_VERSION = 0.0.350 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7dac739c8698e944cbb1da87157ffae7361542c9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Mar 2023 12:18:59 +0000 Subject: [PATCH 0405/1275] Auto-release 0.0.351 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 196252f1bcdd..071fb0cca933 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.350 +MARKETING_VERSION = 0.0.351 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d74361d32a029c78a300fb74b1f1e327d1849e11 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Mar 2023 18:13:22 +0000 Subject: [PATCH 0406/1275] Auto-release 0.0.352 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 071fb0cca933..f406f2d763c5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.351 +MARKETING_VERSION = 0.0.352 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e2d09add8ada285dcca492b84047cb7f65301293 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Mar 2023 00:50:22 +0000 Subject: [PATCH 0407/1275] Auto-release 0.0.353 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f406f2d763c5..22a995001af0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.352 +MARKETING_VERSION = 0.0.353 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 11e8eead0deccb692f6ccd68d40b1e27d3d06544 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Mar 2023 06:13:46 +0000 Subject: [PATCH 0408/1275] Auto-release 0.0.354 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 22a995001af0..9fb569000079 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.353 +MARKETING_VERSION = 0.0.354 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d84ab8c40e341cc95596284df4102101d1d3c599 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Mar 2023 12:18:43 +0000 Subject: [PATCH 0409/1275] Auto-release 0.0.355 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9fb569000079..ddad5dd5d2ce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.354 +MARKETING_VERSION = 0.0.355 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 57425cce3185f84e6e72c52a19088e211d13610f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Mar 2023 18:11:54 +0000 Subject: [PATCH 0410/1275] Auto-release 0.0.356 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ddad5dd5d2ce..c3568458bb04 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.355 +MARKETING_VERSION = 0.0.356 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 92b6568b7dc8f70a8e45ca9edb10efc9ab96abf7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Mar 2023 00:42:44 +0000 Subject: [PATCH 0411/1275] Auto-release 0.0.357 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c3568458bb04..3c7ad5ffc532 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.356 +MARKETING_VERSION = 0.0.357 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e9c8376bbe0b7af1284b212497515dba901a1400 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Mar 2023 06:11:28 +0000 Subject: [PATCH 0412/1275] Auto-release 0.0.358 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3c7ad5ffc532..d1a355f83c53 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.357 +MARKETING_VERSION = 0.0.358 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8b2cee55fe416997d85b7849edc626a29a7bfa76 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Mar 2023 12:15:36 +0000 Subject: [PATCH 0413/1275] Auto-release 0.0.359 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d1a355f83c53..9185a90a79ce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.358 +MARKETING_VERSION = 0.0.359 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6362fe134bd24d626685f3643d95bdef1c014b98 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Mar 2023 18:11:00 +0000 Subject: [PATCH 0414/1275] Auto-release 0.0.360 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9185a90a79ce..e621fc485882 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.359 +MARKETING_VERSION = 0.0.360 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fbfd59af005cf1a73b434af213bb64cef1c79155 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Mar 2023 00:49:52 +0000 Subject: [PATCH 0415/1275] Auto-release 0.0.361 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e621fc485882..a4da3e4a3861 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.360 +MARKETING_VERSION = 0.0.361 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From da56356b3d4df70e06b565f37bf83e81697df7f0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Mar 2023 06:11:33 +0000 Subject: [PATCH 0416/1275] Auto-release 0.0.362 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a4da3e4a3861..673601782717 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.361 +MARKETING_VERSION = 0.0.362 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d8a76158a3e5275b7449e79f9fc86fb6f9772056 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Mar 2023 12:15:43 +0000 Subject: [PATCH 0417/1275] Auto-release 0.0.363 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 673601782717..a91e93be8440 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.362 +MARKETING_VERSION = 0.0.363 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c784e3c609d8222838442f5ff587aebd9f46510b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Mar 2023 18:11:07 +0000 Subject: [PATCH 0418/1275] Auto-release 0.0.364 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a91e93be8440..5e1e2170d35d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.363 +MARKETING_VERSION = 0.0.364 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 97ca352df11402016fdc31a93820a28107fc9dc3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Mar 2023 00:47:04 +0000 Subject: [PATCH 0419/1275] Auto-release 0.0.365 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e1e2170d35d..79ae5c9bd6e8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.364 +MARKETING_VERSION = 0.0.365 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f76000ba142a0a5a81296bfad51b34e2131b6af5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Mar 2023 06:14:16 +0000 Subject: [PATCH 0420/1275] Auto-release 0.0.366 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 79ae5c9bd6e8..609fab3c530a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.365 +MARKETING_VERSION = 0.0.366 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1595e0ad222895a52fa49cc76beaae354a8ade7b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Mar 2023 12:18:39 +0000 Subject: [PATCH 0421/1275] Auto-release 0.0.367 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 609fab3c530a..f236f0bbe417 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.366 +MARKETING_VERSION = 0.0.367 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f989e8a24869409cde69622b96a5896464654f4f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Mar 2023 18:11:36 +0000 Subject: [PATCH 0422/1275] Auto-release 0.0.368 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f236f0bbe417..79ee339d412f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.367 +MARKETING_VERSION = 0.0.368 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 49971820bc44f765c729adf2f1bbe2f2b0b41cff Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Mar 2023 00:41:45 +0000 Subject: [PATCH 0423/1275] Auto-release 0.0.369 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 79ee339d412f..3792abeb1126 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.368 +MARKETING_VERSION = 0.0.369 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6e17a238477b9e45c04163e12a8be3888c2d7725 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Mar 2023 06:13:39 +0000 Subject: [PATCH 0424/1275] Auto-release 0.0.370 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3792abeb1126..63550b1ec451 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.369 +MARKETING_VERSION = 0.0.370 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 36e30a2e78a5d0c6f7b35b87065292139b41120a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Mar 2023 12:22:50 +0000 Subject: [PATCH 0425/1275] Auto-release 0.0.371 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 63550b1ec451..0dc6bdca6699 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.370 +MARKETING_VERSION = 0.0.371 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ed9351d7ea99edb13b41b759e02122e7949ee953 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Mar 2023 18:14:41 +0000 Subject: [PATCH 0426/1275] Auto-release 0.0.372 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0dc6bdca6699..b2e47384152d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.371 +MARKETING_VERSION = 0.0.372 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0c7a3b92c88572e085489a79ecd7f5cdd9e03b97 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Mar 2023 00:47:53 +0000 Subject: [PATCH 0427/1275] Auto-release 0.0.373 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b2e47384152d..436ee0992996 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.372 +MARKETING_VERSION = 0.0.373 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ca46a8355d5388c58865a3089efcf67c69201d00 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Mar 2023 06:13:02 +0000 Subject: [PATCH 0428/1275] Auto-release 0.0.374 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 436ee0992996..14f2d851490b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.373 +MARKETING_VERSION = 0.0.374 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 500325a85e4b8593666618907dc9bc10ddab6fff Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Mar 2023 12:18:10 +0000 Subject: [PATCH 0429/1275] Auto-release 0.0.375 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 14f2d851490b..a075d252a6b4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.374 +MARKETING_VERSION = 0.0.375 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4706c71e52b98acf4156b8ae0bc307c122c810d3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Mar 2023 18:12:39 +0000 Subject: [PATCH 0430/1275] Auto-release 0.0.376 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a075d252a6b4..f20a4f8676e4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.375 +MARKETING_VERSION = 0.0.376 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f4c585eb0363c1d3f2a7eb243f90ae56eed5f6c2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Mar 2023 00:50:21 +0000 Subject: [PATCH 0431/1275] Auto-release 0.0.377 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f20a4f8676e4..126e9d51e469 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.376 +MARKETING_VERSION = 0.0.377 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c7c868ca0967bb78f60ef3cf83df2d9b5e90c048 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Mar 2023 06:12:55 +0000 Subject: [PATCH 0432/1275] Auto-release 0.0.378 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 126e9d51e469..b3253a4483f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.377 +MARKETING_VERSION = 0.0.378 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b6941e646f7aeb3931d27a0fe47a03301616b5a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Mar 2023 12:17:45 +0000 Subject: [PATCH 0433/1275] Auto-release 0.0.379 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b3253a4483f1..4f46789aebff 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.378 +MARKETING_VERSION = 0.0.379 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9e2c8f062899239758af259aff355fddc43983de Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Mar 2023 18:12:37 +0000 Subject: [PATCH 0434/1275] Auto-release 0.0.380 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4f46789aebff..739504cfe764 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.379 +MARKETING_VERSION = 0.0.380 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7c5daf7bfa3757d0b82ec29a6a8fb122f78bc2e6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Mar 2023 00:47:43 +0000 Subject: [PATCH 0435/1275] Auto-release 0.0.381 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 739504cfe764..24ea87feb7dc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.380 +MARKETING_VERSION = 0.0.381 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From dde4e3d00a7ffadf2ddb467390e28a0721f26940 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Mar 2023 06:11:52 +0000 Subject: [PATCH 0436/1275] Auto-release 0.0.382 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 24ea87feb7dc..c11764ef86b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.381 +MARKETING_VERSION = 0.0.382 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4c9b6394eef1f9fe6a6a5872d41db89e6436ec1a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Mar 2023 12:17:58 +0000 Subject: [PATCH 0437/1275] Auto-release 0.0.383 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c11764ef86b9..40f6dfb5674e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.382 +MARKETING_VERSION = 0.0.383 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 37e31dcccf1dd0eab76b8bb69452404aa0a45b90 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Mar 2023 18:12:03 +0000 Subject: [PATCH 0438/1275] Auto-release 0.0.384 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 40f6dfb5674e..251ee57bc6c1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.383 +MARKETING_VERSION = 0.0.384 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f1db1470aa38dbcbc075ccbce760c8c137fe6d2e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Mar 2023 00:45:20 +0000 Subject: [PATCH 0439/1275] Auto-release 0.0.385 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 251ee57bc6c1..5718c3aee6cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.384 +MARKETING_VERSION = 0.0.385 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bc2dfa7a81b2d76acb51b710099d59fde973d0e9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Mar 2023 06:12:02 +0000 Subject: [PATCH 0440/1275] Auto-release 0.0.386 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5718c3aee6cc..65eba714f92c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.385 +MARKETING_VERSION = 0.0.386 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ff12200ab5b39b5fc6b8105ea4ce0f5cfd6dc8a8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Mar 2023 12:15:48 +0000 Subject: [PATCH 0441/1275] Auto-release 0.0.387 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 65eba714f92c..c8a30b1732a4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.386 +MARKETING_VERSION = 0.0.387 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 529f8e4a97257775712d0a246e15d68b46e9d73c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Mar 2023 18:11:20 +0000 Subject: [PATCH 0442/1275] Auto-release 0.0.388 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c8a30b1732a4..b94494b1add3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.387 +MARKETING_VERSION = 0.0.388 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d9a75aeecba2427a151ed7309f2c16a58d1866e9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Mar 2023 00:52:22 +0000 Subject: [PATCH 0443/1275] Auto-release 0.0.389 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b94494b1add3..85e092670c42 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.388 +MARKETING_VERSION = 0.0.389 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3b6065f4dc8494f7d3e87efafaf135bf7786ec40 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Mar 2023 06:13:15 +0000 Subject: [PATCH 0444/1275] Auto-release 0.0.390 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 85e092670c42..ef652c6bdb6d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.389 +MARKETING_VERSION = 0.0.390 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4e07ba745611b865c7dfc63eb276f51e07fab30b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Mar 2023 12:16:10 +0000 Subject: [PATCH 0445/1275] Auto-release 0.0.391 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ef652c6bdb6d..b2ff28bd7f63 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.390 +MARKETING_VERSION = 0.0.391 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 044d27a9a6afd66c3b8e599636568c50e87e47a5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Mar 2023 18:11:26 +0000 Subject: [PATCH 0446/1275] Auto-release 0.0.392 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b2ff28bd7f63..ad06d50845cd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.391 +MARKETING_VERSION = 0.0.392 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e03efd5234f559631f38f4543c69da66ea179da3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Mar 2023 00:49:17 +0000 Subject: [PATCH 0447/1275] Auto-release 0.0.393 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad06d50845cd..f55cf568e466 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.392 +MARKETING_VERSION = 0.0.393 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f867a9eb7baba77962d6e727230d95a0cfa04b62 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Mar 2023 06:13:06 +0000 Subject: [PATCH 0448/1275] Auto-release 0.0.394 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f55cf568e466..b93f3476208d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.393 +MARKETING_VERSION = 0.0.394 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1ca39f77d6de59fd728da00c7c12db5bca985deb Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Mar 2023 12:18:25 +0000 Subject: [PATCH 0449/1275] Auto-release 0.0.395 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b93f3476208d..7e2194e88ac6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.394 +MARKETING_VERSION = 0.0.395 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2eec1468f8ef2801b4e50f03997718eb62c11068 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Mar 2023 18:12:16 +0000 Subject: [PATCH 0450/1275] Auto-release 0.0.396 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7e2194e88ac6..f98cb7ca10b3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.395 +MARKETING_VERSION = 0.0.396 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f3252cd30d0c3ccccb9bc53415efd9b9741dca44 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Mar 2023 00:43:54 +0000 Subject: [PATCH 0451/1275] Auto-release 0.0.397 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f98cb7ca10b3..47d4eb50e732 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.396 +MARKETING_VERSION = 0.0.397 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6522c00a8c79fc1fdb5bd902b0f8bccba8301b0a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Mar 2023 06:12:41 +0000 Subject: [PATCH 0452/1275] Auto-release 0.0.398 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 47d4eb50e732..01e0939ddbab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.397 +MARKETING_VERSION = 0.0.398 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a1257bdedf135978ca7ecb1d43237669aedc31f1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Mar 2023 12:17:25 +0000 Subject: [PATCH 0453/1275] Auto-release 0.0.399 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 01e0939ddbab..a9fb218e9681 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.398 +MARKETING_VERSION = 0.0.399 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c63de3b5d111655fd8c97c8fb2582173e77b99a4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Mar 2023 18:11:50 +0000 Subject: [PATCH 0454/1275] Auto-release 0.0.400 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a9fb218e9681..0c2cfc3d7dfa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.399 +MARKETING_VERSION = 0.0.400 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 175ab4e39f6bca5c72a34aca0e1fede3397d3d8a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Mar 2023 00:44:00 +0000 Subject: [PATCH 0455/1275] Auto-release 0.0.401 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0c2cfc3d7dfa..3f9aaa80e369 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.400 +MARKETING_VERSION = 0.0.401 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b5b26f2ec3d8f55ded4565eeaf5cd62a0e0712ba Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Mar 2023 06:12:03 +0000 Subject: [PATCH 0456/1275] Auto-release 0.0.402 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f9aaa80e369..1761ab93d800 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.401 +MARKETING_VERSION = 0.0.402 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 23feca144f37957561b5078ae190542247b7046b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Mar 2023 12:17:09 +0000 Subject: [PATCH 0457/1275] Auto-release 0.0.403 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1761ab93d800..eefa1c92bea9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.402 +MARKETING_VERSION = 0.0.403 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 97cea58238f0f74c9998560d06de32e6f04f8d9c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Mar 2023 18:11:37 +0000 Subject: [PATCH 0458/1275] Auto-release 0.0.404 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eefa1c92bea9..7d561d6c10c0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.403 +MARKETING_VERSION = 0.0.404 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2d20064ba73614338ab285d67410b060012bc0cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Mar 2023 00:44:25 +0000 Subject: [PATCH 0459/1275] Auto-release 0.0.405 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7d561d6c10c0..4930d8c9d3af 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.404 +MARKETING_VERSION = 0.0.405 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 98e7fd0d47068d1ea6b63f300d66df02029bdaa5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Mar 2023 06:12:23 +0000 Subject: [PATCH 0460/1275] Auto-release 0.0.406 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4930d8c9d3af..13dab4160510 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.405 +MARKETING_VERSION = 0.0.406 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2bd2a493303267b42cd1f9186f9aaf8b4cb8cced Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Mar 2023 12:17:35 +0000 Subject: [PATCH 0461/1275] Auto-release 0.0.407 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 13dab4160510..0bf737915a04 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.406 +MARKETING_VERSION = 0.0.407 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 37d1d0a4709c324c7be9628858832d8fae218abd Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Mar 2023 18:11:58 +0000 Subject: [PATCH 0462/1275] Auto-release 0.0.408 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0bf737915a04..1594d682cbba 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.407 +MARKETING_VERSION = 0.0.408 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0cf63e2224a9bd90094b4d09ae916c65241acc0a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Mar 2023 00:44:09 +0000 Subject: [PATCH 0463/1275] Auto-release 0.0.409 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1594d682cbba..dafcb3179a8a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.408 +MARKETING_VERSION = 0.0.409 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8b0dd106a05a1a52c71080ec57c11c3a83aafc34 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Mar 2023 06:12:29 +0000 Subject: [PATCH 0464/1275] Auto-release 0.0.410 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dafcb3179a8a..8ea8dc280442 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.409 +MARKETING_VERSION = 0.0.410 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 48f7a7a7cfedbca97326efd73c4357b27c450499 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Mar 2023 12:15:25 +0000 Subject: [PATCH 0465/1275] Auto-release 0.0.411 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8ea8dc280442..72f8d8f7527c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.410 +MARKETING_VERSION = 0.0.411 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b0381810952baf8f50c2a12f433116404c5c16a7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Mar 2023 18:11:35 +0000 Subject: [PATCH 0466/1275] Auto-release 0.0.412 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 72f8d8f7527c..b9eb17e23dea 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.411 +MARKETING_VERSION = 0.0.412 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 362a36d188cdf22c7971fe8c03675813807bef3f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Mar 2023 00:44:08 +0000 Subject: [PATCH 0467/1275] Auto-release 0.0.413 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b9eb17e23dea..364b05b1fb0a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.412 +MARKETING_VERSION = 0.0.413 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a4eb4efd674e327bba6a0ef5021ee3a0196fc91c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Mar 2023 06:11:21 +0000 Subject: [PATCH 0468/1275] Auto-release 0.0.414 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 364b05b1fb0a..08400fd3c42d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.413 +MARKETING_VERSION = 0.0.414 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8246138edc365d2baf302dfe9b8ebc7c74639dab Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Mar 2023 12:15:01 +0000 Subject: [PATCH 0469/1275] Auto-release 0.0.415 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 08400fd3c42d..101f4bf1c06e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.414 +MARKETING_VERSION = 0.0.415 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 25848db450cc729439477a5b205dbb7ce99e548a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Mar 2023 18:10:48 +0000 Subject: [PATCH 0470/1275] Auto-release 0.0.416 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 101f4bf1c06e..0a4a2a976651 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.415 +MARKETING_VERSION = 0.0.416 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9c05bce83f0d436728e67ce4891e284e2fda6e79 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Mar 2023 00:48:08 +0000 Subject: [PATCH 0471/1275] Auto-release 0.0.417 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0a4a2a976651..0c95b296e94b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.416 +MARKETING_VERSION = 0.0.417 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f614c6911c539adf08c4ce064539ae1a309e2df6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Mar 2023 06:11:15 +0000 Subject: [PATCH 0472/1275] Auto-release 0.0.418 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0c95b296e94b..4560ee8e22c6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.417 +MARKETING_VERSION = 0.0.418 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 142546a7e9a29e22b5ed42587ed3c84600474233 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Mar 2023 12:15:46 +0000 Subject: [PATCH 0473/1275] Auto-release 0.0.419 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4560ee8e22c6..26e659785488 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.418 +MARKETING_VERSION = 0.0.419 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f56f3876809b70676235dd6ad8e68e3ade95c1c6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Mar 2023 18:10:27 +0000 Subject: [PATCH 0474/1275] Auto-release 0.0.420 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 26e659785488..1ff05205fe3d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.419 +MARKETING_VERSION = 0.0.420 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a9bfbe144306edca97e167a7d947d614af35848d Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Mar 2023 00:43:24 +0000 Subject: [PATCH 0475/1275] Auto-release 0.0.421 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ff05205fe3d..fed5de05a27c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.420 +MARKETING_VERSION = 0.0.421 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 29feda4598b397f91b86379a6286e4fb2a900c6a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Mar 2023 06:12:54 +0000 Subject: [PATCH 0476/1275] Auto-release 0.0.422 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fed5de05a27c..2f909bd2cd15 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.421 +MARKETING_VERSION = 0.0.422 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8b3239c523376b796ce86d630e4912030c4d7b64 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Mar 2023 18:13:25 +0000 Subject: [PATCH 0477/1275] Auto-release 0.0.423 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f909bd2cd15..d9c5065fa9f9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.422 +MARKETING_VERSION = 0.0.423 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 47385f337ebc362fd7022bafca1fac41e3199981 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Mar 2023 00:45:51 +0000 Subject: [PATCH 0478/1275] Auto-release 0.0.424 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d9c5065fa9f9..8fbf861b9708 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.423 +MARKETING_VERSION = 0.0.424 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f758e77cab0646da26ffcf914f69adc3d10622d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Mar 2023 06:12:49 +0000 Subject: [PATCH 0479/1275] Auto-release 0.0.425 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8fbf861b9708..b2abae525444 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.424 +MARKETING_VERSION = 0.0.425 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From eb7fc0a360df73966adb46b1a94a935ab505e1bd Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Mar 2023 12:18:29 +0000 Subject: [PATCH 0480/1275] Auto-release 0.0.426 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b2abae525444..6b55d6e3f48b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.425 +MARKETING_VERSION = 0.0.426 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8369f131a059dd8e7cb7c320a83fc23839f5930d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Mar 2023 18:12:08 +0000 Subject: [PATCH 0481/1275] Auto-release 0.0.427 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6b55d6e3f48b..698cd48674e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.426 +MARKETING_VERSION = 0.0.427 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3a617ec8fed77fe24845e4fe0b1590b37648f368 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 Mar 2023 00:52:59 +0000 Subject: [PATCH 0482/1275] Auto-release 0.0.428 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 698cd48674e5..fff46bec93f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.427 +MARKETING_VERSION = 0.0.428 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 87ca78150e7d5e097d384c86a1d1212fe20c2252 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 Mar 2023 06:12:38 +0000 Subject: [PATCH 0483/1275] Auto-release 0.0.429 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fff46bec93f1..567c7bd02a7e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.428 +MARKETING_VERSION = 0.0.429 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4ed51306a45f657b6e3982f34114311aeef1274d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 Mar 2023 12:18:43 +0000 Subject: [PATCH 0484/1275] Auto-release 0.0.430 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 567c7bd02a7e..6c0ffa4b7d38 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.429 +MARKETING_VERSION = 0.0.430 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From db88ccc8af7a654b6ef2f4e7d4109a611bcefa39 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 Mar 2023 18:19:24 +0000 Subject: [PATCH 0485/1275] Auto-release 0.0.431 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6c0ffa4b7d38..7fadfe34cb2e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.430 +MARKETING_VERSION = 0.0.431 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 24b5a6095efec420dd9ab906d58e50c3921ec268 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 Mar 2023 00:45:20 +0000 Subject: [PATCH 0486/1275] Auto-release 0.0.432 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7fadfe34cb2e..4dea5456cd2e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.431 +MARKETING_VERSION = 0.0.432 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cfdf5315d952de3af0d7835d00912e0dc1aa3569 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 Mar 2023 06:12:51 +0000 Subject: [PATCH 0487/1275] Auto-release 0.0.433 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4dea5456cd2e..7d83a90eac27 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.432 +MARKETING_VERSION = 0.0.433 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e425c09549f5c7bd506a118d917a630e806007f6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 Mar 2023 12:17:21 +0000 Subject: [PATCH 0488/1275] Auto-release 0.0.434 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7d83a90eac27..079faf8b05e6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.433 +MARKETING_VERSION = 0.0.434 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fee1f3de9f2d36d6eb70ec3b726bf708d8fe16f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 Mar 2023 18:11:21 +0000 Subject: [PATCH 0489/1275] Auto-release 0.0.435 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 079faf8b05e6..02fd5a8dd1fb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.434 +MARKETING_VERSION = 0.0.435 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bd0e1e2594e30f1f59f004d82793409235ae7f4a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 31 Mar 2023 00:45:38 +0000 Subject: [PATCH 0490/1275] Auto-release 0.0.436 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 02fd5a8dd1fb..72f1556df709 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.435 +MARKETING_VERSION = 0.0.436 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ec878f0c221944393a115cfeedc4e8b5f971bf49 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 31 Mar 2023 06:12:18 +0000 Subject: [PATCH 0491/1275] Auto-release 0.0.437 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 72f1556df709..caf40265f093 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.436 +MARKETING_VERSION = 0.0.437 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 95b250a6ddb992304f14c1dfbfd1112bd2a8934a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 31 Mar 2023 12:16:44 +0000 Subject: [PATCH 0492/1275] Auto-release 0.0.438 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index caf40265f093..372dd618b0df 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.437 +MARKETING_VERSION = 0.0.438 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2c3158bb96c0e64a5e36f703c4bba7e7a0d34fbe Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 31 Mar 2023 18:10:15 +0000 Subject: [PATCH 0493/1275] Auto-release 0.0.439 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 372dd618b0df..b3d6715b1fae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.438 +MARKETING_VERSION = 0.0.439 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7e738f5eb0ad59ff67d837f78343f16ba6d92700 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Apr 2023 00:45:05 +0000 Subject: [PATCH 0494/1275] Auto-release 0.0.440 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b3d6715b1fae..fe620c1d6146 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.439 +MARKETING_VERSION = 0.0.440 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 52a62e0edd67a82c17544641f76368eab604b87e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Apr 2023 06:11:14 +0000 Subject: [PATCH 0495/1275] Auto-release 0.0.441 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fe620c1d6146..e5eb8a6633cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.440 +MARKETING_VERSION = 0.0.441 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b31d288981972ac6556a4a58963b5985a4cdf938 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Apr 2023 12:15:06 +0000 Subject: [PATCH 0496/1275] Auto-release 0.0.442 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e5eb8a6633cb..3c79b9613f72 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.441 +MARKETING_VERSION = 0.0.442 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9f197ea3578e37dc9f6807f1d89399abf9516737 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Apr 2023 18:10:24 +0000 Subject: [PATCH 0497/1275] Auto-release 0.0.443 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3c79b9613f72..c1762ac4d08b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.442 +MARKETING_VERSION = 0.0.443 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 295297929d11604574ae76d5bce40b66b6a30d91 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Apr 2023 00:45:57 +0000 Subject: [PATCH 0498/1275] Auto-release 0.0.444 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c1762ac4d08b..59d0e079df86 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.443 +MARKETING_VERSION = 0.0.444 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a09eaa7804b7562057591137a433cee217c8651d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Apr 2023 06:11:21 +0000 Subject: [PATCH 0499/1275] Auto-release 0.0.445 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 59d0e079df86..a9395ca820c1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.444 +MARKETING_VERSION = 0.0.445 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 60dfddcf692ddb844eea38c48e2a67174e3c4e12 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Apr 2023 12:14:43 +0000 Subject: [PATCH 0500/1275] Auto-release 0.0.446 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a9395ca820c1..b37ebfd3b414 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.445 +MARKETING_VERSION = 0.0.446 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4b3fd9ccb6cf74c1c9bc714c376eefdd7b9d78ad Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Apr 2023 18:09:41 +0000 Subject: [PATCH 0501/1275] Auto-release 0.0.447 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b37ebfd3b414..eabed8c67fa8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.446 +MARKETING_VERSION = 0.0.447 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ad31ec5324e0e47d76c424d2336e92484fdcccfb Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Apr 2023 00:43:28 +0000 Subject: [PATCH 0502/1275] Auto-release 0.0.448 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eabed8c67fa8..f7a2ee82f7c6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.447 +MARKETING_VERSION = 0.0.448 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From efb2169958922ae841b8671e77a45814861308a9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Apr 2023 06:12:02 +0000 Subject: [PATCH 0503/1275] Auto-release 0.0.449 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f7a2ee82f7c6..15a8b69149d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.448 +MARKETING_VERSION = 0.0.449 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From eda6de33ef4aaaad605dfd0aea8af7932e974974 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Apr 2023 12:16:27 +0000 Subject: [PATCH 0504/1275] Auto-release 0.0.450 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 15a8b69149d0..2476f1eca6eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.449 +MARKETING_VERSION = 0.0.450 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a612b73c377ec8635e7c5bf5fcce1aaa84eb72aa Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Apr 2023 18:11:18 +0000 Subject: [PATCH 0505/1275] Auto-release 0.0.451 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2476f1eca6eb..5dc07ccca202 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.450 +MARKETING_VERSION = 0.0.451 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c032b4652b5f22e808f2776e83ee1cff29aff0c6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Apr 2023 00:43:24 +0000 Subject: [PATCH 0506/1275] Auto-release 0.0.452 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5dc07ccca202..47642823892c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.451 +MARKETING_VERSION = 0.0.452 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d2fd97b7a66fdd159142f5b5afaa3c71bb9ede38 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Apr 2023 06:12:24 +0000 Subject: [PATCH 0507/1275] Auto-release 0.0.453 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 47642823892c..cbf340bbfd46 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.452 +MARKETING_VERSION = 0.0.453 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8aba08f3e3278b508e9de53bc6d5082545dc72cd Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Apr 2023 12:16:25 +0000 Subject: [PATCH 0508/1275] Auto-release 0.0.454 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cbf340bbfd46..bcd5642d5322 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.453 +MARKETING_VERSION = 0.0.454 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 10b659ece923b63160badd760079fbb645b69632 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Apr 2023 18:09:41 +0000 Subject: [PATCH 0509/1275] Auto-release 0.0.455 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bcd5642d5322..c0e02b51bb83 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.454 +MARKETING_VERSION = 0.0.455 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1f07772082b9a35f0754512b5f47a0065fbd1430 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Apr 2023 00:36:54 +0000 Subject: [PATCH 0510/1275] Auto-release 0.0.456 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c0e02b51bb83..807ad7520ee1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.455 +MARKETING_VERSION = 0.0.456 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 915c582deb827cec7f64c2ac44d40199cceabcad Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Apr 2023 06:12:32 +0000 Subject: [PATCH 0511/1275] Auto-release 0.0.457 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 807ad7520ee1..3faffe6faa80 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.456 +MARKETING_VERSION = 0.0.457 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 700ae46bb675d0dde6fa79e7a6387a89f459062b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Apr 2023 12:20:26 +0000 Subject: [PATCH 0512/1275] Auto-release 0.0.458 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3faffe6faa80..460a3d3045fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.457 +MARKETING_VERSION = 0.0.458 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2abb3bb32a25a80ff05f64e12160a398c477e091 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Apr 2023 18:12:49 +0000 Subject: [PATCH 0513/1275] Auto-release 0.0.459 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 460a3d3045fc..02e4a36f294f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.458 +MARKETING_VERSION = 0.0.459 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e47da82ed11a9ccd7336673864aa9f1d196d1ba1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Apr 2023 00:42:52 +0000 Subject: [PATCH 0514/1275] Auto-release 0.0.460 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 02e4a36f294f..3703a830568a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.459 +MARKETING_VERSION = 0.0.460 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 236af33db25c7798d49dea924858c3184515bbca Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Apr 2023 06:12:10 +0000 Subject: [PATCH 0515/1275] Auto-release 0.0.461 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3703a830568a..1e7c48bf9d1b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.460 +MARKETING_VERSION = 0.0.461 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4363c62a67b72f7be78488b817f7f30cea9db238 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Apr 2023 12:16:09 +0000 Subject: [PATCH 0516/1275] Auto-release 0.0.462 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1e7c48bf9d1b..4b65ca47b790 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.461 +MARKETING_VERSION = 0.0.462 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 15cc63f2fb0c7258e16a6e589068fb6d82e1f426 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Apr 2023 18:11:27 +0000 Subject: [PATCH 0517/1275] Auto-release 0.0.463 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4b65ca47b790..6f88bf3a118a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.462 +MARKETING_VERSION = 0.0.463 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a8676539bf3999ce7b7ba09f5325101ab22f339b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Apr 2023 00:39:01 +0000 Subject: [PATCH 0518/1275] Auto-release 0.0.464 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6f88bf3a118a..b76dc8c2de6c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.463 +MARKETING_VERSION = 0.0.464 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a22cce40c1b23c5da1c62b806d2f846f2220ed9c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Apr 2023 06:12:12 +0000 Subject: [PATCH 0519/1275] Auto-release 0.0.465 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b76dc8c2de6c..579d47c50aa0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.464 +MARKETING_VERSION = 0.0.465 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1fd3ba2bd16600d24d8f300b9b5d311480a65bdc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Apr 2023 12:15:40 +0000 Subject: [PATCH 0520/1275] Auto-release 0.0.466 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 579d47c50aa0..fd69b4c646cf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.465 +MARKETING_VERSION = 0.0.466 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4b543fb4c615cf8b8db21433e6ad981e74ac03bc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Apr 2023 18:10:52 +0000 Subject: [PATCH 0521/1275] Auto-release 0.0.467 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fd69b4c646cf..5d6b44c5c6ed 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.466 +MARKETING_VERSION = 0.0.467 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e468b4e7ed276a11e052fd67ec0846f073caecea Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Apr 2023 00:40:59 +0000 Subject: [PATCH 0522/1275] Auto-release 0.0.468 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5d6b44c5c6ed..bda3509d0299 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.467 +MARKETING_VERSION = 0.0.468 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 47e691fa9934de626d01226ea838f94e749f7454 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Apr 2023 06:11:10 +0000 Subject: [PATCH 0523/1275] Auto-release 0.0.469 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bda3509d0299..f67fa7f9e669 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.468 +MARKETING_VERSION = 0.0.469 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5e0a67cb25fafb6f47079d573a006d6ce6c72881 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Apr 2023 12:14:17 +0000 Subject: [PATCH 0524/1275] Auto-release 0.0.470 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f67fa7f9e669..df63a3d6377e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.469 +MARKETING_VERSION = 0.0.470 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 256c129bac059ee38658a863eb209f5a76acbd85 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Apr 2023 18:10:10 +0000 Subject: [PATCH 0525/1275] Auto-release 0.0.471 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df63a3d6377e..b5e6d9e579bb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.470 +MARKETING_VERSION = 0.0.471 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From dedd5bb53a14ae6aeea7f9db4354062f8908d787 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Apr 2023 00:44:01 +0000 Subject: [PATCH 0526/1275] Auto-release 0.0.472 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b5e6d9e579bb..545a87dc7c7c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.471 +MARKETING_VERSION = 0.0.472 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5f91d720f2a83beef9661daa0e3d7cb44aed5e62 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Apr 2023 06:11:15 +0000 Subject: [PATCH 0527/1275] Auto-release 0.0.473 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 545a87dc7c7c..30cca68e4b68 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.472 +MARKETING_VERSION = 0.0.473 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f361d68db1817689e7b61645ddcdd7810b885c32 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Apr 2023 12:14:59 +0000 Subject: [PATCH 0528/1275] Auto-release 0.0.474 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 30cca68e4b68..b57a91390dbd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.473 +MARKETING_VERSION = 0.0.474 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 42fc7240ac095535e0ee23a7402aefe46b612db2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Apr 2023 18:10:12 +0000 Subject: [PATCH 0529/1275] Auto-release 0.0.475 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b57a91390dbd..0a612b735934 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.474 +MARKETING_VERSION = 0.0.475 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f48f6579463bc5bba6131a88da75afa6be63c9cd Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Apr 2023 00:43:09 +0000 Subject: [PATCH 0530/1275] Auto-release 0.0.476 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0a612b735934..326bccd7b8f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.475 +MARKETING_VERSION = 0.0.476 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c8dd2efc419b610c6af5fff011b7ff2953206733 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Apr 2023 06:11:47 +0000 Subject: [PATCH 0531/1275] Auto-release 0.0.477 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 326bccd7b8f1..3f7d228dc3ff 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.476 +MARKETING_VERSION = 0.0.477 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ddd3f7e1d0a7aa1d3c4294c46e98de6b0db341c7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Apr 2023 12:15:51 +0000 Subject: [PATCH 0532/1275] Auto-release 0.0.478 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f7d228dc3ff..09df5194121e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.477 +MARKETING_VERSION = 0.0.478 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cff4c8405b9fb7c6eccac4ea08607c58361379c4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Apr 2023 18:11:34 +0000 Subject: [PATCH 0533/1275] Auto-release 0.0.479 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 09df5194121e..b6bebd31c2ec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.478 +MARKETING_VERSION = 0.0.479 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8e03f14f3b7426a01328a3a158d57e30e284d13c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Apr 2023 00:43:59 +0000 Subject: [PATCH 0534/1275] Auto-release 0.0.480 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6bebd31c2ec..934ffa40756a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.479 +MARKETING_VERSION = 0.0.480 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0c2484db79753932c53a6a3698c75610006b74b0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Apr 2023 06:11:58 +0000 Subject: [PATCH 0535/1275] Auto-release 0.0.481 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 934ffa40756a..fc3364782e9e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.480 +MARKETING_VERSION = 0.0.481 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0205ced6742b2b3692eae880e19a1f470eeb84c2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Apr 2023 12:16:38 +0000 Subject: [PATCH 0536/1275] Auto-release 0.0.482 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fc3364782e9e..8e1eefe5e626 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.481 +MARKETING_VERSION = 0.0.482 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 55b8661ff29e7f1e5bfa6f4545e8a23c5748221a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Apr 2023 18:10:39 +0000 Subject: [PATCH 0537/1275] Auto-release 0.0.483 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8e1eefe5e626..72ead9a35716 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.482 +MARKETING_VERSION = 0.0.483 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e0fced07f24454d802d870b0e2acb52b95020497 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Apr 2023 00:42:29 +0000 Subject: [PATCH 0538/1275] Auto-release 0.0.484 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 72ead9a35716..605da1ee23d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.483 +MARKETING_VERSION = 0.0.484 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 025c4c69442c0104ca802494720c62fed479e261 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Apr 2023 06:12:32 +0000 Subject: [PATCH 0539/1275] Auto-release 0.0.485 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 605da1ee23d2..d444eeaefa5d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.484 +MARKETING_VERSION = 0.0.485 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6855695dd0c886fa8efe0aed747a27a9c4576fe5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Apr 2023 12:17:29 +0000 Subject: [PATCH 0540/1275] Auto-release 0.0.486 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d444eeaefa5d..7fb88a1f9f4a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.485 +MARKETING_VERSION = 0.0.486 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cbb86a8f81138d7594b88f5765c1cfc864848d25 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Apr 2023 18:11:41 +0000 Subject: [PATCH 0541/1275] Auto-release 0.0.487 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7fb88a1f9f4a..b50ba2bdc954 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.486 +MARKETING_VERSION = 0.0.487 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f80e89eeb18180d4d471f2a2ab6368a03004557f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Apr 2023 00:41:31 +0000 Subject: [PATCH 0542/1275] Auto-release 0.0.488 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b50ba2bdc954..b2d148a336bd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.487 +MARKETING_VERSION = 0.0.488 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f7f5976a4c67a33e8ba527ed5212b8129a6e322c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Apr 2023 06:12:11 +0000 Subject: [PATCH 0543/1275] Auto-release 0.0.489 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b2d148a336bd..c5f934631b5b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.488 +MARKETING_VERSION = 0.0.489 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ec4b6fca740ad0e8577d849265089a52aa86823d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Apr 2023 12:17:36 +0000 Subject: [PATCH 0544/1275] Auto-release 0.0.490 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c5f934631b5b..5280752fd861 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.489 +MARKETING_VERSION = 0.0.490 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ff74b27783a36d1bce0c7cbb006cbf960e9d0c6d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Apr 2023 18:11:23 +0000 Subject: [PATCH 0545/1275] Auto-release 0.0.491 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5280752fd861..5aa07bdd68e4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.490 +MARKETING_VERSION = 0.0.491 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a356386667e38f8c9e50147ab8dae1f8d73cdd91 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Apr 2023 00:41:47 +0000 Subject: [PATCH 0546/1275] Auto-release 0.0.492 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5aa07bdd68e4..b7a216603f1d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.491 +MARKETING_VERSION = 0.0.492 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 20e6f485f541ae57abd78d5224158ed002ccf657 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Apr 2023 06:12:07 +0000 Subject: [PATCH 0547/1275] Auto-release 0.0.493 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b7a216603f1d..d064123378d4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.492 +MARKETING_VERSION = 0.0.493 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c9345ae90ba1d2edd71d648b49578fd7f23297d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Apr 2023 12:16:14 +0000 Subject: [PATCH 0548/1275] Auto-release 0.0.494 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d064123378d4..01ec8141ac06 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.493 +MARKETING_VERSION = 0.0.494 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9824f52dc57ac77d6e9cd75ab04ba8d5272bd5ab Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Apr 2023 18:11:46 +0000 Subject: [PATCH 0549/1275] Auto-release 0.0.495 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 01ec8141ac06..ad5bded126be 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.494 +MARKETING_VERSION = 0.0.495 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 01b3db9788447c8e310d2ce8d8d8c346017bc102 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Apr 2023 00:44:41 +0000 Subject: [PATCH 0550/1275] Auto-release 0.0.496 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad5bded126be..971fe62b2e04 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.495 +MARKETING_VERSION = 0.0.496 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 65f3a6f207812f5abc15017df44106682e0c8efc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Apr 2023 06:11:19 +0000 Subject: [PATCH 0551/1275] Auto-release 0.0.497 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 971fe62b2e04..2fa2eed8b18b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.496 +MARKETING_VERSION = 0.0.497 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8a3c08587a769f4ea307858ca2f724eca21cbfca Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Apr 2023 12:14:39 +0000 Subject: [PATCH 0552/1275] Auto-release 0.0.498 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2fa2eed8b18b..b43e1413b384 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.497 +MARKETING_VERSION = 0.0.498 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 90e0a9accce7c0e16e44ea28da7a5f165aa25ad9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Apr 2023 18:10:06 +0000 Subject: [PATCH 0553/1275] Auto-release 0.0.499 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b43e1413b384..fc98dd992bed 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.498 +MARKETING_VERSION = 0.0.499 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0cb15839fd04490beabd9e2707b5bf7c11dd37d6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Apr 2023 00:44:38 +0000 Subject: [PATCH 0554/1275] Auto-release 0.0.500 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fc98dd992bed..51bf2f5c0530 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.499 +MARKETING_VERSION = 0.0.500 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9dd380f211aaf9ee328749a668de878584b05acb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Apr 2023 06:11:11 +0000 Subject: [PATCH 0555/1275] Auto-release 0.0.501 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 51bf2f5c0530..f482540d5cb1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.500 +MARKETING_VERSION = 0.0.501 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ab11182c5dbf4693a0cd6f3304220c8a84692569 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Apr 2023 12:14:53 +0000 Subject: [PATCH 0556/1275] Auto-release 0.0.502 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f482540d5cb1..d6a2ff223040 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.501 +MARKETING_VERSION = 0.0.502 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 479897e038d8959ce30ccb528d3f6a3f58e2678b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Apr 2023 18:10:23 +0000 Subject: [PATCH 0557/1275] Auto-release 0.0.503 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d6a2ff223040..3242de4ae0b8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.502 +MARKETING_VERSION = 0.0.503 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2f92440de65e209dbbafbd56f9aec3428f0d15b5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Apr 2023 00:43:53 +0000 Subject: [PATCH 0558/1275] Auto-release 0.0.504 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3242de4ae0b8..8f236e1a9ed2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.503 +MARKETING_VERSION = 0.0.504 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6e22e468eb0230d3c8997dd88d1f3580a4c13a9e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Apr 2023 06:12:27 +0000 Subject: [PATCH 0559/1275] Auto-release 0.0.505 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8f236e1a9ed2..063bab2b49c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.504 +MARKETING_VERSION = 0.0.505 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d210be7c47f444855723fa1ceb9c9dcddc2c7eea Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Apr 2023 12:17:45 +0000 Subject: [PATCH 0560/1275] Auto-release 0.0.506 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 063bab2b49c8..265d9b559291 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.505 +MARKETING_VERSION = 0.0.506 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f43df639bffafd30c9e0cc22905d03a3ee6a5497 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Apr 2023 18:11:46 +0000 Subject: [PATCH 0561/1275] Auto-release 0.0.507 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 265d9b559291..2da87e306d50 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.506 +MARKETING_VERSION = 0.0.507 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8885378c8511a4a9c0bdc06ba0738e3229d983dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Apr 2023 00:42:09 +0000 Subject: [PATCH 0562/1275] Auto-release 0.0.508 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2da87e306d50..83926a7acf8a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.507 +MARKETING_VERSION = 0.0.508 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d8472a139c28f6c8113f8ed325bad53b62e95cac Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Apr 2023 06:12:38 +0000 Subject: [PATCH 0563/1275] Auto-release 0.0.509 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 83926a7acf8a..36ac351a7bc1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.508 +MARKETING_VERSION = 0.0.509 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bc3af1bf213bc4f960b0ea7415ba5eb861b527e8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Apr 2023 12:16:57 +0000 Subject: [PATCH 0564/1275] Auto-release 0.0.510 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 36ac351a7bc1..e6889b2eece3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.509 +MARKETING_VERSION = 0.0.510 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c8f3caee807f7d348b52a60da7caf10dfc2621f8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Apr 2023 18:12:04 +0000 Subject: [PATCH 0565/1275] Auto-release 0.0.511 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e6889b2eece3..7a8478530c38 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.510 +MARKETING_VERSION = 0.0.511 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2ba4a784734c133fd1f416effc7c5f9e5391ace4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Apr 2023 00:44:29 +0000 Subject: [PATCH 0566/1275] Auto-release 0.0.512 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7a8478530c38..52154cb32e0d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.511 +MARKETING_VERSION = 0.0.512 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e71f14a1858f568c369f98530124df297efadc23 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Apr 2023 06:12:28 +0000 Subject: [PATCH 0567/1275] Auto-release 0.0.513 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 52154cb32e0d..168e76405bd4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.512 +MARKETING_VERSION = 0.0.513 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2b4cfc41e7b27e4c3f9ebb604e5ce43a84acec88 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Apr 2023 12:16:36 +0000 Subject: [PATCH 0568/1275] Auto-release 0.0.514 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 168e76405bd4..b003adeccff9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.513 +MARKETING_VERSION = 0.0.514 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b66174c3d4aed79f431acac7df075e864c014f21 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Apr 2023 18:11:49 +0000 Subject: [PATCH 0569/1275] Auto-release 0.0.515 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b003adeccff9..986477906ae2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.514 +MARKETING_VERSION = 0.0.515 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f9698edd82147b198732ea664319a996e7752a9c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Apr 2023 00:42:08 +0000 Subject: [PATCH 0570/1275] Auto-release 0.0.516 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 986477906ae2..feffae61904f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.515 +MARKETING_VERSION = 0.0.516 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 05d625ce15d85a4f9542063e2d3ec8b879d75eb8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Apr 2023 06:12:09 +0000 Subject: [PATCH 0571/1275] Auto-release 0.0.517 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index feffae61904f..b462647392d9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.516 +MARKETING_VERSION = 0.0.517 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4d162fbff07ce2976583ec8b6fe0ee70f0005792 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Apr 2023 12:16:15 +0000 Subject: [PATCH 0572/1275] Auto-release 0.0.518 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b462647392d9..a0b50d75892e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.517 +MARKETING_VERSION = 0.0.518 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cb9abffa3c142ac352b1ae82e8ebfcf3feb6f018 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Apr 2023 18:11:19 +0000 Subject: [PATCH 0573/1275] Auto-release 0.0.519 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a0b50d75892e..2e38ab80ac8c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.518 +MARKETING_VERSION = 0.0.519 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 69e21cb71c4fbbc5ef68dfe66506a3432161a128 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Apr 2023 00:42:35 +0000 Subject: [PATCH 0574/1275] Auto-release 0.0.520 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2e38ab80ac8c..f30e35ab001e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.519 +MARKETING_VERSION = 0.0.520 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 615b87bbda0fb93e501e0e21a18580041c64e18a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Apr 2023 06:12:27 +0000 Subject: [PATCH 0575/1275] Auto-release 0.0.521 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f30e35ab001e..822a4907fff4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.520 +MARKETING_VERSION = 0.0.521 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 66f946f83a18badca0d10de659116c885c74f912 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Apr 2023 12:15:48 +0000 Subject: [PATCH 0576/1275] Auto-release 0.0.522 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 822a4907fff4..bf713f35d506 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.521 +MARKETING_VERSION = 0.0.522 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 21c7216b8004a2186f81dd424e668f4510b45cc2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Apr 2023 18:12:52 +0000 Subject: [PATCH 0577/1275] Auto-release 0.0.523 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bf713f35d506..75a83862c2ae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.522 +MARKETING_VERSION = 0.0.523 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 25165a868f657d12b06088056b8e3f6d10191361 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Apr 2023 00:42:41 +0000 Subject: [PATCH 0578/1275] Auto-release 0.0.524 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 75a83862c2ae..2efce2d0126f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.523 +MARKETING_VERSION = 0.0.524 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3ce723f55a4aab385adf7da58c5fb3e451d51743 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Apr 2023 06:11:35 +0000 Subject: [PATCH 0579/1275] Auto-release 0.0.525 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2efce2d0126f..12fa6f9f6716 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.524 +MARKETING_VERSION = 0.0.525 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From db0c27f7c6a550c0e94c2fbcc94c27a4f6364797 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Apr 2023 12:15:01 +0000 Subject: [PATCH 0580/1275] Auto-release 0.0.526 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 12fa6f9f6716..6f39355d7099 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.525 +MARKETING_VERSION = 0.0.526 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b1c538c079471a8f3e6179c86aa0da2d3b8f112c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Apr 2023 18:10:22 +0000 Subject: [PATCH 0581/1275] Auto-release 0.0.527 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6f39355d7099..f1b2df718739 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.526 +MARKETING_VERSION = 0.0.527 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bcdf8d8975e2f66d018d86fbf336c35ca709b020 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Apr 2023 00:48:34 +0000 Subject: [PATCH 0582/1275] Auto-release 0.0.528 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f1b2df718739..12109dc7cd14 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.527 +MARKETING_VERSION = 0.0.528 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 313caddd95120c781bde0461409d63b9202e9ec7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Apr 2023 06:11:57 +0000 Subject: [PATCH 0583/1275] Auto-release 0.0.529 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 12109dc7cd14..9ce1ac71d4fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.528 +MARKETING_VERSION = 0.0.529 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b5e2332824cffd339beb38933a86fff183210acd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Apr 2023 12:15:36 +0000 Subject: [PATCH 0584/1275] Auto-release 0.0.530 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9ce1ac71d4fc..c98d1ddef6a2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.529 +MARKETING_VERSION = 0.0.530 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7096b7a4900347aba8502d8585e83552830bfae1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Apr 2023 18:10:21 +0000 Subject: [PATCH 0585/1275] Auto-release 0.0.531 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c98d1ddef6a2..54b345c4740a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.530 +MARKETING_VERSION = 0.0.531 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d6648b8168dede75ca1f5cebbf6c1c9528fb2fc0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Apr 2023 00:44:04 +0000 Subject: [PATCH 0586/1275] Auto-release 0.0.532 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 54b345c4740a..eb08023b96d5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.531 +MARKETING_VERSION = 0.0.532 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e74bb58d03e9f4026e5ad1d18c677f994d8a2a76 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Apr 2023 06:13:06 +0000 Subject: [PATCH 0587/1275] Auto-release 0.0.533 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eb08023b96d5..9d4e1f5d28f5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.532 +MARKETING_VERSION = 0.0.533 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 90f446ffeba1f23615777c0f7150c137b7050270 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Apr 2023 12:16:24 +0000 Subject: [PATCH 0588/1275] Auto-release 0.0.534 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9d4e1f5d28f5..5426f14343d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.533 +MARKETING_VERSION = 0.0.534 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b25338ec9a7c554f167d2d4a31e0275e3fa437b4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Apr 2023 18:11:47 +0000 Subject: [PATCH 0589/1275] Auto-release 0.0.535 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5426f14343d2..4ab0513840f2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.534 +MARKETING_VERSION = 0.0.535 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b7f8b9f6a4bc2dd43dafdc4af0619dbe5de4a8ef Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Apr 2023 00:44:04 +0000 Subject: [PATCH 0590/1275] Auto-release 0.0.536 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4ab0513840f2..6a29340a0d3a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.535 +MARKETING_VERSION = 0.0.536 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e369301e23affdd70893b6336d525ae8bf1673d8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Apr 2023 06:12:35 +0000 Subject: [PATCH 0591/1275] Auto-release 0.0.537 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6a29340a0d3a..6dc82e4451b6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.536 +MARKETING_VERSION = 0.0.537 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 50db0008064204b41438b39a7173caa7455287f6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Apr 2023 12:16:34 +0000 Subject: [PATCH 0592/1275] Auto-release 0.0.538 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6dc82e4451b6..604b1272b173 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.537 +MARKETING_VERSION = 0.0.538 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fdd5b356925caf90b389d4a80429e6251de45c39 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Apr 2023 18:11:07 +0000 Subject: [PATCH 0593/1275] Auto-release 0.0.539 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 604b1272b173..2028607c5e7f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.538 +MARKETING_VERSION = 0.0.539 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 491e74f0d40429ee56b0e5b9d724b6e7a4d44220 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Apr 2023 00:42:56 +0000 Subject: [PATCH 0594/1275] Auto-release 0.0.540 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2028607c5e7f..b3d99af3c3f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.539 +MARKETING_VERSION = 0.0.540 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e62860f5fe6b8872a91502fb3729b08e40e79ec4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Apr 2023 06:12:40 +0000 Subject: [PATCH 0595/1275] Auto-release 0.0.541 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b3d99af3c3f7..3dfa1fe5452b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.540 +MARKETING_VERSION = 0.0.541 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4655a3d5fd9bd0919455d13eb069ce836b4fa289 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Apr 2023 12:16:31 +0000 Subject: [PATCH 0596/1275] Auto-release 0.0.542 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3dfa1fe5452b..34e886187d43 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.541 +MARKETING_VERSION = 0.0.542 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c47beaeab6e29225c16660b8486a8ae1e41ff727 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Apr 2023 18:12:11 +0000 Subject: [PATCH 0597/1275] Auto-release 0.0.543 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34e886187d43..8db899d9b1cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.542 +MARKETING_VERSION = 0.0.543 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 011e3cddad77fe01831bffb9f5fb865efd268a4d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Apr 2023 00:45:55 +0000 Subject: [PATCH 0598/1275] Auto-release 0.0.544 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8db899d9b1cb..00ecfaaf19d6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.543 +MARKETING_VERSION = 0.0.544 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c8ad736aa70f8d95242d95dd748b6c945c7a1895 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Apr 2023 06:12:10 +0000 Subject: [PATCH 0599/1275] Auto-release 0.0.545 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 00ecfaaf19d6..f9131231b5ba 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.544 +MARKETING_VERSION = 0.0.545 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 92b131590c1ba39c5dcbd490434f10b8b4e12bed Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Apr 2023 12:15:50 +0000 Subject: [PATCH 0600/1275] Auto-release 0.0.546 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f9131231b5ba..3da3bd1c0a16 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.545 +MARKETING_VERSION = 0.0.546 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 950dd15f00c45620a1edeef0323491cf7793c6d5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Apr 2023 18:10:59 +0000 Subject: [PATCH 0601/1275] Auto-release 0.0.547 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3da3bd1c0a16..eee177ddcad6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.546 +MARKETING_VERSION = 0.0.547 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6fbb1ac847c79cbe3510b1429cf77f51273a2b1a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Apr 2023 00:44:44 +0000 Subject: [PATCH 0602/1275] Auto-release 0.0.548 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eee177ddcad6..770467004d0e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.547 +MARKETING_VERSION = 0.0.548 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ce9b8fef5855828ee7aa967a497fb09a8c962ba6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Apr 2023 06:12:25 +0000 Subject: [PATCH 0603/1275] Auto-release 0.0.549 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 770467004d0e..e7fe761af95c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.548 +MARKETING_VERSION = 0.0.549 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ec78170d5cc7c5b200b459dcb039e962fa49c8cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Apr 2023 12:16:03 +0000 Subject: [PATCH 0604/1275] Auto-release 0.0.550 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e7fe761af95c..4084af06582c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.549 +MARKETING_VERSION = 0.0.550 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6e2999c0441db6f812b47ca66d4b6bee37f6465e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Apr 2023 18:10:45 +0000 Subject: [PATCH 0605/1275] Auto-release 0.0.551 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4084af06582c..9d01006b966c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.550 +MARKETING_VERSION = 0.0.551 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7f5862a09129bb3f9da55de74f84e4b6eb03f812 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Apr 2023 00:42:35 +0000 Subject: [PATCH 0606/1275] Auto-release 0.0.552 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9d01006b966c..fe0eefd19018 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.551 +MARKETING_VERSION = 0.0.552 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2b299519ace09e1e1cb7e56f772403a1ffe8117e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Apr 2023 06:10:55 +0000 Subject: [PATCH 0607/1275] Auto-release 0.0.553 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fe0eefd19018..5c5be8866a22 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.552 +MARKETING_VERSION = 0.0.553 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1f36b6232ae1ec832470dd256bd8f9b4d91d6509 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Apr 2023 12:14:33 +0000 Subject: [PATCH 0608/1275] Auto-release 0.0.554 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5c5be8866a22..9e19c2369b6d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.553 +MARKETING_VERSION = 0.0.554 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 79d1c584b4cf5e031a6f45a8868ad18092c4df8d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Apr 2023 18:10:35 +0000 Subject: [PATCH 0609/1275] Auto-release 0.0.555 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e19c2369b6d..e7ee55887cff 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.554 +MARKETING_VERSION = 0.0.555 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7765d3c7b3a767c7b588a3d77628f7ab90b72203 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Apr 2023 00:47:49 +0000 Subject: [PATCH 0610/1275] Auto-release 0.0.556 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e7ee55887cff..e513d6583857 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.555 +MARKETING_VERSION = 0.0.556 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c038edfad84e05f962090c1e0249859a3f4d5413 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Apr 2023 06:11:24 +0000 Subject: [PATCH 0611/1275] Auto-release 0.0.557 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e513d6583857..1cc2f669eb8c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.556 +MARKETING_VERSION = 0.0.557 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 520ff2df04882b3a15bfcf85cbd0cfdacb112550 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Apr 2023 12:15:08 +0000 Subject: [PATCH 0612/1275] Auto-release 0.0.558 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1cc2f669eb8c..598833223da1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.557 +MARKETING_VERSION = 0.0.558 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 67e9aff2c706a645916e4624be5602085101f0d8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Apr 2023 18:10:12 +0000 Subject: [PATCH 0613/1275] Auto-release 0.0.559 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 598833223da1..c60062a96ffe 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.558 +MARKETING_VERSION = 0.0.559 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5b35fcf6417cdd27815baa8a6500851688e5d3b0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 May 2023 00:45:48 +0000 Subject: [PATCH 0614/1275] Auto-release 0.0.560 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c60062a96ffe..e8a0ed26604d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.559 +MARKETING_VERSION = 0.0.560 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b6e5949d27d0929647301f1090f88c17ee2f49b9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 May 2023 06:12:40 +0000 Subject: [PATCH 0615/1275] Auto-release 0.0.561 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e8a0ed26604d..fe36c244e33e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.560 +MARKETING_VERSION = 0.0.561 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 062b33d23c1e7d412faa9ac16da547ed434e6f31 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 May 2023 12:15:55 +0000 Subject: [PATCH 0616/1275] Auto-release 0.0.562 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fe36c244e33e..be9ce05d993b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.561 +MARKETING_VERSION = 0.0.562 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0bfdab56fc23c44e7667b89ad1a5013419cf9cf4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 May 2023 18:11:07 +0000 Subject: [PATCH 0617/1275] Auto-release 0.0.563 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index be9ce05d993b..07c26daa028c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.562 +MARKETING_VERSION = 0.0.563 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 09abcfcbcf5216427b6d4434e7f00ab7b5227f47 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 May 2023 00:43:57 +0000 Subject: [PATCH 0618/1275] Auto-release 0.0.564 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 07c26daa028c..4874ceb14eb1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.563 +MARKETING_VERSION = 0.0.564 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6c92674a3295780de690bbbd7364be7f259ec97d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 May 2023 06:12:18 +0000 Subject: [PATCH 0619/1275] Auto-release 0.0.565 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4874ceb14eb1..0afcfb34f77b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.564 +MARKETING_VERSION = 0.0.565 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a401461818f9252787c9ba52b3c70fce8889d52b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 May 2023 12:17:09 +0000 Subject: [PATCH 0620/1275] Auto-release 0.0.566 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0afcfb34f77b..82216abf1941 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.565 +MARKETING_VERSION = 0.0.566 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ec26d7e9fbfa7fe2e4919c9c9058c0a30fa4a867 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 May 2023 18:10:57 +0000 Subject: [PATCH 0621/1275] Auto-release 0.0.567 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 82216abf1941..d72bffefb0d8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.566 +MARKETING_VERSION = 0.0.567 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1cbb51cd63de54f252afd794f19e7f3ab4939b71 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 May 2023 00:43:36 +0000 Subject: [PATCH 0622/1275] Auto-release 0.0.568 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d72bffefb0d8..6e6de028c47a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.567 +MARKETING_VERSION = 0.0.568 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8cbf669c221b0abae83619c4f643fbcac29d5242 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 May 2023 06:12:04 +0000 Subject: [PATCH 0623/1275] Auto-release 0.0.569 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6e6de028c47a..8f0e507c0b8b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.568 +MARKETING_VERSION = 0.0.569 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2f3df056865b3d5855ba0989a3116fa10939230c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 May 2023 12:17:10 +0000 Subject: [PATCH 0624/1275] Auto-release 0.0.570 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8f0e507c0b8b..1cfb82d2116e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.569 +MARKETING_VERSION = 0.0.570 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 90a81288c1f5c1f2cbda10dae252dd61a15fd77a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 May 2023 18:10:47 +0000 Subject: [PATCH 0625/1275] Auto-release 0.0.571 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1cfb82d2116e..a3d5c28453ef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.570 +MARKETING_VERSION = 0.0.571 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5ec0417c036de1ee24effefa980b02dbd0fd2774 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 May 2023 00:43:20 +0000 Subject: [PATCH 0626/1275] Auto-release 0.0.572 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a3d5c28453ef..a581ee117d77 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.571 +MARKETING_VERSION = 0.0.572 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a30cf6c20a0760e01cc87395edc55cda7bfb9346 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 May 2023 06:11:29 +0000 Subject: [PATCH 0627/1275] Auto-release 0.0.573 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a581ee117d77..07f20cbe7b02 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.572 +MARKETING_VERSION = 0.0.573 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5343c5a8ff089bda8b04d27af1d9a9d89be1086b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 May 2023 12:16:16 +0000 Subject: [PATCH 0628/1275] Auto-release 0.0.574 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 07f20cbe7b02..0c66f67117f6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.573 +MARKETING_VERSION = 0.0.574 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b146e27ea3d55c0250c4bae7ba89b25e4c85dbc3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 May 2023 18:11:01 +0000 Subject: [PATCH 0629/1275] Auto-release 0.0.575 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0c66f67117f6..12592c3cbe51 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.574 +MARKETING_VERSION = 0.0.575 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1a3f6948ab3b74f8a2e900a3b9a98fb595db40f0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 May 2023 00:41:12 +0000 Subject: [PATCH 0630/1275] Auto-release 0.0.576 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 12592c3cbe51..3813034ffe0e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.575 +MARKETING_VERSION = 0.0.576 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From db3bf71539f8c56d26f8846ce9e6313e434374d7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 May 2023 06:12:05 +0000 Subject: [PATCH 0631/1275] Auto-release 0.0.577 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3813034ffe0e..2d95beb99704 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.576 +MARKETING_VERSION = 0.0.577 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4474d2ac10127dd91b9601474fd7b14aacdfad6e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 May 2023 12:15:32 +0000 Subject: [PATCH 0632/1275] Auto-release 0.0.578 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d95beb99704..c4ecd6da7022 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.577 +MARKETING_VERSION = 0.0.578 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8d956d1803d24f46ba52114a2353c3083cad7fc8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 May 2023 18:11:04 +0000 Subject: [PATCH 0633/1275] Auto-release 0.0.579 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c4ecd6da7022..745c21876c5c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.578 +MARKETING_VERSION = 0.0.579 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 69c15ed7a631ea534ae61397ce81dc22b0de8530 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 May 2023 00:40:34 +0000 Subject: [PATCH 0634/1275] Auto-release 0.0.580 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 745c21876c5c..feb2213dd471 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.579 +MARKETING_VERSION = 0.0.580 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3fff81d78bc15c6f7e4c9a3bab4869faf32cdf67 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 May 2023 06:10:54 +0000 Subject: [PATCH 0635/1275] Auto-release 0.0.581 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index feb2213dd471..90a3554a31ba 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.580 +MARKETING_VERSION = 0.0.581 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ef39cdd059982d0c52454a561e021e8c97c60f04 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 May 2023 12:15:09 +0000 Subject: [PATCH 0636/1275] Auto-release 0.0.582 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 90a3554a31ba..1d821f549f58 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.581 +MARKETING_VERSION = 0.0.582 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8158290efcd289adc9dd8b84c6d640914603d579 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 May 2023 18:10:32 +0000 Subject: [PATCH 0637/1275] Auto-release 0.0.583 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1d821f549f58..79e2b522a27a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.582 +MARKETING_VERSION = 0.0.583 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2da09fc723c52168cc023df0b5d625e7f4ea6e57 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 May 2023 00:45:37 +0000 Subject: [PATCH 0638/1275] Auto-release 0.0.584 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 79e2b522a27a..60e1b80edbcb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.583 +MARKETING_VERSION = 0.0.584 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 77690543f69dae08a398e138771cfedfb19bb03d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 May 2023 06:11:25 +0000 Subject: [PATCH 0639/1275] Auto-release 0.0.585 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 60e1b80edbcb..5b97bf68e6c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.584 +MARKETING_VERSION = 0.0.585 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cfec561e43fbfe31f022efa7603a91b8afd8e1be Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 May 2023 12:15:07 +0000 Subject: [PATCH 0640/1275] Auto-release 0.0.586 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5b97bf68e6c8..4cc7669ddd4f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.585 +MARKETING_VERSION = 0.0.586 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5af6c5bb162d58af948c63732651ef36288bfcb0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 May 2023 18:10:13 +0000 Subject: [PATCH 0641/1275] Auto-release 0.0.587 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4cc7669ddd4f..2f39cdbca1f5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.586 +MARKETING_VERSION = 0.0.587 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8bb77e9cfe04cc92b9ff064fef27201514084382 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 May 2023 00:42:19 +0000 Subject: [PATCH 0642/1275] Auto-release 0.0.588 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f39cdbca1f5..31e3fb55da54 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.587 +MARKETING_VERSION = 0.0.588 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e57ff7abff8ffd6983a2ca2598503108501d6e58 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 May 2023 06:13:20 +0000 Subject: [PATCH 0643/1275] Auto-release 0.0.589 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 31e3fb55da54..db506d6b3679 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.588 +MARKETING_VERSION = 0.0.589 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b780c4cb7327560b198b20acde4931e86115690b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 May 2023 12:16:59 +0000 Subject: [PATCH 0644/1275] Auto-release 0.0.590 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index db506d6b3679..bae43c553225 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.589 +MARKETING_VERSION = 0.0.590 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a5d43d7dc1d9dd7fb32d5fa556483df1f23a045d Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 May 2023 18:11:24 +0000 Subject: [PATCH 0645/1275] Auto-release 0.0.591 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bae43c553225..47dbf93b4e11 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.590 +MARKETING_VERSION = 0.0.591 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2f2574c2f6e04f22c22dd8c1e5bffeb1dc0b2399 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 May 2023 00:44:25 +0000 Subject: [PATCH 0646/1275] Auto-release 0.0.592 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 47dbf93b4e11..76177ceee98f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.591 +MARKETING_VERSION = 0.0.592 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2d86e8789e98b609aef926f659cb0f329918ad8b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 May 2023 06:11:34 +0000 Subject: [PATCH 0647/1275] Auto-release 0.0.593 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 76177ceee98f..efe2a28d1258 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.592 +MARKETING_VERSION = 0.0.593 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e89ec332a0609adcb90ca16f9e614ebd36898714 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 May 2023 12:55:08 +0000 Subject: [PATCH 0648/1275] Auto-release 0.0.594 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index efe2a28d1258..ac51afebee18 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.593 +MARKETING_VERSION = 0.0.594 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 865f9eb35d2e87158e20ca79fe11c4107e10b41f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 May 2023 18:11:25 +0000 Subject: [PATCH 0649/1275] Auto-release 0.0.595 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ac51afebee18..df9708567834 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.594 +MARKETING_VERSION = 0.0.595 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e7dbdcb7ffd53c9f9c01a4c815d820dffcc483d8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 May 2023 00:44:14 +0000 Subject: [PATCH 0650/1275] Auto-release 0.0.596 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df9708567834..1aea678bbf0f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.595 +MARKETING_VERSION = 0.0.596 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6db1c3902a08de50d460bcc432553fd83dcd398e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 May 2023 06:11:55 +0000 Subject: [PATCH 0651/1275] Auto-release 0.0.597 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1aea678bbf0f..c5b656ff6edd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.596 +MARKETING_VERSION = 0.0.597 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 378e01f1b7d79caddb0af723ec4bc1ca6baaf59d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 May 2023 12:16:17 +0000 Subject: [PATCH 0652/1275] Auto-release 0.0.598 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c5b656ff6edd..74be17b37a74 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.597 +MARKETING_VERSION = 0.0.598 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7448881d9a9497df0d3f0163fe1a029f65622269 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 May 2023 00:42:59 +0000 Subject: [PATCH 0653/1275] Auto-release 0.0.599 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 74be17b37a74..4292669aa874 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.598 +MARKETING_VERSION = 0.0.599 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 006947b143c9878c0a0f86b7f16cd6045259698f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 May 2023 06:12:40 +0000 Subject: [PATCH 0654/1275] Auto-release 0.0.600 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4292669aa874..fc46791aaa2b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.599 +MARKETING_VERSION = 0.0.600 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From dff3d90c885eb34d39d78ddd33cb362bb6ac2240 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 May 2023 12:16:59 +0000 Subject: [PATCH 0655/1275] Auto-release 0.0.601 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fc46791aaa2b..c7cae42fa50e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.600 +MARKETING_VERSION = 0.0.601 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 47f8ee1b909660ef221b5c52efc32e7eb72edfa1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 May 2023 18:11:27 +0000 Subject: [PATCH 0656/1275] Auto-release 0.0.602 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c7cae42fa50e..3890d8edc7a5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.601 +MARKETING_VERSION = 0.0.602 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7ef2e70acaa6f56f61b20af43b12a4f1eed75128 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 May 2023 00:43:40 +0000 Subject: [PATCH 0657/1275] Auto-release 0.0.603 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3890d8edc7a5..80067085af3f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.602 +MARKETING_VERSION = 0.0.603 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 74e41c3b988c8f6f7154b80d3657c82280517cb6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 May 2023 06:11:34 +0000 Subject: [PATCH 0658/1275] Auto-release 0.0.604 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 80067085af3f..4e5a2786fa77 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.603 +MARKETING_VERSION = 0.0.604 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7687b84a455f032ba537681a6d693276dc2eefd5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 May 2023 12:15:44 +0000 Subject: [PATCH 0659/1275] Auto-release 0.0.605 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4e5a2786fa77..8ea6d6468eef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.604 +MARKETING_VERSION = 0.0.605 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a80bb7252c80a329811c23d9b49fbdbe910424a2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 May 2023 18:11:01 +0000 Subject: [PATCH 0660/1275] Auto-release 0.0.606 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8ea6d6468eef..5bd542e64ed7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.605 +MARKETING_VERSION = 0.0.606 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7149003430b3559a1ff0ee43523b7622788be887 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 May 2023 00:41:30 +0000 Subject: [PATCH 0661/1275] Auto-release 0.0.607 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5bd542e64ed7..92fa929efa34 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.606 +MARKETING_VERSION = 0.0.607 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 83b47873685ddadecaf87cddc71e6f5d94cb6621 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 May 2023 06:11:04 +0000 Subject: [PATCH 0662/1275] Auto-release 0.0.608 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 92fa929efa34..4a2dca552696 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.607 +MARKETING_VERSION = 0.0.608 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cc3eb53f3d58affdea622d3387bb0df9161c5eff Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 May 2023 12:14:33 +0000 Subject: [PATCH 0663/1275] Auto-release 0.0.609 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a2dca552696..0e6da1628683 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.608 +MARKETING_VERSION = 0.0.609 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5b1078653ad8c51faddca21af27993b0a3386dc1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 May 2023 18:10:54 +0000 Subject: [PATCH 0664/1275] Auto-release 0.0.610 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0e6da1628683..affb5da1e1bb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.609 +MARKETING_VERSION = 0.0.610 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b4a2eb3cc83235d49d74d2ab992c102a75706760 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 May 2023 00:46:24 +0000 Subject: [PATCH 0665/1275] Auto-release 0.0.611 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index affb5da1e1bb..74bd218337cd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.610 +MARKETING_VERSION = 0.0.611 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bfc495f221733c887a1d288a78ee38a9fe687ed8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 May 2023 06:11:10 +0000 Subject: [PATCH 0666/1275] Auto-release 0.0.612 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 74bd218337cd..429021b73c0d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.611 +MARKETING_VERSION = 0.0.612 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 34a743b54248a6a4865223fd4766d46eed207732 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 May 2023 12:15:11 +0000 Subject: [PATCH 0667/1275] Auto-release 0.0.613 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 429021b73c0d..f93c8257aa10 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.612 +MARKETING_VERSION = 0.0.613 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 696bd0b32757e43f7a59bcbb22122f9ef98f4be8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 May 2023 18:10:17 +0000 Subject: [PATCH 0668/1275] Auto-release 0.0.614 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f93c8257aa10..0767777ac6f3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.613 +MARKETING_VERSION = 0.0.614 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e4d4c82e1d4cb8829f330c8c6b0e8e691b5f597f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 May 2023 00:44:33 +0000 Subject: [PATCH 0669/1275] Auto-release 0.0.615 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0767777ac6f3..f45d8c03fe33 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.614 +MARKETING_VERSION = 0.0.615 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 490bd9dca5a2ceb4a860c48b885dda99be828cfb Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 May 2023 06:12:50 +0000 Subject: [PATCH 0670/1275] Auto-release 0.0.616 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f45d8c03fe33..d942f90c4989 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.615 +MARKETING_VERSION = 0.0.616 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 69d869f400b00671526e721206bc54c51c338ab2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 May 2023 12:16:52 +0000 Subject: [PATCH 0671/1275] Auto-release 0.0.617 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d942f90c4989..b323f3fd329f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.616 +MARKETING_VERSION = 0.0.617 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b8cbfc3cfdffbfdac2e7589bacfdd1eee663dde3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 May 2023 18:11:05 +0000 Subject: [PATCH 0672/1275] Auto-release 0.0.618 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b323f3fd329f..75134ad768f6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.617 +MARKETING_VERSION = 0.0.618 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 499a87618d573ba3d6bf6f63c1e31ccd0d07396c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 May 2023 00:44:13 +0000 Subject: [PATCH 0673/1275] Auto-release 0.0.619 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 75134ad768f6..5c1f4d53deb5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.618 +MARKETING_VERSION = 0.0.619 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f5eea609edbc67e7ab2bdb1b4492ff3e90dbe9d7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 May 2023 06:12:11 +0000 Subject: [PATCH 0674/1275] Auto-release 0.0.620 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5c1f4d53deb5..59c793fc7557 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.619 +MARKETING_VERSION = 0.0.620 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ba3829e4f490a830d13e0bda9cdc018eb9ff976c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 May 2023 12:17:19 +0000 Subject: [PATCH 0675/1275] Auto-release 0.0.621 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 59c793fc7557..aff15d4f24cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.620 +MARKETING_VERSION = 0.0.621 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 800af58f313832c69003768074239ba8ed73891f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 May 2023 18:11:21 +0000 Subject: [PATCH 0676/1275] Auto-release 0.0.622 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aff15d4f24cb..e300800cfdba 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.621 +MARKETING_VERSION = 0.0.622 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 87341f32695cd62e742f5cc3cb68911962dc8e57 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 May 2023 00:46:25 +0000 Subject: [PATCH 0677/1275] Auto-release 0.0.623 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e300800cfdba..c04c74e7e69e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.622 +MARKETING_VERSION = 0.0.623 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6e3425fe67b6690ec13c98dd3a20af74440d02e9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 May 2023 06:11:30 +0000 Subject: [PATCH 0678/1275] Auto-release 0.0.624 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c04c74e7e69e..909ab5d0d965 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.623 +MARKETING_VERSION = 0.0.624 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From acb807d351a9d8b223d612ae7b94eab67f7f1f20 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 May 2023 12:16:03 +0000 Subject: [PATCH 0679/1275] Auto-release 0.0.625 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 909ab5d0d965..62dd88ddce72 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.624 +MARKETING_VERSION = 0.0.625 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 61a63f2d194fe3ed469925ac3bd7df9d16fc1192 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 May 2023 18:11:08 +0000 Subject: [PATCH 0680/1275] Auto-release 0.0.626 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 62dd88ddce72..7a371347747c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.625 +MARKETING_VERSION = 0.0.626 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3f57250a29375d1460eb98cee225087695b9ac35 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 May 2023 00:43:17 +0000 Subject: [PATCH 0681/1275] Auto-release 0.0.627 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7a371347747c..3d6183c41f41 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.626 +MARKETING_VERSION = 0.0.627 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9a8c7f00a6794c6229b41b91066909c2e16acbdf Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 May 2023 06:12:37 +0000 Subject: [PATCH 0682/1275] Auto-release 0.0.628 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3d6183c41f41..9e5d02ea96a6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.627 +MARKETING_VERSION = 0.0.628 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 881f6559d6531343e06581e7d305de9e25e7e164 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 May 2023 12:16:14 +0000 Subject: [PATCH 0683/1275] Auto-release 0.0.629 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e5d02ea96a6..f29046da9ccf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.628 +MARKETING_VERSION = 0.0.629 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 387dd966df18ae424fce399d41304afccb6adf43 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 May 2023 18:10:54 +0000 Subject: [PATCH 0684/1275] Auto-release 0.0.630 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f29046da9ccf..64c60254b690 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.629 +MARKETING_VERSION = 0.0.630 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3327057547cefd674dd6c1ff0d889d8f0ca433df Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 May 2023 00:44:25 +0000 Subject: [PATCH 0685/1275] Auto-release 0.0.631 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 64c60254b690..e944f661571d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.630 +MARKETING_VERSION = 0.0.631 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cced22fd31eb8466b5a89763110c65f577bb755c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 May 2023 06:11:58 +0000 Subject: [PATCH 0686/1275] Auto-release 0.0.632 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e944f661571d..4316bc4224dc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.631 +MARKETING_VERSION = 0.0.632 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 85e25360bc9ea0b352266cea421c7f3112b4819c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 May 2023 12:15:47 +0000 Subject: [PATCH 0687/1275] Auto-release 0.0.633 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4316bc4224dc..d6c495f4aeaa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.632 +MARKETING_VERSION = 0.0.633 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 25987cc72333b2a711c7c90b236813721e9eb0ce Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 May 2023 18:10:54 +0000 Subject: [PATCH 0688/1275] Auto-release 0.0.634 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d6c495f4aeaa..c1c4d86fdb05 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.633 +MARKETING_VERSION = 0.0.634 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 65f0a83e40c48092dc7530324b8b68670b1953e0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 May 2023 00:42:10 +0000 Subject: [PATCH 0689/1275] Auto-release 0.0.635 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c1c4d86fdb05..9e0daec4b257 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.634 +MARKETING_VERSION = 0.0.635 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3fc97e68fa6d7c6666b1d0097e0b0800ec1edeb1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 May 2023 06:11:12 +0000 Subject: [PATCH 0690/1275] Auto-release 0.0.636 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e0daec4b257..9b9c85b1116d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.635 +MARKETING_VERSION = 0.0.636 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 04f1d9d1de25d5c60bd3c78a312a6301725c512a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 May 2023 12:14:26 +0000 Subject: [PATCH 0691/1275] Auto-release 0.0.637 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9b9c85b1116d..71d0ead85191 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.636 +MARKETING_VERSION = 0.0.637 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From dd6f543ee3f0f558d2b599d9356dab1347564d2c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 May 2023 18:09:58 +0000 Subject: [PATCH 0692/1275] Auto-release 0.0.638 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 71d0ead85191..5db258806a00 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.637 +MARKETING_VERSION = 0.0.638 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 35d8c408e6ea98248fdd6c02684f05369845b6b6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 May 2023 00:50:08 +0000 Subject: [PATCH 0693/1275] Auto-release 0.0.639 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5db258806a00..970601467e4b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.638 +MARKETING_VERSION = 0.0.639 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e349461561c4dcf7fdc13a2e5c40f2ea86475be2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 May 2023 06:11:15 +0000 Subject: [PATCH 0694/1275] Auto-release 0.0.640 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 970601467e4b..a10c3386bc5e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.639 +MARKETING_VERSION = 0.0.640 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f1822b0b46c5bd37609ea9b8eabb44bbb48fa972 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 May 2023 12:14:56 +0000 Subject: [PATCH 0695/1275] Auto-release 0.0.641 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a10c3386bc5e..fc44c3122e8d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.640 +MARKETING_VERSION = 0.0.641 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cef6af4e868fb5ed04f579410141070c399079c9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 May 2023 18:10:37 +0000 Subject: [PATCH 0696/1275] Auto-release 0.0.642 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fc44c3122e8d..1fcd7e2ca9c1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.641 +MARKETING_VERSION = 0.0.642 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bb4db0e54579d42bbd5323cca77e699d94b7b54d Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 May 2023 00:46:18 +0000 Subject: [PATCH 0697/1275] Auto-release 0.0.643 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1fcd7e2ca9c1..2cd8e2f700ee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.642 +MARKETING_VERSION = 0.0.643 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 92513cd5aea28c430cfd129f9c6dc4cf79cb99f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 May 2023 06:12:43 +0000 Subject: [PATCH 0698/1275] Auto-release 0.0.644 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2cd8e2f700ee..1c8ec208a2eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.643 +MARKETING_VERSION = 0.0.644 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bb231f709dee616ed088504680ce11f4bc084343 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 May 2023 12:16:22 +0000 Subject: [PATCH 0699/1275] Auto-release 0.0.645 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1c8ec208a2eb..70271f04d40f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.644 +MARKETING_VERSION = 0.0.645 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b0f8c33ef6e4a0abbb4c2cfe57d013eab9373c35 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 May 2023 18:10:44 +0000 Subject: [PATCH 0700/1275] Auto-release 0.0.646 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 70271f04d40f..b6b424d0bc05 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.645 +MARKETING_VERSION = 0.0.646 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e79bdb16591650eaf0f70184a7009add4d921b95 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 May 2023 00:45:00 +0000 Subject: [PATCH 0701/1275] Auto-release 0.0.647 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6b424d0bc05..f996a3890e71 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.646 +MARKETING_VERSION = 0.0.647 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0a9658762486fc4583c80fdddf7698d23912c278 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 May 2023 06:12:07 +0000 Subject: [PATCH 0702/1275] Auto-release 0.0.648 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f996a3890e71..40124b489428 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.647 +MARKETING_VERSION = 0.0.648 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cde1d289164e615afb71a839f219349d394858f5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 May 2023 12:16:18 +0000 Subject: [PATCH 0703/1275] Auto-release 0.0.649 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 40124b489428..cecbf7cb94c1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.648 +MARKETING_VERSION = 0.0.649 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e46c3fe4a15ebe7487980f75e4915a57ef163f62 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 May 2023 18:11:08 +0000 Subject: [PATCH 0704/1275] Auto-release 0.0.650 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cecbf7cb94c1..53a50287d3f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.649 +MARKETING_VERSION = 0.0.650 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5683eed635a1d97287bfc59d2e6f5647dedd978b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 May 2023 00:45:09 +0000 Subject: [PATCH 0705/1275] Auto-release 0.0.651 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 53a50287d3f7..feec52614075 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.650 +MARKETING_VERSION = 0.0.651 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b7fa3684d9098d8ca7e2e264c09dc5f1809e9cbe Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 May 2023 06:11:57 +0000 Subject: [PATCH 0706/1275] Auto-release 0.0.652 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index feec52614075..ee4b41a61205 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.651 +MARKETING_VERSION = 0.0.652 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7b0fd33192a666b598ef732c7ead9df9a8cb4cf7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 May 2023 12:16:20 +0000 Subject: [PATCH 0707/1275] Auto-release 0.0.653 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ee4b41a61205..209206fac501 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.652 +MARKETING_VERSION = 0.0.653 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0be14a8e7caf627079606728455fdc303f82963f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 May 2023 18:10:46 +0000 Subject: [PATCH 0708/1275] Auto-release 0.0.654 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 209206fac501..cb24df841f30 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.653 +MARKETING_VERSION = 0.0.654 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 11e05b38491d832310765d895141a01896cbd56d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 May 2023 00:43:44 +0000 Subject: [PATCH 0709/1275] Auto-release 0.0.655 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cb24df841f30..e2fdd4cc3576 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.654 +MARKETING_VERSION = 0.0.655 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9220adc130a7ed69c5c1b5912a289b7d9af856a6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 May 2023 06:12:02 +0000 Subject: [PATCH 0710/1275] Auto-release 0.0.656 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e2fdd4cc3576..8818d01efc9c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.655 +MARKETING_VERSION = 0.0.656 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3bab6966c287949a35b7ebb107a452e9825423c4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 May 2023 12:16:37 +0000 Subject: [PATCH 0711/1275] Auto-release 0.0.657 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8818d01efc9c..e4529d56ee90 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.656 +MARKETING_VERSION = 0.0.657 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 770ddcf9a0be7f5a7ab85c0485d657736a0722cc Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 May 2023 18:10:45 +0000 Subject: [PATCH 0712/1275] Auto-release 0.0.658 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e4529d56ee90..bff335562319 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.657 +MARKETING_VERSION = 0.0.658 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 58c5c0550368ad7feaa5f92318b437f9bd4d0ed4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 May 2023 00:44:04 +0000 Subject: [PATCH 0713/1275] Auto-release 0.0.659 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bff335562319..baef314c95b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.658 +MARKETING_VERSION = 0.0.659 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 94f9a7ac72a47800292ec49bcd045dd725bbfbd1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 May 2023 06:11:43 +0000 Subject: [PATCH 0714/1275] Auto-release 0.0.660 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index baef314c95b0..4a305de9ef2f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.659 +MARKETING_VERSION = 0.0.660 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8f32844bc00bc3b7abe56efe6a4822e21153ba27 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 May 2023 12:15:25 +0000 Subject: [PATCH 0715/1275] Auto-release 0.0.661 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a305de9ef2f..c37c74954661 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.660 +MARKETING_VERSION = 0.0.661 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 764f6a1e1291787c99005481dff1743affb81075 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 May 2023 18:11:08 +0000 Subject: [PATCH 0716/1275] Auto-release 0.0.662 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c37c74954661..42e2c0a9a6ee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.661 +MARKETING_VERSION = 0.0.662 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9726facbe1bb597e90db274f443c72c1ea6bc226 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 May 2023 00:45:30 +0000 Subject: [PATCH 0717/1275] Auto-release 0.0.663 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 42e2c0a9a6ee..8f2ecad0c6fb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.662 +MARKETING_VERSION = 0.0.663 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7748faecf3c329ceae3a38e3bc10fd395ff57e04 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 May 2023 06:11:01 +0000 Subject: [PATCH 0718/1275] Auto-release 0.0.664 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8f2ecad0c6fb..f0b49588d11a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.663 +MARKETING_VERSION = 0.0.664 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cd87af453d541d87e18b66f6494d71db360c0009 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 May 2023 12:15:38 +0000 Subject: [PATCH 0719/1275] Auto-release 0.0.665 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f0b49588d11a..994bd52e9b68 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.664 +MARKETING_VERSION = 0.0.665 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 55fa03068a0c1ad1e2e9ddd413f65ae7da083824 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 May 2023 18:09:55 +0000 Subject: [PATCH 0720/1275] Auto-release 0.0.666 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 994bd52e9b68..028992888bcb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.665 +MARKETING_VERSION = 0.0.666 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0c7872ea34a6ad8bed2ab9203388004fe4e6373e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 May 2023 00:51:50 +0000 Subject: [PATCH 0721/1275] Auto-release 0.0.667 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 028992888bcb..dbe132b90122 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.666 +MARKETING_VERSION = 0.0.667 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ea5701820679a6ed4e50b220e1d548346f5de2c6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 May 2023 06:11:07 +0000 Subject: [PATCH 0722/1275] Auto-release 0.0.668 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dbe132b90122..ced7c900486d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.667 +MARKETING_VERSION = 0.0.668 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2fc113562d5e425dd51e9c43bcc32551e166131f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 May 2023 12:14:40 +0000 Subject: [PATCH 0723/1275] Auto-release 0.0.669 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ced7c900486d..e8cf7b3eecbd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.668 +MARKETING_VERSION = 0.0.669 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 44d10b730c327f71cb33f00d8ea9eebdebb62345 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 May 2023 18:10:09 +0000 Subject: [PATCH 0724/1275] Auto-release 0.0.670 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e8cf7b3eecbd..099632ecdf98 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.669 +MARKETING_VERSION = 0.0.670 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a56046ce56fec26f69754112b9a30e0e9fe9e8ba Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 May 2023 00:47:22 +0000 Subject: [PATCH 0725/1275] Auto-release 0.0.671 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 099632ecdf98..31eda1617c14 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.670 +MARKETING_VERSION = 0.0.671 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 86e3c25bc7938c8e1dc0b43e32870c1b475bfd17 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 May 2023 06:13:05 +0000 Subject: [PATCH 0726/1275] Auto-release 0.0.672 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 31eda1617c14..e40720d97d62 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.671 +MARKETING_VERSION = 0.0.672 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9134b85e917cd16249f1265eed8a2d3144dd93fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 May 2023 12:16:02 +0000 Subject: [PATCH 0727/1275] Auto-release 0.0.673 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e40720d97d62..3c8b29e9c085 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.672 +MARKETING_VERSION = 0.0.673 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1e4ffba79ac82178d784d03f1c7fa9a76a970767 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 May 2023 18:10:32 +0000 Subject: [PATCH 0728/1275] Auto-release 0.0.674 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3c8b29e9c085..505741f3a47a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.673 +MARKETING_VERSION = 0.0.674 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8c558a19e2194196d48200ef48342505eb835676 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 May 2023 00:45:57 +0000 Subject: [PATCH 0729/1275] Auto-release 0.0.675 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 505741f3a47a..afe11967ab4e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.674 +MARKETING_VERSION = 0.0.675 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ddbc68f0d42e26d753142f4b6ffc3e5b3956607b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 May 2023 06:11:59 +0000 Subject: [PATCH 0730/1275] Auto-release 0.0.676 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index afe11967ab4e..d078d080c44f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.675 +MARKETING_VERSION = 0.0.676 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 46bd970a776695a71dc61ac75336094822a40668 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 May 2023 12:16:45 +0000 Subject: [PATCH 0731/1275] Auto-release 0.0.677 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d078d080c44f..723a5187dcf7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.676 +MARKETING_VERSION = 0.0.677 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e912ccb1ed7e8cc1d42fe87817344612d5540619 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 May 2023 18:10:59 +0000 Subject: [PATCH 0732/1275] Auto-release 0.0.678 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 723a5187dcf7..0a1376d67986 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.677 +MARKETING_VERSION = 0.0.678 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c8277a1ecb497d3940ad2514a9bbb821f21dca5a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 May 2023 00:51:32 +0000 Subject: [PATCH 0733/1275] Auto-release 0.0.679 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0a1376d67986..b38e09010f33 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.678 +MARKETING_VERSION = 0.0.679 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fc15d5f0262a14b6f84c562077f7d881512b5ff1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 May 2023 06:12:00 +0000 Subject: [PATCH 0734/1275] Auto-release 0.0.680 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b38e09010f33..2497c8aeb8eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.679 +MARKETING_VERSION = 0.0.680 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3b7dac85b4a4bd508367fd1216808740aa6dd1f4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 May 2023 12:16:52 +0000 Subject: [PATCH 0735/1275] Auto-release 0.0.681 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2497c8aeb8eb..7888e1885977 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.680 +MARKETING_VERSION = 0.0.681 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 43104c3f49047e304f616c718f68efdae1ca8647 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 May 2023 18:11:29 +0000 Subject: [PATCH 0736/1275] Auto-release 0.0.682 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7888e1885977..2ed5641e3ee7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.681 +MARKETING_VERSION = 0.0.682 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ac31735e50759a7851cb2409f582d5454cb1e7f5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Jun 2023 01:00:40 +0000 Subject: [PATCH 0737/1275] Auto-release 0.0.683 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2ed5641e3ee7..ecfdb7bbd301 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.682 +MARKETING_VERSION = 0.0.683 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 014edfdd1cfc0748a3fc43ec00588176bc1d4704 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Jun 2023 06:12:18 +0000 Subject: [PATCH 0738/1275] Auto-release 0.0.684 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ecfdb7bbd301..b5d0ffaa1d09 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.683 +MARKETING_VERSION = 0.0.684 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c5fec7f1f8167dceedc1e19d638a2cc57d98941e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Jun 2023 12:17:24 +0000 Subject: [PATCH 0739/1275] Auto-release 0.0.685 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b5d0ffaa1d09..4c9128a0cad6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.684 +MARKETING_VERSION = 0.0.685 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1d7aab908ad382130f1c8ec6527e2ddb778cd103 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Jun 2023 18:11:08 +0000 Subject: [PATCH 0740/1275] Auto-release 0.0.686 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c9128a0cad6..8c5e06e77f39 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.685 +MARKETING_VERSION = 0.0.686 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f37be9bf847391b88d0210d33b6195390f6afb6c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Jun 2023 00:52:12 +0000 Subject: [PATCH 0741/1275] Auto-release 0.0.687 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8c5e06e77f39..f4afd4ab80b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.686 +MARKETING_VERSION = 0.0.687 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c0e469c8bced349ce662b806aa455cfdc38fb5e6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Jun 2023 06:12:25 +0000 Subject: [PATCH 0742/1275] Auto-release 0.0.688 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f4afd4ab80b9..2b9d70576b39 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.687 +MARKETING_VERSION = 0.0.688 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0f440d567473018ff2138920bac874fa89ec75a6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Jun 2023 12:16:51 +0000 Subject: [PATCH 0743/1275] Auto-release 0.0.689 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2b9d70576b39..04497dd30812 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.688 +MARKETING_VERSION = 0.0.689 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 17e7d00f7a05bf0e3a82eb19d71ce110af026fd5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Jun 2023 18:10:41 +0000 Subject: [PATCH 0744/1275] Auto-release 0.0.690 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 04497dd30812..4a994ac7e138 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.689 +MARKETING_VERSION = 0.0.690 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fd92f8a6d5aab29449984b8a84fa2889b0058487 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Jun 2023 00:49:29 +0000 Subject: [PATCH 0745/1275] Auto-release 0.0.691 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a994ac7e138..22a59817f6bb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.690 +MARKETING_VERSION = 0.0.691 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d9b5bb65f2b39f2ddd6d74dfb37812ce593030a5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Jun 2023 06:10:53 +0000 Subject: [PATCH 0746/1275] Auto-release 0.0.692 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 22a59817f6bb..d1f0687c2b64 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.691 +MARKETING_VERSION = 0.0.692 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ab1b7d956c50ee1601b5a76fe8706552c552a112 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Jun 2023 12:15:25 +0000 Subject: [PATCH 0747/1275] Auto-release 0.0.693 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d1f0687c2b64..157ee995cfb3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.692 +MARKETING_VERSION = 0.0.693 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e49361183fa5b4adce993e89ea2433c4b0e90da3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Jun 2023 18:10:47 +0000 Subject: [PATCH 0748/1275] Auto-release 0.0.694 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 157ee995cfb3..bd8a65615247 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.693 +MARKETING_VERSION = 0.0.694 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 121abaeb80bdc3a247ee7dea2cd0b9ad4819ed42 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Jun 2023 00:58:15 +0000 Subject: [PATCH 0749/1275] Auto-release 0.0.695 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bd8a65615247..6b439a243e0b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.694 +MARKETING_VERSION = 0.0.695 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bdd90e635c6ddfb703358fdaac45440062d3335f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Jun 2023 06:10:41 +0000 Subject: [PATCH 0750/1275] Auto-release 0.0.696 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6b439a243e0b..8f54d2794be1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.695 +MARKETING_VERSION = 0.0.696 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8a85ca233d7d41d0bc3eb68e9c2982a71322a0a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Jun 2023 12:15:24 +0000 Subject: [PATCH 0751/1275] Auto-release 0.0.697 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8f54d2794be1..295e38f99baa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.696 +MARKETING_VERSION = 0.0.697 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 583cf32228c8f20e3755c08ddecde4d1cc8d8522 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Jun 2023 18:10:39 +0000 Subject: [PATCH 0752/1275] Auto-release 0.0.698 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 295e38f99baa..e1676c7cb1c0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.697 +MARKETING_VERSION = 0.0.698 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 98eea558b14af2b156a005fb9f5ff016fec8ff9b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Jun 2023 00:52:05 +0000 Subject: [PATCH 0753/1275] Auto-release 0.0.699 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e1676c7cb1c0..95e6b707ceec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.698 +MARKETING_VERSION = 0.0.699 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1b8f378d1f1089447757838391360962bce842cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Jun 2023 06:12:26 +0000 Subject: [PATCH 0754/1275] Auto-release 0.0.700 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 95e6b707ceec..cd1817af33c2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.699 +MARKETING_VERSION = 0.0.700 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8ee300f87705583ec05a237103757896ecd502ab Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Jun 2023 12:18:04 +0000 Subject: [PATCH 0755/1275] Auto-release 0.0.701 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd1817af33c2..cd60e9f09cd7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.700 +MARKETING_VERSION = 0.0.701 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ed0e8ce7834beeb23261a778525fadd2ad62e1c6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Jun 2023 18:10:29 +0000 Subject: [PATCH 0756/1275] Auto-release 0.0.702 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd60e9f09cd7..ef7fe2eb74a3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.701 +MARKETING_VERSION = 0.0.702 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From da002299ff16e70323cbc4f4cf856c9d7348b629 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Jun 2023 00:52:08 +0000 Subject: [PATCH 0757/1275] Auto-release 0.0.703 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ef7fe2eb74a3..60cc8beb6e0e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.702 +MARKETING_VERSION = 0.0.703 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bc4a70e08935e2aa88d32ac3f36fe2231feec807 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Jun 2023 06:11:53 +0000 Subject: [PATCH 0758/1275] Auto-release 0.0.704 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 60cc8beb6e0e..d76f33ef6569 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.703 +MARKETING_VERSION = 0.0.704 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a60bb74f355aa3247b46e2018fe589e7ceaf43a2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Jun 2023 12:16:57 +0000 Subject: [PATCH 0759/1275] Auto-release 0.0.705 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d76f33ef6569..018d6e3b3678 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.704 +MARKETING_VERSION = 0.0.705 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b8cd9750e7d663e200ec3625ecd9359cc61f960e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Jun 2023 18:11:22 +0000 Subject: [PATCH 0760/1275] Auto-release 0.0.706 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 018d6e3b3678..d9c264d88c56 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.705 +MARKETING_VERSION = 0.0.706 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 99ae94436d4a7dbc80f8b21f7e4a22d96ea5e1e2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Jun 2023 00:53:47 +0000 Subject: [PATCH 0761/1275] Auto-release 0.0.707 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d9c264d88c56..d4ee0e798930 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.706 +MARKETING_VERSION = 0.0.707 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c8f8f4d883ddcbdcecb2e84353829024ff9c0bbd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Jun 2023 06:11:57 +0000 Subject: [PATCH 0762/1275] Auto-release 0.0.708 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d4ee0e798930..29547dec1759 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.707 +MARKETING_VERSION = 0.0.708 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cd36d297327feb46315e1c23003984270e6ee926 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Jun 2023 12:17:47 +0000 Subject: [PATCH 0763/1275] Auto-release 0.0.709 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 29547dec1759..205445fc8387 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.708 +MARKETING_VERSION = 0.0.709 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d80d2da2ee4f1671f1ee178d03d434c08e42033c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Jun 2023 18:11:40 +0000 Subject: [PATCH 0764/1275] Auto-release 0.0.710 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 205445fc8387..19a730c5e426 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.709 +MARKETING_VERSION = 0.0.710 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 36cc924a1a531b20f2d2dd51147aca2991151811 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Jun 2023 00:50:26 +0000 Subject: [PATCH 0765/1275] Auto-release 0.0.711 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 19a730c5e426..c8bc98656449 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.710 +MARKETING_VERSION = 0.0.711 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 01f161bd7f0f0df26ce35a1983782577696ee120 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Jun 2023 06:12:41 +0000 Subject: [PATCH 0766/1275] Auto-release 0.0.712 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c8bc98656449..acae0d8a6eb4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.711 +MARKETING_VERSION = 0.0.712 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 70c47700891c46e87d43b67a775a44cb6bc3704e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Jun 2023 12:16:12 +0000 Subject: [PATCH 0767/1275] Auto-release 0.0.713 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index acae0d8a6eb4..952a63916648 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.712 +MARKETING_VERSION = 0.0.713 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fe7884bacfcb77c40313470d1ff0265ecaec762c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Jun 2023 18:11:09 +0000 Subject: [PATCH 0768/1275] Auto-release 0.0.714 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 952a63916648..5771cf7bf5eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.713 +MARKETING_VERSION = 0.0.714 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From eeb300b372b04cc3975bc59fe1c6d36f5ff0b4ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Jun 2023 00:54:22 +0000 Subject: [PATCH 0769/1275] Auto-release 0.0.715 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5771cf7bf5eb..08b511d51223 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.714 +MARKETING_VERSION = 0.0.715 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b9e19e9dcecf4282ecb5ecb420fa67ddfed20358 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Jun 2023 06:12:34 +0000 Subject: [PATCH 0770/1275] Auto-release 0.0.716 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 08b511d51223..ce33333b3e97 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.715 +MARKETING_VERSION = 0.0.716 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3321c440f5dd6a2ddbdfaf5a9fb939b04cd386d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Jun 2023 12:16:23 +0000 Subject: [PATCH 0771/1275] Auto-release 0.0.717 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ce33333b3e97..c6db3b992959 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.716 +MARKETING_VERSION = 0.0.717 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1a397a95122bf997dd5405fccaea3b32b35aa42b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Jun 2023 18:11:23 +0000 Subject: [PATCH 0772/1275] Auto-release 0.0.718 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c6db3b992959..77b0b163ded4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.717 +MARKETING_VERSION = 0.0.718 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From f120ec9598efc72f22eda13de6c3e0ad69a2bf08 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Jun 2023 00:47:40 +0000 Subject: [PATCH 0773/1275] Auto-release 0.0.719 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 77b0b163ded4..5827e79a1f63 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.718 +MARKETING_VERSION = 0.0.719 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 22d0425d5e700f5f0d456975bec167e6026e4cb5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Jun 2023 06:11:22 +0000 Subject: [PATCH 0774/1275] Auto-release 0.0.720 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5827e79a1f63..4de285ed77e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.719 +MARKETING_VERSION = 0.0.720 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bc1d3478176dfb4a6df6a6f1bf85657642d229eb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Jun 2023 12:14:30 +0000 Subject: [PATCH 0775/1275] Auto-release 0.0.721 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4de285ed77e9..e118877c4c84 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.720 +MARKETING_VERSION = 0.0.721 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6d5bca7cbe1da780e538c29fd7e71d0c3d2754b3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Jun 2023 18:11:32 +0000 Subject: [PATCH 0776/1275] Auto-release 0.0.722 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e118877c4c84..f158e6adc843 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.721 +MARKETING_VERSION = 0.0.722 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cf52c751a8c9fd0b1749f2298f8cb6f95e4297de Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Jun 2023 00:55:43 +0000 Subject: [PATCH 0777/1275] Auto-release 0.0.723 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f158e6adc843..56463a684e82 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.722 +MARKETING_VERSION = 0.0.723 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cb1dbc0597b2644b574af9bd14a2a0b4dfea60f3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Jun 2023 06:11:12 +0000 Subject: [PATCH 0778/1275] Auto-release 0.0.724 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 56463a684e82..234c3fd84269 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.723 +MARKETING_VERSION = 0.0.724 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8eef67079ae9aad0ba6c203e2dec4cbd7f65dac3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Jun 2023 12:15:55 +0000 Subject: [PATCH 0779/1275] Auto-release 0.0.725 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 234c3fd84269..705b1c8b20de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.724 +MARKETING_VERSION = 0.0.725 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2c6d1e679a53af0b42e44d184cf939404965e179 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Jun 2023 18:10:31 +0000 Subject: [PATCH 0780/1275] Auto-release 0.0.726 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 705b1c8b20de..6ebcaad8412d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.725 +MARKETING_VERSION = 0.0.726 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From a9fabe7c88426c05914612376df84d16d30ec4c3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Jun 2023 00:53:31 +0000 Subject: [PATCH 0781/1275] Auto-release 0.0.727 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6ebcaad8412d..e0df0dcff880 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.726 +MARKETING_VERSION = 0.0.727 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5912e9ffa80bc7c51f57ef9631f4819361a7a2ee Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Jun 2023 06:12:29 +0000 Subject: [PATCH 0782/1275] Auto-release 0.0.728 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e0df0dcff880..bd851725525f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.727 +MARKETING_VERSION = 0.0.728 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9cf507aea7c8ed3b04ef1e659f4aa119ca892b0b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Jun 2023 12:16:36 +0000 Subject: [PATCH 0783/1275] Auto-release 0.0.729 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bd851725525f..231dd60d102b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.728 +MARKETING_VERSION = 0.0.729 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cd7fde264c23ce1496ed36199601c8ca1997c2bb Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Jun 2023 18:10:58 +0000 Subject: [PATCH 0784/1275] Auto-release 0.0.730 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 231dd60d102b..56ce6dd8262f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.729 +MARKETING_VERSION = 0.0.730 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 763dcec8004477f1fdd0c8b2f3edbdead7de3ccc Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Jun 2023 00:49:48 +0000 Subject: [PATCH 0785/1275] Auto-release 0.0.731 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 56ce6dd8262f..741c32475527 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.730 +MARKETING_VERSION = 0.0.731 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4e3774bdf090cee09c24e58215242450fe61ec1f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Jun 2023 06:12:03 +0000 Subject: [PATCH 0786/1275] Auto-release 0.0.732 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 741c32475527..1865af44b7f5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.731 +MARKETING_VERSION = 0.0.732 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From ffc41d268374191bc3675852841afe8625c57eb2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Jun 2023 12:17:16 +0000 Subject: [PATCH 0787/1275] Auto-release 0.0.733 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1865af44b7f5..2fbaa3082622 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.732 +MARKETING_VERSION = 0.0.733 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d96193cf0827dbe6e76d9467272ecdd937b58f4c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Jun 2023 18:11:10 +0000 Subject: [PATCH 0788/1275] Auto-release 0.0.734 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2fbaa3082622..76e89ce3f6cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.733 +MARKETING_VERSION = 0.0.734 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9b1c0f0bf01698bb6ec822f1a2fd9f9787d64d56 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Jun 2023 00:48:28 +0000 Subject: [PATCH 0789/1275] Auto-release 0.0.735 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 76e89ce3f6cb..8df16dafd4df 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.734 +MARKETING_VERSION = 0.0.735 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e373bfe133191fb6b234effbf4fe7143534f37ea Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Jun 2023 06:12:08 +0000 Subject: [PATCH 0790/1275] Auto-release 0.0.736 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8df16dafd4df..66d9f723e530 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.735 +MARKETING_VERSION = 0.0.736 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5384ec38bd7e5b954357b6e5eb5b3d6a31f338c3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Jun 2023 12:17:28 +0000 Subject: [PATCH 0791/1275] Auto-release 0.0.737 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 66d9f723e530..045382d1dc0f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.736 +MARKETING_VERSION = 0.0.737 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4ccb8f9f197995c387470d4acb4ad646242f7d22 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Jun 2023 18:10:57 +0000 Subject: [PATCH 0792/1275] Auto-release 0.0.738 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 045382d1dc0f..3f62b0aa7a63 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.737 +MARKETING_VERSION = 0.0.738 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 357f6f66084dc2957b2771d1d7e9362516f8499f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Jun 2023 00:50:43 +0000 Subject: [PATCH 0793/1275] Auto-release 0.0.739 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f62b0aa7a63..a0effb60c87e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.738 +MARKETING_VERSION = 0.0.739 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c2e1e79aa7b647cbdd131bd190471e9ae7d52baf Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Jun 2023 06:12:21 +0000 Subject: [PATCH 0794/1275] Auto-release 0.0.740 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a0effb60c87e..0316cd6decd6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.739 +MARKETING_VERSION = 0.0.740 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 32c83eeb3d3c109cfab88f38072a309404a28294 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Jun 2023 12:17:14 +0000 Subject: [PATCH 0795/1275] Auto-release 0.0.741 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0316cd6decd6..a0d6ae471322 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.740 +MARKETING_VERSION = 0.0.741 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b057480eb907cb1d83d8a85b15fbfce01b4f59ec Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Jun 2023 18:10:50 +0000 Subject: [PATCH 0796/1275] Auto-release 0.0.742 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a0d6ae471322..d1e97b141689 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.741 +MARKETING_VERSION = 0.0.742 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 25ba33f11ef2dc09d42f9ff10767345cec19d1a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Jun 2023 00:50:25 +0000 Subject: [PATCH 0797/1275] Auto-release 0.0.743 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d1e97b141689..06bb96c5172a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.742 +MARKETING_VERSION = 0.0.743 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e73b9722c8ecfea16b1cba3e2457ea1926cdf803 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Jun 2023 06:12:23 +0000 Subject: [PATCH 0798/1275] Auto-release 0.0.744 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 06bb96c5172a..2c9a3c36eb06 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.743 +MARKETING_VERSION = 0.0.744 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 571491a965c415e631c9af368a2e50f0086a6178 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Jun 2023 12:15:56 +0000 Subject: [PATCH 0799/1275] Auto-release 0.0.745 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2c9a3c36eb06..1f0a5e8438da 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.744 +MARKETING_VERSION = 0.0.745 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5e3ca5408f10395561eafd4a177f4697de0b9602 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Jun 2023 18:10:52 +0000 Subject: [PATCH 0800/1275] Auto-release 0.0.746 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1f0a5e8438da..c01f14cefa9b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.745 +MARKETING_VERSION = 0.0.746 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3c4b7f36c84d490b15642989faa2f4b21fbc0157 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Jun 2023 00:46:37 +0000 Subject: [PATCH 0801/1275] Auto-release 0.0.747 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c01f14cefa9b..62872c94d436 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.746 +MARKETING_VERSION = 0.0.747 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2838d66f2f3d0b0976913eaf0966e63b1e2234a2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Jun 2023 06:10:57 +0000 Subject: [PATCH 0802/1275] Auto-release 0.0.748 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 62872c94d436..fbe09862eb5a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.747 +MARKETING_VERSION = 0.0.748 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 81bf58ee90611c6360a9dd0653dba11ea45f6091 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Jun 2023 12:14:41 +0000 Subject: [PATCH 0803/1275] Auto-release 0.0.749 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fbe09862eb5a..db27e055748c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.748 +MARKETING_VERSION = 0.0.749 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From b9a356a54aeb8ab8f73a63f8e02207aa1f108a11 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Jun 2023 18:10:20 +0000 Subject: [PATCH 0804/1275] Auto-release 0.0.750 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index db27e055748c..9e951a876ba9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.749 +MARKETING_VERSION = 0.0.750 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From fd58e010f0d23ff023566a4b8f20a02b407abccc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Jun 2023 00:55:45 +0000 Subject: [PATCH 0805/1275] Auto-release 0.0.751 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e951a876ba9..676c0c1aa628 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.750 +MARKETING_VERSION = 0.0.751 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7c05efadd16cbd9f8189e0e4e1425bd5d381c6c6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Jun 2023 06:11:13 +0000 Subject: [PATCH 0806/1275] Auto-release 0.0.752 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 676c0c1aa628..45bab627063b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.751 +MARKETING_VERSION = 0.0.752 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 5e42f6b79d1e3e8b7914dfb39dbed200ab5e4f1a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Jun 2023 12:15:42 +0000 Subject: [PATCH 0807/1275] Auto-release 0.0.753 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 45bab627063b..4634eb77a273 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.752 +MARKETING_VERSION = 0.0.753 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9645f32ac58f34a0063c4163cbfbbf0b73509fef Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Jun 2023 18:10:20 +0000 Subject: [PATCH 0808/1275] Auto-release 0.0.754 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4634eb77a273..e26736935665 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.753 +MARKETING_VERSION = 0.0.754 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 55eadb5efcd7398de83f04a1fa18a6c487b09991 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Jun 2023 00:49:45 +0000 Subject: [PATCH 0809/1275] Auto-release 0.0.755 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e26736935665..27b3c5507ec5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.754 +MARKETING_VERSION = 0.0.755 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 83bc40954ee06ed92c8fd1a8d3bd70e2630a2692 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Jun 2023 06:12:35 +0000 Subject: [PATCH 0810/1275] Auto-release 0.0.756 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 27b3c5507ec5..33fe77c87dce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.755 +MARKETING_VERSION = 0.0.756 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 4ad70cb6dd23d50184f4b957af0676e331187c85 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Jun 2023 12:18:28 +0000 Subject: [PATCH 0811/1275] Auto-release 0.0.757 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 33fe77c87dce..42805b978592 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.756 +MARKETING_VERSION = 0.0.757 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From bd935d6e06c1391ce5cf110093778a9038754c32 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Jun 2023 18:12:09 +0000 Subject: [PATCH 0812/1275] Auto-release 0.0.758 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 42805b978592..17fad5cd08d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.757 +MARKETING_VERSION = 0.0.758 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0e963e9693e4050d16bda6e019c7bc4a50f40f10 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Jun 2023 00:47:27 +0000 Subject: [PATCH 0813/1275] Auto-release 0.0.759 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 17fad5cd08d2..9ccafa4ad08f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.758 +MARKETING_VERSION = 0.0.759 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2cfae6f5af387bcdb4f8e264dddacd6bdf6bcabf Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Jun 2023 06:12:50 +0000 Subject: [PATCH 0814/1275] Auto-release 0.0.760 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9ccafa4ad08f..76c6ce88717e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.759 +MARKETING_VERSION = 0.0.760 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 986e20ff60037ac878cd48edf0f54583c457a07d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Jun 2023 12:16:50 +0000 Subject: [PATCH 0815/1275] Auto-release 0.0.761 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 76c6ce88717e..122d5898108e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.760 +MARKETING_VERSION = 0.0.761 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d7d5736de865ef1facb55d9caebbf2b78295ea12 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Jun 2023 18:10:17 +0000 Subject: [PATCH 0816/1275] Auto-release 0.0.762 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 122d5898108e..1296d885f2a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.761 +MARKETING_VERSION = 0.0.762 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 13223cfd4f4a786360da213b999a003cc8002613 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Jun 2023 00:50:49 +0000 Subject: [PATCH 0817/1275] Auto-release 0.0.763 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1296d885f2a7..80df483b82e3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.762 +MARKETING_VERSION = 0.0.763 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1bfb08967b11860b3cdcfbb58f53c3f60f8f64c4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Jun 2023 06:12:21 +0000 Subject: [PATCH 0818/1275] Auto-release 0.0.764 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 80df483b82e3..ef915eb1f9f6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.763 +MARKETING_VERSION = 0.0.764 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From aadb080aa7135fdeddf100b9e7e977a6137b9a9e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Jun 2023 12:17:02 +0000 Subject: [PATCH 0819/1275] Auto-release 0.0.765 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ef915eb1f9f6..16d0901b95de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.764 +MARKETING_VERSION = 0.0.765 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7205ad2b98618b2627f782bd4f03e96b020856dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Jun 2023 18:10:52 +0000 Subject: [PATCH 0820/1275] Auto-release 0.0.766 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 16d0901b95de..a59d036785a3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.765 +MARKETING_VERSION = 0.0.766 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 499b8176c1e7280198a28b604401a6490e08bdc4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Jun 2023 00:52:06 +0000 Subject: [PATCH 0821/1275] Auto-release 0.0.767 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a59d036785a3..d87b93ede1ca 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.766 +MARKETING_VERSION = 0.0.767 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e44e3e6f8bf60e36fd001fd37a4bf010c693262d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Jun 2023 06:12:23 +0000 Subject: [PATCH 0822/1275] Auto-release 0.0.768 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d87b93ede1ca..411e1496ddc6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.767 +MARKETING_VERSION = 0.0.768 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From d161dbb7b3cc5c1aa85bc6a7e4b1ab569e87527a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Jun 2023 12:17:05 +0000 Subject: [PATCH 0823/1275] Auto-release 0.0.769 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 411e1496ddc6..205444a07d4a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.768 +MARKETING_VERSION = 0.0.769 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 24e5dc2f6abf17fe7ad761206f94d92d9a25d170 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Jun 2023 18:11:09 +0000 Subject: [PATCH 0824/1275] Auto-release 0.0.770 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 205444a07d4a..d4e7361d0d5a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.769 +MARKETING_VERSION = 0.0.770 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c290b3ba39a05f160ce8be0e91b5bbef168635cd Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Jun 2023 00:56:18 +0000 Subject: [PATCH 0825/1275] Auto-release 0.0.771 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d4e7361d0d5a..9e81cf53adb7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.770 +MARKETING_VERSION = 0.0.771 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7ec5ae2481cba8cd7bb933c8075d3c8b098a1388 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Jun 2023 06:14:00 +0000 Subject: [PATCH 0826/1275] Auto-release 0.0.772 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e81cf53adb7..b03406185685 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.771 +MARKETING_VERSION = 0.0.772 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 7d2ba63c28a65cd49b7f271a448a97726c68bf16 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Jun 2023 12:18:22 +0000 Subject: [PATCH 0827/1275] Auto-release 0.0.773 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b03406185685..3e7382df91f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.772 +MARKETING_VERSION = 0.0.773 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 81acf3ce9abb9deeef6aa12b69c7a11841ff7a20 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Jun 2023 18:12:44 +0000 Subject: [PATCH 0828/1275] Auto-release 0.0.774 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e7382df91f1..3e5b9d1cdc12 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.773 +MARKETING_VERSION = 0.0.774 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 003cf565d1be7be53ee2cc4aae26f85a998e7c75 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Jun 2023 00:55:49 +0000 Subject: [PATCH 0829/1275] Auto-release 0.0.775 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e5b9d1cdc12..cd624e06b442 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.774 +MARKETING_VERSION = 0.0.775 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 9c45a3a4210121ee7a140a2e355ff944208775ea Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Jun 2023 06:12:39 +0000 Subject: [PATCH 0830/1275] Auto-release 0.0.776 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd624e06b442..2a1beeafe67a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.775 +MARKETING_VERSION = 0.0.776 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From e93146174a630225a05b7d6b8126c10ffe5374f5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Jun 2023 12:17:13 +0000 Subject: [PATCH 0831/1275] Auto-release 0.0.777 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2a1beeafe67a..e4fe580aa33f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.776 +MARKETING_VERSION = 0.0.777 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1976c81a1e4b52e1924738a4c5df9302b40eda3d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Jun 2023 18:11:47 +0000 Subject: [PATCH 0832/1275] Auto-release 0.0.778 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e4fe580aa33f..b761267cfbc6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.777 +MARKETING_VERSION = 0.0.778 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2558cfa1b999b92e134015238fa563e48bef90c9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Jun 2023 01:00:49 +0000 Subject: [PATCH 0833/1275] Auto-release 0.0.779 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b761267cfbc6..a42bf8af91d5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.778 +MARKETING_VERSION = 0.0.779 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 6afa9eb6bf744c15afa69498590a3d262153e51b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Jun 2023 06:12:45 +0000 Subject: [PATCH 0834/1275] Auto-release 0.0.780 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a42bf8af91d5..3b9c584d2648 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.779 +MARKETING_VERSION = 0.0.780 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 157cc7d6ca3ae13f6accf69e62430647edf4a601 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Jun 2023 12:17:36 +0000 Subject: [PATCH 0835/1275] Auto-release 0.0.781 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3b9c584d2648..bb060fb9696b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.780 +MARKETING_VERSION = 0.0.781 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 1eac916529a14a9a8b7d92f732d23848b4152001 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Jun 2023 18:11:44 +0000 Subject: [PATCH 0836/1275] Auto-release 0.0.782 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bb060fb9696b..8ed03f9685d8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.781 +MARKETING_VERSION = 0.0.782 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 07337509751baac060d059416102934b1c3b5cdc Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Jun 2023 00:58:00 +0000 Subject: [PATCH 0837/1275] Auto-release 0.0.783 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8ed03f9685d8..9cc6e8d770b5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.782 +MARKETING_VERSION = 0.0.783 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 55572fba0e790141772d36b204e962b211db1114 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Jun 2023 06:14:15 +0000 Subject: [PATCH 0838/1275] Auto-release 0.0.784 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9cc6e8d770b5..0d4de0a058e7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.783 +MARKETING_VERSION = 0.0.784 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From cb406258eae52d406f177a8bbe68efc2f8764b30 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Jun 2023 12:18:41 +0000 Subject: [PATCH 0839/1275] Auto-release 0.0.785 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0d4de0a058e7..5ad04c7db990 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.784 +MARKETING_VERSION = 0.0.785 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 8c7a3553b43576b06bdd55d8871e30e4e970d815 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Jun 2023 18:12:45 +0000 Subject: [PATCH 0840/1275] Auto-release 0.0.786 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5ad04c7db990..1222f5f5184b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.785 +MARKETING_VERSION = 0.0.786 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 3ee8e992456e20d8cfd78193227d241f5db4e42d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Jun 2023 00:56:50 +0000 Subject: [PATCH 0841/1275] Auto-release 0.0.787 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1222f5f5184b..daf42a581cbf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.786 +MARKETING_VERSION = 0.0.787 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 2d69e4a3359a83b78403f3d225e1cfe106adac57 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Jun 2023 06:14:03 +0000 Subject: [PATCH 0842/1275] Auto-release 0.0.788 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index daf42a581cbf..0d2cc8df8882 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.787 +MARKETING_VERSION = 0.0.788 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 0638859049848fde52cc13379f78e2bb8374832b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Jun 2023 12:20:07 +0000 Subject: [PATCH 0843/1275] Auto-release 0.0.789 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0d2cc8df8882..7c00f451cc54 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.788 +MARKETING_VERSION = 0.0.789 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From 54d026260b2604d73ef2ae36662254f1d88ff1d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Jun 2023 18:12:29 +0000 Subject: [PATCH 0844/1275] Auto-release 0.0.790 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7c00f451cc54..b7f493d27aec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.789 +MARKETING_VERSION = 0.0.790 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 152 From c86b0a5ad590b877445562613a31b803575dd112 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Jun 2023 17:16:16 -0400 Subject: [PATCH 0845/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b7f493d27aec..616b928a5345 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.790 +MARKETING_VERSION = 0.0.791 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 152 +CURRENT_PROJECT_VERSION = 1003 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From 8d7809e2323efa2b33c1693a09cbd620c5eb50a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Jun 2023 17:33:26 -0400 Subject: [PATCH 0846/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 616b928a5345..9c9eb26538a9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.791 +MARKETING_VERSION = 0.0.792 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1003 +CURRENT_PROJECT_VERSION = 1004 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From b25cff1bc756b81bfd388e15554c8bc0f5f6251b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Jun 2023 18:31:00 -0400 Subject: [PATCH 0847/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9c9eb26538a9..c18ce0a7f778 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.792 +MARKETING_VERSION = 0.0.793 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1004 +CURRENT_PROJECT_VERSION = 1005 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From f3581b4fc05a3034ed73eb5510e47119edc9ed71 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Jun 2023 20:20:13 -0400 Subject: [PATCH 0848/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c18ce0a7f778..d1f15d7c7bb0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.793 +MARKETING_VERSION = 0.0.794 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1005 +CURRENT_PROJECT_VERSION = 1006 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From 0c426d6ac28d2f520e42ad5252c2a580bc0bf235 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Jun 2023 00:58:16 +0000 Subject: [PATCH 0849/1275] Auto-release 0.0.795 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d1f15d7c7bb0..fa78def7cf43 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.794 +MARKETING_VERSION = 0.0.795 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From 1e50b88f322e4db52b393722a964fa17847847f8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Jun 2023 06:13:50 +0000 Subject: [PATCH 0850/1275] Auto-release 0.0.796 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fa78def7cf43..3f3762b9278a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.795 +MARKETING_VERSION = 0.0.796 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From 9cab8d1f45def26ca440c3265075aa9015a27cb1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Jun 2023 12:19:27 +0000 Subject: [PATCH 0851/1275] Auto-release 0.0.797 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f3762b9278a..df56d574edb3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.796 +MARKETING_VERSION = 0.0.797 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From 64e0b9a091d8f609681d8e8bae9f30f2084d8766 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Jun 2023 18:13:23 +0000 Subject: [PATCH 0852/1275] Auto-release 0.0.798 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df56d574edb3..d5bc90e05819 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.797 +MARKETING_VERSION = 0.0.798 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From 35017fab8b09479f27318c277326d21b3ecd3094 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Jun 2023 00:55:20 +0000 Subject: [PATCH 0853/1275] Auto-release 0.0.799 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d5bc90e05819..55385ef9dd85 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.798 +MARKETING_VERSION = 0.0.799 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From da481a6f5561f44bd130bd0ce72f976d9ff3ed93 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Jun 2023 06:14:03 +0000 Subject: [PATCH 0854/1275] Auto-release 0.0.800 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 55385ef9dd85..2f5833b999fe 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.799 +MARKETING_VERSION = 0.0.800 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From 7b8093555e23ab2b140d56caaeac5c575b689a94 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Jun 2023 12:18:01 +0000 Subject: [PATCH 0855/1275] Auto-release 0.0.801 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f5833b999fe..085a66fced3f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.800 +MARKETING_VERSION = 0.0.801 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From c5b2df6bc0ea54086fb17c936cb5dac34822f995 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Jun 2023 18:13:18 +0000 Subject: [PATCH 0856/1275] Auto-release 0.0.802 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 085a66fced3f..59965bb702e2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.801 +MARKETING_VERSION = 0.0.802 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From 1b5ca4a132159654e3f4f81701eae94206502f5c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Jun 2023 00:52:44 +0000 Subject: [PATCH 0857/1275] Auto-release 0.0.803 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 59965bb702e2..50fb6a28c145 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.802 +MARKETING_VERSION = 0.0.803 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From 2f1b8911d64dfa93335f11b03c409676a079bb34 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Jun 2023 06:13:38 +0000 Subject: [PATCH 0858/1275] Auto-release 0.0.804 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 50fb6a28c145..c527c6574127 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.803 +MARKETING_VERSION = 0.0.804 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From f193e03e5b5f630d2e0eaa47687a0721c162f485 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Jun 2023 12:17:51 +0000 Subject: [PATCH 0859/1275] Auto-release 0.0.805 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c527c6574127..f5c4cd5c5515 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.804 +MARKETING_VERSION = 0.0.805 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1006 From 2a8d591be6e3cfb98ba36014c04a798fcdbaf218 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Jun 2023 11:00:52 -0400 Subject: [PATCH 0860/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f5c4cd5c5515..cf34002e9342 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.805 +MARKETING_VERSION = 0.0.806 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1006 +CURRENT_PROJECT_VERSION = 1018 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From 3aee9668e24d83bf749d98328b687564da1b3989 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Jun 2023 11:01:04 -0400 Subject: [PATCH 0861/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf34002e9342..4edb8720ad29 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.806 +MARKETING_VERSION = 0.0.807 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1018 +CURRENT_PROJECT_VERSION = 1019 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From ff062d3c00865ec2322bffcfeaaa4aeeba52b855 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Jun 2023 18:12:07 +0000 Subject: [PATCH 0862/1275] Auto-release 0.0.808 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4edb8720ad29..8bfa9d262157 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.807 +MARKETING_VERSION = 0.0.808 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 8b6658f044572445ec43cea012fc93fdaa89705e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Jul 2023 01:01:11 +0000 Subject: [PATCH 0863/1275] Auto-release 0.0.809 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8bfa9d262157..8172fb28b269 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.808 +MARKETING_VERSION = 0.0.809 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 488128f01d868863a2d92816dd8ade912b0afe34 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Jul 2023 06:12:24 +0000 Subject: [PATCH 0864/1275] Auto-release 0.0.810 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8172fb28b269..17cf16bc3f53 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.809 +MARKETING_VERSION = 0.0.810 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 4aa1a4e15eaa9d42b96131b815f091f34a6db284 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Jul 2023 12:17:25 +0000 Subject: [PATCH 0865/1275] Auto-release 0.0.811 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 17cf16bc3f53..d930a62ff0ae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.810 +MARKETING_VERSION = 0.0.811 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 332415974105b5332c1c37ccda55354d6af43eb2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Jul 2023 18:11:12 +0000 Subject: [PATCH 0866/1275] Auto-release 0.0.812 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d930a62ff0ae..2d3d55055947 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.811 +MARKETING_VERSION = 0.0.812 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From d24bce5c67bb514c03a8b9166ec0106d612484dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Jul 2023 00:57:58 +0000 Subject: [PATCH 0867/1275] Auto-release 0.0.813 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d3d55055947..90be15fd77cf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.812 +MARKETING_VERSION = 0.0.813 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From edb33c3e65bdea875d26c0efe02e1491b3ccbd16 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Jul 2023 06:12:13 +0000 Subject: [PATCH 0868/1275] Auto-release 0.0.814 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 90be15fd77cf..45efb2b26831 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.813 +MARKETING_VERSION = 0.0.814 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 47241c967a27332dc1b4d4dd05029a2173db2292 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Jul 2023 12:16:53 +0000 Subject: [PATCH 0869/1275] Auto-release 0.0.815 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 45efb2b26831..707cfaa1c42e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.814 +MARKETING_VERSION = 0.0.815 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 8a7ac94a313a7799649140eb3bbb8af81d17bdbc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Jul 2023 18:11:08 +0000 Subject: [PATCH 0870/1275] Auto-release 0.0.816 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 707cfaa1c42e..c7baad393a44 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.815 +MARKETING_VERSION = 0.0.816 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 7f5d4b581fa0d5d80699f3ebe93dfa75586f89d5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Jul 2023 00:56:51 +0000 Subject: [PATCH 0871/1275] Auto-release 0.0.817 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c7baad393a44..f6bb6672fba4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.816 +MARKETING_VERSION = 0.0.817 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From f3e1ffb7aadc3a064b7b90217c6fdba1c1b94433 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Jul 2023 06:13:35 +0000 Subject: [PATCH 0872/1275] Auto-release 0.0.818 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f6bb6672fba4..ae826ba1f967 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.817 +MARKETING_VERSION = 0.0.818 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From cfd6c9bf2f2581082b338df225f2c26c1b9e82f0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Jul 2023 12:20:31 +0000 Subject: [PATCH 0873/1275] Auto-release 0.0.819 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ae826ba1f967..145e8e39fa57 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.818 +MARKETING_VERSION = 0.0.819 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 42bcee90a70e3fff4120db73e1f10c6723bb31da Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Jul 2023 18:12:06 +0000 Subject: [PATCH 0874/1275] Auto-release 0.0.820 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 145e8e39fa57..aa037393de1c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.819 +MARKETING_VERSION = 0.0.820 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 483ee8045cb13cf544ffd93d4723edeb767398f5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Jul 2023 00:57:12 +0000 Subject: [PATCH 0875/1275] Auto-release 0.0.821 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aa037393de1c..e770d3aba41d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.820 +MARKETING_VERSION = 0.0.821 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From c76c160045ec85c5e3650eee34cb07341f53fc77 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Jul 2023 06:13:49 +0000 Subject: [PATCH 0876/1275] Auto-release 0.0.822 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e770d3aba41d..3e4871a2512e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.821 +MARKETING_VERSION = 0.0.822 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From bb7e177b16043a83bb1570bfe5e255c2bcae474b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Jul 2023 12:19:04 +0000 Subject: [PATCH 0877/1275] Auto-release 0.0.823 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e4871a2512e..172a9efc9e44 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.822 +MARKETING_VERSION = 0.0.823 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From fa9b79d94d1688e37fd90b0eb18a111d182ee059 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Jul 2023 18:13:15 +0000 Subject: [PATCH 0878/1275] Auto-release 0.0.824 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 172a9efc9e44..4aae6ba4806d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.823 +MARKETING_VERSION = 0.0.824 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 41f01b225086adce9d2b16e539999c21bc318aef Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Jul 2023 00:57:26 +0000 Subject: [PATCH 0879/1275] Auto-release 0.0.825 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4aae6ba4806d..325706722e43 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.824 +MARKETING_VERSION = 0.0.825 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 62fb163df7144e2895520b5aa8c7f7d8bbdd4793 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Jul 2023 06:14:07 +0000 Subject: [PATCH 0880/1275] Auto-release 0.0.826 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 325706722e43..990648452346 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.825 +MARKETING_VERSION = 0.0.826 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From b3a14f590f8b42e50e2fa04ce28cd85c390c0bfb Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Jul 2023 12:21:23 +0000 Subject: [PATCH 0881/1275] Auto-release 0.0.827 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 990648452346..ab1b68a114a0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.826 +MARKETING_VERSION = 0.0.827 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From b1832371dc99c81528342b27bcb419b48c0e7788 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Jul 2023 18:13:03 +0000 Subject: [PATCH 0882/1275] Auto-release 0.0.828 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ab1b68a114a0..2f846cd093ae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.827 +MARKETING_VERSION = 0.0.828 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From de00af20fbac9e92111c4a4dc39669ef1a9dbdbb Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Jul 2023 00:58:27 +0000 Subject: [PATCH 0883/1275] Auto-release 0.0.829 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f846cd093ae..6ad4600fbd07 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.828 +MARKETING_VERSION = 0.0.829 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From a118f483926958adc7306f20bbd5d12b61fe949d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Jul 2023 06:13:48 +0000 Subject: [PATCH 0884/1275] Auto-release 0.0.830 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6ad4600fbd07..3cb5080e2b4f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.829 +MARKETING_VERSION = 0.0.830 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 4f36117e1eee9884e3c976f586b3aa49d6b33abb Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Jul 2023 12:20:19 +0000 Subject: [PATCH 0885/1275] Auto-release 0.0.831 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3cb5080e2b4f..928682f03109 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.830 +MARKETING_VERSION = 0.0.831 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From ea98591ade973f1d882a75e1903884a75158c25c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Jul 2023 18:11:41 +0000 Subject: [PATCH 0886/1275] Auto-release 0.0.832 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 928682f03109..41a98beec0bd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.831 +MARKETING_VERSION = 0.0.832 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 049665b70c81b436942b76f674104a472a989424 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jul 2023 00:58:51 +0000 Subject: [PATCH 0887/1275] Auto-release 0.0.833 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 41a98beec0bd..d3011bc4939d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.832 +MARKETING_VERSION = 0.0.833 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 9d62ee162d5c1f8db9a66a8b36758701dbd8d237 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jul 2023 06:13:57 +0000 Subject: [PATCH 0888/1275] Auto-release 0.0.834 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d3011bc4939d..2c185235502b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.833 +MARKETING_VERSION = 0.0.834 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 5612a6a4a8abcdbb9a96978867550b34e81ccef1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jul 2023 12:19:34 +0000 Subject: [PATCH 0889/1275] Auto-release 0.0.835 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2c185235502b..b866c1976d5f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.834 +MARKETING_VERSION = 0.0.835 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1019 From 63ae0fa992334be68cb2de9f625ebad79f2e02f5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jul 2023 07:36:31 -0400 Subject: [PATCH 0890/1275] Release --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b866c1976d5f..f57d5c2c6c65 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.835 +MARKETING_VERSION = 0.0.808 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1019 +CURRENT_PROJECT_VERSION = 1020 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From b1cfeb503a760de6147febbfec7c4d23f8be3571 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jul 2023 09:40:42 -0400 Subject: [PATCH 0891/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f57d5c2c6c65..30728ce99765 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.808 +MARKETING_VERSION = 0.0.809 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1020 +CURRENT_PROJECT_VERSION = 1049 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From de4c27f1f9bb5759a3ed319d3888bdbb592a546c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jul 2023 09:40:47 -0400 Subject: [PATCH 0892/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 30728ce99765..1fbcc92d5027 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.809 +MARKETING_VERSION = 0.0.810 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1049 +CURRENT_PROJECT_VERSION = 1050 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From 8dc2dc1c1232a7d1114b23474f68749145438f5f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jul 2023 09:41:37 -0400 Subject: [PATCH 0893/1275] --- appfair.xcconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1fbcc92d5027..1faa3a2974b1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,10 +7,10 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.810 +MARKETING_VERSION = 0.0.836 // The monotonically increasing number specifying the internal app version -CURRENT_PROJECT_VERSION = 1050 +CURRENT_PROJECT_VERSION = 1051 // The category of the app should be one of: public.app-category.business, developer-tools, education, entertainment, finance, games, graphics-design, healthcare-fitness, lifestyle, medical, music, news, photography, productivity, reference, social-networking, sports, travel, utilities, video, weather APP_CATEGORY = public.app-category.utilities From e9268d4a643d0c66a93d7d63f205035af3bb3971 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jul 2023 18:12:29 +0000 Subject: [PATCH 0894/1275] Auto-release 0.0.837 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1faa3a2974b1..ccfc7ed345bc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.836 +MARKETING_VERSION = 0.0.837 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c3528b2641b33354d219cc594cc422866f3af4c6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Jul 2023 00:56:51 +0000 Subject: [PATCH 0895/1275] Auto-release 0.0.838 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ccfc7ed345bc..6c000fe6dc75 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.837 +MARKETING_VERSION = 0.0.838 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cc56a007a51ce56142f7c87d61d3fbdd2da2b1e3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Jul 2023 06:12:13 +0000 Subject: [PATCH 0896/1275] Auto-release 0.0.839 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6c000fe6dc75..3913bf6ae565 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.838 +MARKETING_VERSION = 0.0.839 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 669266a8885e43c0ba978dcef7285dc4614fa5ae Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Jul 2023 12:16:48 +0000 Subject: [PATCH 0897/1275] Auto-release 0.0.840 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3913bf6ae565..e6b62d0ee1e4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.839 +MARKETING_VERSION = 0.0.840 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6fe536e31a5c024cfa65b7f89254c46bcd4b2a25 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Jul 2023 18:11:16 +0000 Subject: [PATCH 0898/1275] Auto-release 0.0.841 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e6b62d0ee1e4..9e9fabe74c1a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.840 +MARKETING_VERSION = 0.0.841 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2eca6d6e3630f7e9e5a48bfa4ff6e098c6c4b340 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Jul 2023 01:00:17 +0000 Subject: [PATCH 0899/1275] Auto-release 0.0.842 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e9fabe74c1a..7ee5640cdce0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.841 +MARKETING_VERSION = 0.0.842 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2d9376e0f4cdc76f8922cbf2c6ffa1a684462175 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Jul 2023 06:12:19 +0000 Subject: [PATCH 0900/1275] Auto-release 0.0.843 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7ee5640cdce0..19b52393e1ee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.842 +MARKETING_VERSION = 0.0.843 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cf93f3884ef108ed9f6de09934575e4465802e03 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Jul 2023 12:17:20 +0000 Subject: [PATCH 0901/1275] Auto-release 0.0.844 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 19b52393e1ee..46d8d73d4259 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.843 +MARKETING_VERSION = 0.0.844 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 907d51070c570f09bcf6a0859e00afa8b8f75e04 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Jul 2023 18:11:18 +0000 Subject: [PATCH 0902/1275] Auto-release 0.0.845 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 46d8d73d4259..e819757e9a70 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.844 +MARKETING_VERSION = 0.0.845 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 48bf38ff41b44577a88d8afd3a59fb7334e9a768 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Jul 2023 00:56:58 +0000 Subject: [PATCH 0903/1275] Auto-release 0.0.846 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e819757e9a70..07e1008b8348 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.845 +MARKETING_VERSION = 0.0.846 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c773d5039df7ccaaae4e07752f77a7da9ab5e1c8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Jul 2023 06:14:23 +0000 Subject: [PATCH 0904/1275] Auto-release 0.0.847 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 07e1008b8348..7cbe28c3bf87 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.846 +MARKETING_VERSION = 0.0.847 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 31d50009b06de5f3a765cb83f43ff5e82b3a870e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Jul 2023 12:19:11 +0000 Subject: [PATCH 0905/1275] Auto-release 0.0.848 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7cbe28c3bf87..090a80cf7763 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.847 +MARKETING_VERSION = 0.0.848 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3c72feedc8f80ad437cad5e36e6f41955992f5ab Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Jul 2023 18:12:41 +0000 Subject: [PATCH 0906/1275] Auto-release 0.0.849 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 090a80cf7763..47e55f6916c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.848 +MARKETING_VERSION = 0.0.849 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eca3afad338f09629ac0012ded76006159710adc Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Jul 2023 00:51:50 +0000 Subject: [PATCH 0907/1275] Auto-release 0.0.850 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 47e55f6916c8..f069e4324f75 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.849 +MARKETING_VERSION = 0.0.850 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 956220bcd0eb2d69a823a5057c8990e05111b318 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Jul 2023 06:13:57 +0000 Subject: [PATCH 0908/1275] Auto-release 0.0.851 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f069e4324f75..08bf841eaf7a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.850 +MARKETING_VERSION = 0.0.851 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 710c432d571b3e5f413beea7d1a2fa59b2ec0330 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Jul 2023 12:19:18 +0000 Subject: [PATCH 0909/1275] Auto-release 0.0.852 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 08bf841eaf7a..1069ddaff1e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.851 +MARKETING_VERSION = 0.0.852 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8435c0189eaaa3de3b4fb0e9afa348426d7c6352 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Jul 2023 18:12:30 +0000 Subject: [PATCH 0910/1275] Auto-release 0.0.853 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1069ddaff1e9..45fb561a2d41 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.852 +MARKETING_VERSION = 0.0.853 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 638adc9e6b096948f5cbc24c2455284f24a04f0c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Jul 2023 00:56:37 +0000 Subject: [PATCH 0911/1275] Auto-release 0.0.854 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 45fb561a2d41..3da979a944cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.853 +MARKETING_VERSION = 0.0.854 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0a77b66a4f65508c6194b8f0f17e404311e3f914 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Jul 2023 06:13:11 +0000 Subject: [PATCH 0912/1275] Auto-release 0.0.855 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3da979a944cc..89026b467f56 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.854 +MARKETING_VERSION = 0.0.855 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dc3018148351bcc81f5d64d9a6dd1038ea14338e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Jul 2023 12:19:11 +0000 Subject: [PATCH 0913/1275] Auto-release 0.0.856 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 89026b467f56..167757b68f79 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.855 +MARKETING_VERSION = 0.0.856 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2bc040fa15c4633c97fefeca226196532a8e1fe9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Jul 2023 18:12:52 +0000 Subject: [PATCH 0914/1275] Auto-release 0.0.857 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 167757b68f79..89bbd4513ee5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.856 +MARKETING_VERSION = 0.0.857 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 08b330101fb11c261f76b1bd0971a0ef786a9874 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Jul 2023 00:58:19 +0000 Subject: [PATCH 0915/1275] Auto-release 0.0.858 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 89bbd4513ee5..d02242c8fbc0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.857 +MARKETING_VERSION = 0.0.858 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4a2d8e7bb01e406d441f7e88155621409e4f2f8d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Jul 2023 06:13:43 +0000 Subject: [PATCH 0916/1275] Auto-release 0.0.859 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d02242c8fbc0..b673dd17bfc2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.858 +MARKETING_VERSION = 0.0.859 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 40707aaa0c7653fb17b8d8428477140327b540fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Jul 2023 12:19:28 +0000 Subject: [PATCH 0917/1275] Auto-release 0.0.860 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b673dd17bfc2..b6845454f3d1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.859 +MARKETING_VERSION = 0.0.860 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 612158c20640c1b2cfa4c0eff9f53cfa3a7d6ba1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Jul 2023 18:13:11 +0000 Subject: [PATCH 0918/1275] Auto-release 0.0.861 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6845454f3d1..0ea8f5db5279 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.860 +MARKETING_VERSION = 0.0.861 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 70e28bda08dea4f34831e0203ebf89339eb19c1f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Jul 2023 00:57:16 +0000 Subject: [PATCH 0919/1275] Auto-release 0.0.862 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0ea8f5db5279..511d225a1d8a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.861 +MARKETING_VERSION = 0.0.862 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 98e371d57968b5246425318c4232e380eee0b636 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Jul 2023 06:13:40 +0000 Subject: [PATCH 0920/1275] Auto-release 0.0.863 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 511d225a1d8a..fe9f2159c679 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.862 +MARKETING_VERSION = 0.0.863 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 40925a016883395f8f2d552b79f32e3b54c3d436 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Jul 2023 12:18:40 +0000 Subject: [PATCH 0921/1275] Auto-release 0.0.864 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fe9f2159c679..5bde1030fc70 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.863 +MARKETING_VERSION = 0.0.864 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e0c2679a355b271701c80f768d1ce4c371defde2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Jul 2023 18:11:36 +0000 Subject: [PATCH 0922/1275] Auto-release 0.0.865 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5bde1030fc70..e8b7261d4553 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.864 +MARKETING_VERSION = 0.0.865 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9e33d4828a22a29e4152fa1c95fb00b05f04dec3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Jul 2023 00:56:28 +0000 Subject: [PATCH 0923/1275] Auto-release 0.0.866 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e8b7261d4553..3a4b01203706 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.865 +MARKETING_VERSION = 0.0.866 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 115add1f36cf522866156a449c53e355a1bec2de Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Jul 2023 06:12:50 +0000 Subject: [PATCH 0924/1275] Auto-release 0.0.867 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3a4b01203706..78627b36ee13 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.866 +MARKETING_VERSION = 0.0.867 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 737bf6869b1759ae09a745fc949fb3fc38ccb2c3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Jul 2023 12:17:15 +0000 Subject: [PATCH 0925/1275] Auto-release 0.0.868 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 78627b36ee13..d010702bb846 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.867 +MARKETING_VERSION = 0.0.868 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cd171ebe37fa6717f698cb6d40fadc6ba83db73f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Jul 2023 18:11:39 +0000 Subject: [PATCH 0926/1275] Auto-release 0.0.869 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d010702bb846..d0dccf5bee49 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.868 +MARKETING_VERSION = 0.0.869 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 05cccd1d7123fb21be40cddb50b1e58596f620f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Jul 2023 01:01:57 +0000 Subject: [PATCH 0927/1275] Auto-release 0.0.870 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d0dccf5bee49..cbf7533085a5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.869 +MARKETING_VERSION = 0.0.870 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d65994a9200da44743281eda0cdb4e126b1812e8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Jul 2023 06:12:41 +0000 Subject: [PATCH 0928/1275] Auto-release 0.0.871 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cbf7533085a5..dca59408eac5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.870 +MARKETING_VERSION = 0.0.871 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dcaea1e54be8cc86a40c014a9df2706a967205a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Jul 2023 12:16:21 +0000 Subject: [PATCH 0929/1275] Auto-release 0.0.872 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dca59408eac5..0e9e9aed0dcb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.871 +MARKETING_VERSION = 0.0.872 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 23fe00af4097799e71af721ccfa56fbced84a74d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Jul 2023 18:11:52 +0000 Subject: [PATCH 0930/1275] Auto-release 0.0.873 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0e9e9aed0dcb..2b3926bdeb02 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.872 +MARKETING_VERSION = 0.0.873 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a9e3cc60d6ef08a645598c9d30f42ed019187436 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Jul 2023 00:59:05 +0000 Subject: [PATCH 0931/1275] Auto-release 0.0.874 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2b3926bdeb02..cd52691473f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.873 +MARKETING_VERSION = 0.0.874 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3cfa1356e33de1165da7951c0ed968466d348602 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Jul 2023 06:14:02 +0000 Subject: [PATCH 0932/1275] Auto-release 0.0.875 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd52691473f7..e900f3c6839c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.874 +MARKETING_VERSION = 0.0.875 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4d0ec3992ad4e56ca09943d8d83353344da04b20 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Jul 2023 12:20:30 +0000 Subject: [PATCH 0933/1275] Auto-release 0.0.876 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e900f3c6839c..28f3ab877264 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.875 +MARKETING_VERSION = 0.0.876 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8cc6fd10c61ee7a7e5dd82b9e839e0d79de4a963 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Jul 2023 18:12:49 +0000 Subject: [PATCH 0934/1275] Auto-release 0.0.877 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 28f3ab877264..bb301ddd9395 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.876 +MARKETING_VERSION = 0.0.877 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ca2f94c0b5074fa4bd1cdab2a4a2482ed6a0b9e4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Jul 2023 01:13:17 +0000 Subject: [PATCH 0935/1275] Auto-release 0.0.878 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bb301ddd9395..2fc103bd689e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.877 +MARKETING_VERSION = 0.0.878 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f4a025715b2aad008794bab1447bd44548b31893 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Jul 2023 06:12:35 +0000 Subject: [PATCH 0936/1275] Auto-release 0.0.879 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2fc103bd689e..7fe1c3e3ce2f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.878 +MARKETING_VERSION = 0.0.879 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 400ccd0f06cb8066bd7b3ea0c470da36ddd991f2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Jul 2023 12:19:34 +0000 Subject: [PATCH 0937/1275] Auto-release 0.0.880 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7fe1c3e3ce2f..acee42871843 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.879 +MARKETING_VERSION = 0.0.880 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ee2b5aa8ea8a9c62dc7024ada901b4dfd3c0b35c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Jul 2023 18:12:33 +0000 Subject: [PATCH 0938/1275] Auto-release 0.0.881 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index acee42871843..2e7b15a1bedb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.880 +MARKETING_VERSION = 0.0.881 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 26d2ee5f2c683f1676e986bb6a54a0cd56906a09 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Jul 2023 01:27:27 +0000 Subject: [PATCH 0939/1275] Auto-release 0.0.882 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2e7b15a1bedb..7beb08297d6c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.881 +MARKETING_VERSION = 0.0.882 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e82651c1eb97508e5148b3d253418d5befc8eb1a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Jul 2023 06:12:32 +0000 Subject: [PATCH 0940/1275] Auto-release 0.0.883 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7beb08297d6c..6a55d18a8729 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.882 +MARKETING_VERSION = 0.0.883 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 86c4b9a7ecd5e4ab18e386771944d77ca6e77389 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Jul 2023 12:17:10 +0000 Subject: [PATCH 0941/1275] Auto-release 0.0.884 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6a55d18a8729..597c14390eb0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.883 +MARKETING_VERSION = 0.0.884 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 248c30771a76cf1470209f03a04be14c02854762 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Jul 2023 18:11:23 +0000 Subject: [PATCH 0942/1275] Auto-release 0.0.885 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 597c14390eb0..e847936740fd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.884 +MARKETING_VERSION = 0.0.885 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2689f3f2097216bd91dc76648853d989bb91b325 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Jul 2023 00:49:12 +0000 Subject: [PATCH 0943/1275] Auto-release 0.0.886 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e847936740fd..8869f040a1e3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.885 +MARKETING_VERSION = 0.0.886 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aa95c1342fd48fbd1db92fe6622b5a0336cdd6ca Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Jul 2023 06:12:04 +0000 Subject: [PATCH 0944/1275] Auto-release 0.0.887 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8869f040a1e3..476de59f6888 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.886 +MARKETING_VERSION = 0.0.887 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 812f0c1680ac32852fcc1800e270c28245cad068 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Jul 2023 12:17:21 +0000 Subject: [PATCH 0945/1275] Auto-release 0.0.888 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 476de59f6888..24b3d61ae4d5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.887 +MARKETING_VERSION = 0.0.888 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5eeb449c525a4ce547b57c65a38c5338308ebf0a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Jul 2023 18:11:02 +0000 Subject: [PATCH 0946/1275] Auto-release 0.0.889 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 24b3d61ae4d5..27ad76ffc05c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.888 +MARKETING_VERSION = 0.0.889 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e0963747c311c92242889d52d692b299d0282fac Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Jul 2023 00:47:42 +0000 Subject: [PATCH 0947/1275] Auto-release 0.0.890 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 27ad76ffc05c..f6547e4f968f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.889 +MARKETING_VERSION = 0.0.890 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From de851f5f98572d57af9557e683122004fd277e89 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Jul 2023 06:12:48 +0000 Subject: [PATCH 0948/1275] Auto-release 0.0.891 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f6547e4f968f..ca9c84814b5e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.890 +MARKETING_VERSION = 0.0.891 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fa2ad9a86b0a19e39ae439b78b2439f1d5c1ef5f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Jul 2023 12:16:16 +0000 Subject: [PATCH 0949/1275] Auto-release 0.0.892 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ca9c84814b5e..37d36cd4438f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.891 +MARKETING_VERSION = 0.0.892 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 55069ab21d895aa991d4efa5c3a50b0772e45415 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Jul 2023 18:12:20 +0000 Subject: [PATCH 0950/1275] Auto-release 0.0.893 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 37d36cd4438f..7d50092cc3c3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.892 +MARKETING_VERSION = 0.0.893 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7a69528163bd20f6e0e9098a9a8451fd08c466a2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Jul 2023 00:48:28 +0000 Subject: [PATCH 0951/1275] Auto-release 0.0.894 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7d50092cc3c3..b411d15b0023 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.893 +MARKETING_VERSION = 0.0.894 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 77b3128bab7731c93643b90d04ac52632039a08e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Jul 2023 06:10:59 +0000 Subject: [PATCH 0952/1275] Auto-release 0.0.895 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b411d15b0023..600d2f511647 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.894 +MARKETING_VERSION = 0.0.895 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4c46d949c4abb82fdfb829a6e1b2166842889b55 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Jul 2023 12:15:34 +0000 Subject: [PATCH 0953/1275] Auto-release 0.0.896 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 600d2f511647..a6d8712458b6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.895 +MARKETING_VERSION = 0.0.896 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0f71e3e0c132553804a470dd0560a48598f27b33 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Jul 2023 18:10:28 +0000 Subject: [PATCH 0954/1275] Auto-release 0.0.897 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a6d8712458b6..d424d1e04f34 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.896 +MARKETING_VERSION = 0.0.897 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7e73900e70fdb5a78adc87c78e7e7edca3f4302f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Jul 2023 00:52:38 +0000 Subject: [PATCH 0955/1275] Auto-release 0.0.898 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d424d1e04f34..c6b117b20c81 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.897 +MARKETING_VERSION = 0.0.898 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f6ca284f22f980e30944b513eeec8c436288c777 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Jul 2023 06:11:23 +0000 Subject: [PATCH 0956/1275] Auto-release 0.0.899 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c6b117b20c81..6284beecd9cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.898 +MARKETING_VERSION = 0.0.899 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9b00b5f57498ec53e5a0db7c5356b85efe1493d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Jul 2023 12:15:20 +0000 Subject: [PATCH 0957/1275] Auto-release 0.0.900 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6284beecd9cb..30b674a32f35 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.899 +MARKETING_VERSION = 0.0.900 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d8f83564379a336ee72bfc0e0c6d51e4d8887a15 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Jul 2023 18:10:36 +0000 Subject: [PATCH 0958/1275] Auto-release 0.0.901 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 30b674a32f35..9c968bafdb84 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.900 +MARKETING_VERSION = 0.0.901 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7d7ce9ddffed14f55165c83345f018659a3b8440 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Jul 2023 00:49:44 +0000 Subject: [PATCH 0959/1275] Auto-release 0.0.902 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9c968bafdb84..ad2adefef917 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.901 +MARKETING_VERSION = 0.0.902 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9ec1ae70df328b8459b1f375a54c8e7523e1f7d2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Jul 2023 06:12:28 +0000 Subject: [PATCH 0960/1275] Auto-release 0.0.903 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad2adefef917..7386ecf1512c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.902 +MARKETING_VERSION = 0.0.903 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 078542d725be922155d7fd0c4057d3c03b21ab7d Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Jul 2023 12:17:10 +0000 Subject: [PATCH 0961/1275] Auto-release 0.0.904 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7386ecf1512c..0330ee742000 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.903 +MARKETING_VERSION = 0.0.904 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7cc21559f6597fea1c745558577836c25ea607e7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Jul 2023 18:13:16 +0000 Subject: [PATCH 0962/1275] Auto-release 0.0.905 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0330ee742000..d295c1144ee7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.904 +MARKETING_VERSION = 0.0.905 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7a7320cd8af40213b4f9d3eda136c3f558f94ab1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Jul 2023 00:53:03 +0000 Subject: [PATCH 0963/1275] Auto-release 0.0.906 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d295c1144ee7..92be31229c42 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.905 +MARKETING_VERSION = 0.0.906 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9f85f97c6bf6d83921b5a4066e4fb98f0864d2f2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Jul 2023 06:12:26 +0000 Subject: [PATCH 0964/1275] Auto-release 0.0.907 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 92be31229c42..9618ff02af1d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.906 +MARKETING_VERSION = 0.0.907 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bfe449dc65a0ea5514a0017cb0aaa2af516d6d09 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Jul 2023 12:17:43 +0000 Subject: [PATCH 0965/1275] Auto-release 0.0.908 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9618ff02af1d..6634855a594d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.907 +MARKETING_VERSION = 0.0.908 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 738f560bf49179482d35372157b1606bfaf73619 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Jul 2023 18:11:01 +0000 Subject: [PATCH 0966/1275] Auto-release 0.0.909 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6634855a594d..8a39b85f5d2c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.908 +MARKETING_VERSION = 0.0.909 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c92499f0c7dc60c628aa9d46bb95c8f73fc6e4d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Jul 2023 00:46:59 +0000 Subject: [PATCH 0967/1275] Auto-release 0.0.910 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8a39b85f5d2c..fbae3331fd49 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.909 +MARKETING_VERSION = 0.0.910 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From da477adfb692aeaca31e79dc9cb5b754469fe71b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Jul 2023 06:11:42 +0000 Subject: [PATCH 0968/1275] Auto-release 0.0.911 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fbae3331fd49..3a43a39abdd1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.910 +MARKETING_VERSION = 0.0.911 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 66ca86e5e58dee768db38bc01557740e580233f6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Jul 2023 12:15:55 +0000 Subject: [PATCH 0969/1275] Auto-release 0.0.912 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3a43a39abdd1..606388c60bfb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.911 +MARKETING_VERSION = 0.0.912 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5b4420abc90cf6338b54a36b9e36976043d5d641 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Jul 2023 18:11:01 +0000 Subject: [PATCH 0970/1275] Auto-release 0.0.913 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 606388c60bfb..d649914e2a73 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.912 +MARKETING_VERSION = 0.0.913 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0d5ed46311e214cadb2964317b7df1a8fc323e82 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Jul 2023 00:43:05 +0000 Subject: [PATCH 0971/1275] Auto-release 0.0.914 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d649914e2a73..91f2cbf210e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.913 +MARKETING_VERSION = 0.0.914 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2210c741189f9ca46d87b0d4266a4d0226fa262b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Jul 2023 06:12:08 +0000 Subject: [PATCH 0972/1275] Auto-release 0.0.915 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 91f2cbf210e5..0fc487895a65 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.914 +MARKETING_VERSION = 0.0.915 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 44c10b3a67161b0db3d40422630dad221c56774d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Jul 2023 12:16:48 +0000 Subject: [PATCH 0973/1275] Auto-release 0.0.916 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0fc487895a65..55a5efa68823 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.915 +MARKETING_VERSION = 0.0.916 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 499b6ce0a1af1ddbb68991c10cb989455d949b66 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Jul 2023 18:11:07 +0000 Subject: [PATCH 0974/1275] Auto-release 0.0.917 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 55a5efa68823..93091c8d2e17 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.916 +MARKETING_VERSION = 0.0.917 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1ae16e2d3b7310a41015905a0a00ff8a19dcef73 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Jul 2023 00:43:50 +0000 Subject: [PATCH 0975/1275] Auto-release 0.0.918 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 93091c8d2e17..c88fdb9f1642 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.917 +MARKETING_VERSION = 0.0.918 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 725ce0933beeead2333b4f5eab68ecec9492b8fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Jul 2023 06:12:05 +0000 Subject: [PATCH 0976/1275] Auto-release 0.0.919 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c88fdb9f1642..5cae6ffb3fec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.918 +MARKETING_VERSION = 0.0.919 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9595f69dc5717a5d257c4975ea4bb79790880ebb Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Jul 2023 12:16:49 +0000 Subject: [PATCH 0977/1275] Auto-release 0.0.920 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5cae6ffb3fec..9f39ab2d6a51 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.919 +MARKETING_VERSION = 0.0.920 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 98ba3b83a5541fc30df3e1f337ccfd934ef1ea1e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Jul 2023 18:10:31 +0000 Subject: [PATCH 0978/1275] Auto-release 0.0.921 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9f39ab2d6a51..14b3425a88e3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.920 +MARKETING_VERSION = 0.0.921 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a09e25111c7bbcef1edddcca3ec5c49a0319a511 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Jul 2023 00:45:09 +0000 Subject: [PATCH 0979/1275] Auto-release 0.0.922 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 14b3425a88e3..ffb52011378e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.921 +MARKETING_VERSION = 0.0.922 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 099b9fdd115b86b90396c2d33cee624defdb6697 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Jul 2023 06:11:04 +0000 Subject: [PATCH 0980/1275] Auto-release 0.0.923 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ffb52011378e..2a002962b15e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.922 +MARKETING_VERSION = 0.0.923 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3558172a172b37ca2dd913417ea9754c4c5e334e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Jul 2023 12:14:56 +0000 Subject: [PATCH 0981/1275] Auto-release 0.0.924 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2a002962b15e..ebb9808aadf1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.923 +MARKETING_VERSION = 0.0.924 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5e17c7b4953ac8a4d4a781325daf6b8429165aad Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Jul 2023 18:09:54 +0000 Subject: [PATCH 0982/1275] Auto-release 0.0.925 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ebb9808aadf1..a8cdbd11ce0f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.924 +MARKETING_VERSION = 0.0.925 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7d2f310c0243d3fa06f68c6d2a9d8fcb73d51f2b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Jul 2023 00:47:44 +0000 Subject: [PATCH 0983/1275] Auto-release 0.0.926 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a8cdbd11ce0f..5595cc91a15e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.925 +MARKETING_VERSION = 0.0.926 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 51516250fa2b1b52a30d166e2631e5553445f411 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Jul 2023 06:11:06 +0000 Subject: [PATCH 0984/1275] Auto-release 0.0.927 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5595cc91a15e..025524edc612 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.926 +MARKETING_VERSION = 0.0.927 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b28bd38fcf5d31fe5b2aec4f416c2076d52edc2f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Jul 2023 12:15:13 +0000 Subject: [PATCH 0985/1275] Auto-release 0.0.928 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 025524edc612..c44dc5869c01 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.927 +MARKETING_VERSION = 0.0.928 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 01ce5e407538564b635a79e52bcb52b98a74fa87 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Jul 2023 18:09:49 +0000 Subject: [PATCH 0986/1275] Auto-release 0.0.929 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c44dc5869c01..fd90d64213a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.928 +MARKETING_VERSION = 0.0.929 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a00e4bb5b34f038e18409db1ff411e97db3e0a16 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 31 Jul 2023 00:48:47 +0000 Subject: [PATCH 0987/1275] Auto-release 0.0.930 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fd90d64213a7..6b3dece64a27 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.929 +MARKETING_VERSION = 0.0.930 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9e4ba49db4fbd70c714953a948e9d27f4ca28a6e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 31 Jul 2023 06:12:15 +0000 Subject: [PATCH 0988/1275] Auto-release 0.0.931 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6b3dece64a27..cd51aa56ee89 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.930 +MARKETING_VERSION = 0.0.931 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b4b2d0278b3af67423a1b9d9670a5c7ba54fe62e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 31 Jul 2023 12:18:00 +0000 Subject: [PATCH 0989/1275] Auto-release 0.0.932 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd51aa56ee89..f462b4a01654 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.931 +MARKETING_VERSION = 0.0.932 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ccce06d20be47f09256ff3ef8a8627b231870085 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 31 Jul 2023 18:11:47 +0000 Subject: [PATCH 0990/1275] Auto-release 0.0.933 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f462b4a01654..9c7c332c8782 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.932 +MARKETING_VERSION = 0.0.933 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 10fa8ae72842a97dfd17becd65cdeddb625ee68a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 1 Aug 2023 00:50:54 +0000 Subject: [PATCH 0991/1275] Auto-release 0.0.934 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9c7c332c8782..843f6de3e4be 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.933 +MARKETING_VERSION = 0.0.934 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6cebf4e7156b86cb751d5c23e7ed4b47039a6a24 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 1 Aug 2023 06:12:59 +0000 Subject: [PATCH 0992/1275] Auto-release 0.0.935 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 843f6de3e4be..adf663154446 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.934 +MARKETING_VERSION = 0.0.935 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 321654ee9145dd03396159b17eca6a1d00f53886 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 1 Aug 2023 12:17:10 +0000 Subject: [PATCH 0993/1275] Auto-release 0.0.936 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index adf663154446..489395cd8f11 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.935 +MARKETING_VERSION = 0.0.936 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5b921faf7e00bef467cc3cb6145345644322017d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 1 Aug 2023 18:11:23 +0000 Subject: [PATCH 0994/1275] Auto-release 0.0.937 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 489395cd8f11..42c2bbce03c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.936 +MARKETING_VERSION = 0.0.937 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 464cda73621f61d569664cfa03ce57bcd440185d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 2 Aug 2023 00:46:00 +0000 Subject: [PATCH 0995/1275] Auto-release 0.0.938 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 42c2bbce03c8..80143398ffc4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.937 +MARKETING_VERSION = 0.0.938 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4e0275f550133f110e85dc4103dc03b869287e0b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 2 Aug 2023 06:11:41 +0000 Subject: [PATCH 0996/1275] Auto-release 0.0.939 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 80143398ffc4..2cda883413a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.938 +MARKETING_VERSION = 0.0.939 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e7f023a9fb214d5be8141d3381cc0cf0e8d1d6e0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 2 Aug 2023 12:16:20 +0000 Subject: [PATCH 0997/1275] Auto-release 0.0.940 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2cda883413a7..15588fd57134 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.939 +MARKETING_VERSION = 0.0.940 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 48727b8c4fe41b412ea80ff49ed8d38049cc4967 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 2 Aug 2023 18:10:37 +0000 Subject: [PATCH 0998/1275] Auto-release 0.0.941 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 15588fd57134..c457eda8fb89 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.940 +MARKETING_VERSION = 0.0.941 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 81450ff5ca6a614bd92f794a37e332f45ab9779a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 3 Aug 2023 00:45:54 +0000 Subject: [PATCH 0999/1275] Auto-release 0.0.942 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c457eda8fb89..786dbf8039a5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.941 +MARKETING_VERSION = 0.0.942 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7b3e8404973b3e239f6f6a1ba3a279d2b70b522e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 3 Aug 2023 06:11:26 +0000 Subject: [PATCH 1000/1275] Auto-release 0.0.943 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 786dbf8039a5..e69f19282479 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.942 +MARKETING_VERSION = 0.0.943 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 939c349d2deb4fad5ac871f672ce979bade0ebef Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 3 Aug 2023 12:17:04 +0000 Subject: [PATCH 1001/1275] Auto-release 0.0.944 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e69f19282479..a722cf5a2cc3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.943 +MARKETING_VERSION = 0.0.944 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5081f953353e06477d1c6332611754a7c8ccf5a7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 3 Aug 2023 18:11:18 +0000 Subject: [PATCH 1002/1275] Auto-release 0.0.945 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a722cf5a2cc3..6296fa82b708 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.944 +MARKETING_VERSION = 0.0.945 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1b3ff4837dd771f67e3943ab356f34a863750ed9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 4 Aug 2023 00:45:35 +0000 Subject: [PATCH 1003/1275] Auto-release 0.0.946 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6296fa82b708..59d3ba3da0e4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.945 +MARKETING_VERSION = 0.0.946 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6ebac1ac3be38e3cc797488380b9fea182ff0bcf Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 4 Aug 2023 06:11:51 +0000 Subject: [PATCH 1004/1275] Auto-release 0.0.947 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 59d3ba3da0e4..99e31106ec25 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.946 +MARKETING_VERSION = 0.0.947 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c6498b32f69c455c09134487e34f96327bf0d2dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 4 Aug 2023 12:16:23 +0000 Subject: [PATCH 1005/1275] Auto-release 0.0.948 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 99e31106ec25..5d325d7c9f2c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.947 +MARKETING_VERSION = 0.0.948 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6f2aff76fd64cf3d1ba716c09a6f3bca3dc2b305 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 4 Aug 2023 18:10:59 +0000 Subject: [PATCH 1006/1275] Auto-release 0.0.949 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5d325d7c9f2c..22ccd2d24222 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.948 +MARKETING_VERSION = 0.0.949 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5d913e1716ea6b67f4af5c9710df552aca551851 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 5 Aug 2023 00:44:05 +0000 Subject: [PATCH 1007/1275] Auto-release 0.0.950 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 22ccd2d24222..e4d126da0d29 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.949 +MARKETING_VERSION = 0.0.950 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 92de24c72f51ce01edc5eab64bfa0151f0e2b901 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 5 Aug 2023 06:10:40 +0000 Subject: [PATCH 1008/1275] Auto-release 0.0.951 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e4d126da0d29..8ee3e9f9fb70 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.950 +MARKETING_VERSION = 0.0.951 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 224bfff3b489acd92823a4c414e9af6610b8bee2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 5 Aug 2023 12:14:48 +0000 Subject: [PATCH 1009/1275] Auto-release 0.0.952 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8ee3e9f9fb70..1fe61f4cee03 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.951 +MARKETING_VERSION = 0.0.952 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 16ebe3dd6d3daa32b8b6cf8ee6bef7ffb0f643d2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 5 Aug 2023 18:09:48 +0000 Subject: [PATCH 1010/1275] Auto-release 0.0.953 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1fe61f4cee03..5525a837a177 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.952 +MARKETING_VERSION = 0.0.953 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 60bf452bec32aeefccbf5549ff6fcece2929fbb8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 6 Aug 2023 00:41:41 +0000 Subject: [PATCH 1011/1275] Auto-release 0.0.954 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5525a837a177..1661a6d2fbce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.953 +MARKETING_VERSION = 0.0.954 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 689d252180553ec90db5f7170493c8d0bf177dd3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 6 Aug 2023 06:11:14 +0000 Subject: [PATCH 1012/1275] Auto-release 0.0.955 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1661a6d2fbce..e636dc4a832f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.954 +MARKETING_VERSION = 0.0.955 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a83afedb0f7fbe85568049dd35ddf97907a52f3a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 6 Aug 2023 12:14:15 +0000 Subject: [PATCH 1013/1275] Auto-release 0.0.956 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e636dc4a832f..613c3526a914 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.955 +MARKETING_VERSION = 0.0.956 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5f7fc07bae6738396e55a22e95ef4a9a4cdc89fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 6 Aug 2023 18:10:00 +0000 Subject: [PATCH 1014/1275] Auto-release 0.0.957 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 613c3526a914..e06165421be8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.956 +MARKETING_VERSION = 0.0.957 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From febff08a889309b3080d479ae74cababb62f2568 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 7 Aug 2023 00:45:53 +0000 Subject: [PATCH 1015/1275] Auto-release 0.0.958 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e06165421be8..cd0c2a6f3028 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.957 +MARKETING_VERSION = 0.0.958 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From add0d3eb0ef74970984d841c270818d9b77b6b5a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 7 Aug 2023 06:12:15 +0000 Subject: [PATCH 1016/1275] Auto-release 0.0.959 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd0c2a6f3028..7eaf4c2ea90f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.958 +MARKETING_VERSION = 0.0.959 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 48bf7c716d64934a210fbae0b6eb02de93275c33 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 7 Aug 2023 12:16:28 +0000 Subject: [PATCH 1017/1275] Auto-release 0.0.960 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7eaf4c2ea90f..9e7251c0a1c9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.959 +MARKETING_VERSION = 0.0.960 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e143d3912ae645b5b7783b5d98a6fd62f7d4b313 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 7 Aug 2023 18:11:20 +0000 Subject: [PATCH 1018/1275] Auto-release 0.0.961 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e7251c0a1c9..18638ac09c3a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.960 +MARKETING_VERSION = 0.0.961 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 037b7c6675c0f99d87411360b4f253e6ca572e87 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 8 Aug 2023 00:44:25 +0000 Subject: [PATCH 1019/1275] Auto-release 0.0.962 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 18638ac09c3a..d1c850b324d1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.961 +MARKETING_VERSION = 0.0.962 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 251723c9ca9158fe0078122868172c3c88581d64 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 8 Aug 2023 06:11:55 +0000 Subject: [PATCH 1020/1275] Auto-release 0.0.963 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d1c850b324d1..ecbe9366e005 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.962 +MARKETING_VERSION = 0.0.963 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fe7dd3c1923961efd6bf9b6a73c2e8015d7e298c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 8 Aug 2023 12:16:02 +0000 Subject: [PATCH 1021/1275] Auto-release 0.0.964 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ecbe9366e005..28b29bed56eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.963 +MARKETING_VERSION = 0.0.964 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 816454bcb47563dc1bbb18855ccf0a2b7954eba4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 8 Aug 2023 18:12:11 +0000 Subject: [PATCH 1022/1275] Auto-release 0.0.965 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 28b29bed56eb..2176f63139c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.964 +MARKETING_VERSION = 0.0.965 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f8b115f05609bbe7c51d5140d0b4985dc5663bbf Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 9 Aug 2023 00:45:59 +0000 Subject: [PATCH 1023/1275] Auto-release 0.0.966 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2176f63139c8..d5b06313a9ec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.965 +MARKETING_VERSION = 0.0.966 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0edbc5439d922237cac991871b88e4865169a2d9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 9 Aug 2023 06:12:26 +0000 Subject: [PATCH 1024/1275] Auto-release 0.0.967 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d5b06313a9ec..74530f9aa63c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.966 +MARKETING_VERSION = 0.0.967 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 57ca7b566949a296b93bab9d72c5bfef4f8797a6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 9 Aug 2023 12:16:58 +0000 Subject: [PATCH 1025/1275] Auto-release 0.0.968 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 74530f9aa63c..98e67a0eb7b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.967 +MARKETING_VERSION = 0.0.968 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dc49327ee70a5202021eb88c5ef69e4eb0f191fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 9 Aug 2023 18:12:16 +0000 Subject: [PATCH 1026/1275] Auto-release 0.0.969 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 98e67a0eb7b0..6db03244bf11 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.968 +MARKETING_VERSION = 0.0.969 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 90203bb0ceac86b3825f63ddedf1692de6ca321e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 10 Aug 2023 00:47:16 +0000 Subject: [PATCH 1027/1275] Auto-release 0.0.970 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6db03244bf11..46d48da2c13e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.969 +MARKETING_VERSION = 0.0.970 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bc06e23efcdf518c0bf8c7d989fcaab046d4616c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 10 Aug 2023 06:12:15 +0000 Subject: [PATCH 1028/1275] Auto-release 0.0.971 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 46d48da2c13e..23481e02367e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.970 +MARKETING_VERSION = 0.0.971 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1cf778e96d60b4c52e9d9b43c08aacd6436ae726 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 10 Aug 2023 12:17:46 +0000 Subject: [PATCH 1029/1275] Auto-release 0.0.972 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 23481e02367e..21801caa1a2f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.971 +MARKETING_VERSION = 0.0.972 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9927fa6fe30451f1a75266205e3c9c2763799451 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 10 Aug 2023 18:10:40 +0000 Subject: [PATCH 1030/1275] Auto-release 0.0.973 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 21801caa1a2f..86d7c7f548cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.972 +MARKETING_VERSION = 0.0.973 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bf8e3b16cd099434b5508384d263e20b84a78da0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 11 Aug 2023 00:36:27 +0000 Subject: [PATCH 1031/1275] Auto-release 0.0.974 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 86d7c7f548cc..0e607f7cf0d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.973 +MARKETING_VERSION = 0.0.974 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f99bbd20fcc8f16f63fca7323a335e93964523b0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 11 Aug 2023 06:11:48 +0000 Subject: [PATCH 1032/1275] Auto-release 0.0.975 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0e607f7cf0d2..cefb4def8a72 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.974 +MARKETING_VERSION = 0.0.975 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 84d75c3f0952d2030cff9a005b9172793c3cc189 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 11 Aug 2023 12:15:00 +0000 Subject: [PATCH 1033/1275] Auto-release 0.0.976 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cefb4def8a72..e8f57f95c6c7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.975 +MARKETING_VERSION = 0.0.976 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a07a4b01a42d33711f325c111b6a6b53ac989906 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 11 Aug 2023 18:10:48 +0000 Subject: [PATCH 1034/1275] Auto-release 0.0.977 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e8f57f95c6c7..c0b963af06e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.976 +MARKETING_VERSION = 0.0.977 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5e8119b58142b9353adede91db1ab73ac0e1c919 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 12 Aug 2023 00:36:12 +0000 Subject: [PATCH 1035/1275] Auto-release 0.0.978 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c0b963af06e5..e9268012af88 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.977 +MARKETING_VERSION = 0.0.978 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f262a6bcd1f0d0102c3c2906066f7e02154af10b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 12 Aug 2023 06:10:31 +0000 Subject: [PATCH 1036/1275] Auto-release 0.0.979 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e9268012af88..22c65dc4e6b3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.978 +MARKETING_VERSION = 0.0.979 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aceaebd9c531877d830fd54b2e24a871c1ea9352 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 12 Aug 2023 12:14:18 +0000 Subject: [PATCH 1037/1275] Auto-release 0.0.980 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 22c65dc4e6b3..df3e4a2ea3c0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.979 +MARKETING_VERSION = 0.0.980 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 007991d15af97cf4fa0de34b69effef6e819f0d1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 12 Aug 2023 18:09:37 +0000 Subject: [PATCH 1038/1275] Auto-release 0.0.981 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df3e4a2ea3c0..94cb13bda501 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.980 +MARKETING_VERSION = 0.0.981 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7c434b992701425c8231fc493654d40fbea01e15 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 13 Aug 2023 00:38:59 +0000 Subject: [PATCH 1039/1275] Auto-release 0.0.982 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 94cb13bda501..813a430dc16b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.981 +MARKETING_VERSION = 0.0.982 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 74d831bca446a419c7fc6a04c0c1122513e03a67 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 13 Aug 2023 06:10:06 +0000 Subject: [PATCH 1040/1275] Auto-release 0.0.983 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 813a430dc16b..1efac1841107 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.982 +MARKETING_VERSION = 0.0.983 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a0ce37703d4f3fdbc1f2c28bae40eb1282a532bf Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 13 Aug 2023 12:14:01 +0000 Subject: [PATCH 1041/1275] Auto-release 0.0.984 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1efac1841107..2f879513d579 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.983 +MARKETING_VERSION = 0.0.984 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7d256772dd00170a9fd741e6dca770fc09de671b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 13 Aug 2023 18:10:05 +0000 Subject: [PATCH 1042/1275] Auto-release 0.0.985 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f879513d579..2d9234120e24 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.984 +MARKETING_VERSION = 0.0.985 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 70c0cd44ea34a87f23b555b3aded3232fa89eca4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 14 Aug 2023 00:37:49 +0000 Subject: [PATCH 1043/1275] Auto-release 0.0.986 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d9234120e24..2b78446a1f7e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.985 +MARKETING_VERSION = 0.0.986 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b53ea39b5978f8adfa37e2b31d1c35c78867af1f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 14 Aug 2023 06:11:40 +0000 Subject: [PATCH 1044/1275] Auto-release 0.0.987 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2b78446a1f7e..5c7f7e42734e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.986 +MARKETING_VERSION = 0.0.987 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9df3f39aa0ea139dd73576d261b6371a6d275720 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 14 Aug 2023 12:16:48 +0000 Subject: [PATCH 1045/1275] Auto-release 0.0.988 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5c7f7e42734e..8dddbcb2d3d5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.987 +MARKETING_VERSION = 0.0.988 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 993bdcfac970741cefd3b61c0b00a7c5a2e073fe Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 14 Aug 2023 18:10:56 +0000 Subject: [PATCH 1046/1275] Auto-release 0.0.989 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8dddbcb2d3d5..fd3f1b307ac5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.988 +MARKETING_VERSION = 0.0.989 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f14b8d60e4aa1c6623c055a44241b4c301ff09ee Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 15 Aug 2023 00:37:08 +0000 Subject: [PATCH 1047/1275] Auto-release 0.0.990 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fd3f1b307ac5..0df9d304ecc4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.989 +MARKETING_VERSION = 0.0.990 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c8a15937ef191ca1cf41f386cbbf26a84b5e89b1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 15 Aug 2023 06:11:22 +0000 Subject: [PATCH 1048/1275] Auto-release 0.0.991 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0df9d304ecc4..43468c7757cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.990 +MARKETING_VERSION = 0.0.991 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 35dd462e5d1adb62bcd40bae0c8bb652eb00d3db Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 15 Aug 2023 12:15:40 +0000 Subject: [PATCH 1049/1275] Auto-release 0.0.992 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 43468c7757cc..4d62dcf67869 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.991 +MARKETING_VERSION = 0.0.992 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b8c0cc26798cd10d093b9587bdd61d48ab1219ae Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 15 Aug 2023 18:10:26 +0000 Subject: [PATCH 1050/1275] Auto-release 0.0.993 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4d62dcf67869..581d644d3abf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.992 +MARKETING_VERSION = 0.0.993 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fdf65ff0efbdcfd303a316f6398f2e92191ebcff Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 16 Aug 2023 00:37:06 +0000 Subject: [PATCH 1051/1275] Auto-release 0.0.994 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 581d644d3abf..6d13d2860e31 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.993 +MARKETING_VERSION = 0.0.994 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e09b558c8df8820f94db3e1e3c563d765e7ea0ff Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 16 Aug 2023 06:11:36 +0000 Subject: [PATCH 1052/1275] Auto-release 0.0.995 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6d13d2860e31..cf58fc27fcd3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.994 +MARKETING_VERSION = 0.0.995 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 771b9af9218c5fd70f74b72a266bd2b3969c274b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 16 Aug 2023 12:15:16 +0000 Subject: [PATCH 1053/1275] Auto-release 0.0.996 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf58fc27fcd3..9f9e6e607975 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.995 +MARKETING_VERSION = 0.0.996 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 642ec99b471b7e28391cfeaa8ed99f59e78fa183 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 16 Aug 2023 18:10:57 +0000 Subject: [PATCH 1054/1275] Auto-release 0.0.997 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9f9e6e607975..75dbc2e9c786 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.996 +MARKETING_VERSION = 0.0.997 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a2618c82772c14d815b9b9c97c5ab73d9263e581 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 17 Aug 2023 00:36:34 +0000 Subject: [PATCH 1055/1275] Auto-release 0.0.998 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 75dbc2e9c786..b30762e584de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.997 +MARKETING_VERSION = 0.0.998 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 30b036c545e5f5fcb48f45500fdf8a1f7c189019 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 17 Aug 2023 06:11:25 +0000 Subject: [PATCH 1056/1275] Auto-release 0.0.999 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b30762e584de..31ebf11b2f6d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.998 +MARKETING_VERSION = 0.0.999 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2aac95df82603f330aa8ac364f140a7b7096b262 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 17 Aug 2023 12:15:04 +0000 Subject: [PATCH 1057/1275] Auto-release 0.0.1000 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 31ebf11b2f6d..78c68fe1aaeb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.999 +MARKETING_VERSION = 0.0.1000 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 616eecf4d682d7f15feba8bc2022f72fe532c552 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 17 Aug 2023 18:11:08 +0000 Subject: [PATCH 1058/1275] Auto-release 0.0.1001 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 78c68fe1aaeb..c9631364d2ea 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1000 +MARKETING_VERSION = 0.0.1001 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b59b0fc585ee7215514e344d8e645e0bcd0fb749 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 18 Aug 2023 00:37:15 +0000 Subject: [PATCH 1059/1275] Auto-release 0.0.1002 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c9631364d2ea..c6e95ae1f6f6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1001 +MARKETING_VERSION = 0.0.1002 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 84ae14a16dd3413bc63b2ba653fc2abc4247ea53 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 18 Aug 2023 06:11:42 +0000 Subject: [PATCH 1060/1275] Auto-release 0.0.1003 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c6e95ae1f6f6..fb52e15d951e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1002 +MARKETING_VERSION = 0.0.1003 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5e0a97507b1720e4aacb1470e68f62934e759516 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 18 Aug 2023 12:15:24 +0000 Subject: [PATCH 1061/1275] Auto-release 0.0.1004 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb52e15d951e..f2434e82afc0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1003 +MARKETING_VERSION = 0.0.1004 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d76d8ffbdb8be3d599a293c9b06db1ed66ef99f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 18 Aug 2023 18:10:45 +0000 Subject: [PATCH 1062/1275] Auto-release 0.0.1005 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f2434e82afc0..b29fe6363ebe 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1004 +MARKETING_VERSION = 0.0.1005 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7292214c8f619030b7eb21cae578b76bc4fd081f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 19 Aug 2023 00:35:25 +0000 Subject: [PATCH 1063/1275] Auto-release 0.0.1006 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b29fe6363ebe..94d4d0e886a4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1005 +MARKETING_VERSION = 0.0.1006 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 89538c314a481b3218806de1c5e0b41ea33793c1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 19 Aug 2023 06:10:35 +0000 Subject: [PATCH 1064/1275] Auto-release 0.0.1007 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 94d4d0e886a4..6d6db108a282 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1006 +MARKETING_VERSION = 0.0.1007 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2348e80bb7d47891d7fb956e927bb515653a376f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 19 Aug 2023 12:13:41 +0000 Subject: [PATCH 1065/1275] Auto-release 0.0.1008 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6d6db108a282..d62c4bcf8ad8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1007 +MARKETING_VERSION = 0.0.1008 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e5e3ae4f1c3ba506686f5a280e8be49e3ef32a17 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 19 Aug 2023 18:09:30 +0000 Subject: [PATCH 1066/1275] Auto-release 0.0.1009 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d62c4bcf8ad8..68d578671f65 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1008 +MARKETING_VERSION = 0.0.1009 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e68e23c2b306ce82592907c9d06595574dc21e0d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 20 Aug 2023 00:38:49 +0000 Subject: [PATCH 1067/1275] Auto-release 0.0.1010 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 68d578671f65..20b0443f85a9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1009 +MARKETING_VERSION = 0.0.1010 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f75a1557544e82c9462efd0853083d22f10255eb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 20 Aug 2023 06:10:10 +0000 Subject: [PATCH 1068/1275] Auto-release 0.0.1011 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 20b0443f85a9..dbc26427e948 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1010 +MARKETING_VERSION = 0.0.1011 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f984512478ab2988fba9a1b5a0f1417ac698d36c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 20 Aug 2023 12:13:49 +0000 Subject: [PATCH 1069/1275] Auto-release 0.0.1012 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dbc26427e948..b88fe80cf5b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1011 +MARKETING_VERSION = 0.0.1012 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5a2523f119c08777c5b7e4daf48e8f1579fccb5a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 20 Aug 2023 18:09:36 +0000 Subject: [PATCH 1070/1275] Auto-release 0.0.1013 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b88fe80cf5b0..1ae340f67891 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1012 +MARKETING_VERSION = 0.0.1013 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 75d7819eb677a41ed1b463a92113a7698c5ada81 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 21 Aug 2023 00:38:05 +0000 Subject: [PATCH 1071/1275] Auto-release 0.0.1014 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ae340f67891..2623422056b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1013 +MARKETING_VERSION = 0.0.1014 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 216a744c16b5c24527f6dcac6fdd403c8d9424c0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 21 Aug 2023 06:11:45 +0000 Subject: [PATCH 1072/1275] Auto-release 0.0.1015 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2623422056b0..16250f5405ef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1014 +MARKETING_VERSION = 0.0.1015 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ce43fe56733faa27a8583a9bafa73d98be194f76 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 21 Aug 2023 12:15:38 +0000 Subject: [PATCH 1073/1275] Auto-release 0.0.1016 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 16250f5405ef..29f3120c396a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1015 +MARKETING_VERSION = 0.0.1016 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c06d0a8891e3f7ff85816487243194be48e017a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 21 Aug 2023 18:09:35 +0000 Subject: [PATCH 1074/1275] Auto-release 0.0.1017 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 29f3120c396a..a6a4ca6cb8ed 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1016 +MARKETING_VERSION = 0.0.1017 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 443d730f4e27329fa49c682337e58dea486c46a7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 22 Aug 2023 00:37:44 +0000 Subject: [PATCH 1075/1275] Auto-release 0.0.1018 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a6a4ca6cb8ed..b25d23fb5784 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1017 +MARKETING_VERSION = 0.0.1018 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 23b89a101ac82ea39a05cdc4c38ad760087945b1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 22 Aug 2023 06:11:31 +0000 Subject: [PATCH 1076/1275] Auto-release 0.0.1019 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b25d23fb5784..bbd13bfb92e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1018 +MARKETING_VERSION = 0.0.1019 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9047a61d7b80f64306d1ee9a1f62976c8e8aa847 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 22 Aug 2023 12:15:38 +0000 Subject: [PATCH 1077/1275] Auto-release 0.0.1020 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bbd13bfb92e5..a7e9cfe2afc2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1019 +MARKETING_VERSION = 0.0.1020 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e63d8d1ce91fd7fd0d50df104f4b7b0eef11c0ae Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 22 Aug 2023 18:10:55 +0000 Subject: [PATCH 1078/1275] Auto-release 0.0.1021 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a7e9cfe2afc2..3fd6373c68b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1020 +MARKETING_VERSION = 0.0.1021 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 82bf7c769d20b8ac10516ef156ea5c2de0d8ddbd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 23 Aug 2023 00:36:53 +0000 Subject: [PATCH 1079/1275] Auto-release 0.0.1022 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3fd6373c68b9..a7f60cd35155 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1021 +MARKETING_VERSION = 0.0.1022 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 255ffdff987e40cc43de31b2556337cccb51cd08 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 23 Aug 2023 06:11:11 +0000 Subject: [PATCH 1080/1275] Auto-release 0.0.1023 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a7f60cd35155..f514d9e72ed1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1022 +MARKETING_VERSION = 0.0.1023 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e7c9a8543537eab3d697c2c25499ac5a89b6af2d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 23 Aug 2023 12:15:45 +0000 Subject: [PATCH 1081/1275] Auto-release 0.0.1024 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f514d9e72ed1..c58c6d52c5e1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1023 +MARKETING_VERSION = 0.0.1024 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 56d9eec6e523376a3819cab7ce517f4391db56ed Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 23 Aug 2023 18:10:08 +0000 Subject: [PATCH 1082/1275] Auto-release 0.0.1025 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c58c6d52c5e1..d7d4d21bed5a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1024 +MARKETING_VERSION = 0.0.1025 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d4c6fcc98cc1f5315f607951d1d6e18139191817 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 24 Aug 2023 00:37:09 +0000 Subject: [PATCH 1083/1275] Auto-release 0.0.1026 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d7d4d21bed5a..a2f21f24fb1b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1025 +MARKETING_VERSION = 0.0.1026 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ea144d88732a3a347124db71700c870f56e19cbb Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 24 Aug 2023 06:11:38 +0000 Subject: [PATCH 1084/1275] Auto-release 0.0.1027 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a2f21f24fb1b..538c490a8a40 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1026 +MARKETING_VERSION = 0.0.1027 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 11184bafa61421cc42264780e0de85a7203872b3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 24 Aug 2023 12:15:51 +0000 Subject: [PATCH 1085/1275] Auto-release 0.0.1028 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 538c490a8a40..958aa7f1a7b5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1027 +MARKETING_VERSION = 0.0.1028 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fed3c5de671ca4f9aabdf22e57cb2f428114ac42 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 24 Aug 2023 18:11:00 +0000 Subject: [PATCH 1086/1275] Auto-release 0.0.1029 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 958aa7f1a7b5..e442c49d5bdd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1028 +MARKETING_VERSION = 0.0.1029 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 67c406e17574725bec94eadae5920f2b9fc69540 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 25 Aug 2023 00:37:35 +0000 Subject: [PATCH 1087/1275] Auto-release 0.0.1030 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e442c49d5bdd..0c9d93ebab45 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1029 +MARKETING_VERSION = 0.0.1030 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8c7a9224407c6a99730eda91f105080eda17114b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 25 Aug 2023 06:11:43 +0000 Subject: [PATCH 1088/1275] Auto-release 0.0.1031 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0c9d93ebab45..99f1ac4811ca 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1030 +MARKETING_VERSION = 0.0.1031 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2ea81a0e6cfe7df49c311f480987c997d5c0110b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 25 Aug 2023 12:15:40 +0000 Subject: [PATCH 1089/1275] Auto-release 0.0.1032 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 99f1ac4811ca..e7bc3e67f998 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1031 +MARKETING_VERSION = 0.0.1032 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f8094d07660d9c6e7d3d61b2e152f4be9d145eac Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 25 Aug 2023 18:10:59 +0000 Subject: [PATCH 1090/1275] Auto-release 0.0.1033 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e7bc3e67f998..d458c7ba1861 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1032 +MARKETING_VERSION = 0.0.1033 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 710d625913a676957d4e99cabcb65c4d4f9357f6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 26 Aug 2023 00:36:11 +0000 Subject: [PATCH 1091/1275] Auto-release 0.0.1034 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d458c7ba1861..e4ff7a87ca02 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1033 +MARKETING_VERSION = 0.0.1034 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ea60204b01977113281e1a72834d160b3b553316 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 26 Aug 2023 06:10:28 +0000 Subject: [PATCH 1092/1275] Auto-release 0.0.1035 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e4ff7a87ca02..a6229b869ade 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1034 +MARKETING_VERSION = 0.0.1035 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ccaafef70a124ce3a42fb82baa7d24c267999212 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 26 Aug 2023 12:13:57 +0000 Subject: [PATCH 1093/1275] Auto-release 0.0.1036 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a6229b869ade..74dc283da4ee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1035 +MARKETING_VERSION = 0.0.1036 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8b453124cd1b3d2b6c5afc3fd5b7f6e722049069 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 26 Aug 2023 18:10:13 +0000 Subject: [PATCH 1094/1275] Auto-release 0.0.1037 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 74dc283da4ee..5cfea533602f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1036 +MARKETING_VERSION = 0.0.1037 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f51c54b1017d2b173448dd88b0f2173b3ce64280 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 27 Aug 2023 00:39:43 +0000 Subject: [PATCH 1095/1275] Auto-release 0.0.1038 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5cfea533602f..b87008d30569 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1037 +MARKETING_VERSION = 0.0.1038 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 05c9395240622a5cb58720249a5f02e2a79b2b29 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 27 Aug 2023 06:11:24 +0000 Subject: [PATCH 1096/1275] Auto-release 0.0.1039 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b87008d30569..7b1d27213c66 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1038 +MARKETING_VERSION = 0.0.1039 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9f4916ca57c2141096242bd1c137bbbe5e1ce1af Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 27 Aug 2023 12:14:34 +0000 Subject: [PATCH 1097/1275] Auto-release 0.0.1040 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7b1d27213c66..2271fc1727d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1039 +MARKETING_VERSION = 0.0.1040 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aca2e1c16f377f3cacfb2caffc0225d7c30699da Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 27 Aug 2023 18:10:12 +0000 Subject: [PATCH 1098/1275] Auto-release 0.0.1041 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2271fc1727d0..bf7598beebcb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1040 +MARKETING_VERSION = 0.0.1041 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b104b806ee0d1e2bf442367ed330793aeae435ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 28 Aug 2023 00:38:09 +0000 Subject: [PATCH 1099/1275] Auto-release 0.0.1042 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bf7598beebcb..d2a4fed6a132 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1041 +MARKETING_VERSION = 0.0.1042 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9673ab4ca27899014f6d9bcc13edef886b414656 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 28 Aug 2023 06:12:24 +0000 Subject: [PATCH 1100/1275] Auto-release 0.0.1043 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d2a4fed6a132..fb5dd9aeb76f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1042 +MARKETING_VERSION = 0.0.1043 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e2bd986a9c94415dd0528da0d9cc900492292276 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 28 Aug 2023 12:16:39 +0000 Subject: [PATCH 1101/1275] Auto-release 0.0.1044 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb5dd9aeb76f..53dd8f5fc217 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1043 +MARKETING_VERSION = 0.0.1044 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a20583b2fd84097c3fd771aeff9fc34a7e8b81e5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 28 Aug 2023 18:11:41 +0000 Subject: [PATCH 1102/1275] Auto-release 0.0.1045 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 53dd8f5fc217..3f5ca3c80e40 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1044 +MARKETING_VERSION = 0.0.1045 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1af366ec6ab93969f5842328af457037f3aea102 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 29 Aug 2023 00:38:01 +0000 Subject: [PATCH 1103/1275] Auto-release 0.0.1046 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f5ca3c80e40..07f78c23aeb7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1045 +MARKETING_VERSION = 0.0.1046 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b316a7c6ef60d1665c0249f2aa60ee6074958751 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 29 Aug 2023 06:12:05 +0000 Subject: [PATCH 1104/1275] Auto-release 0.0.1047 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 07f78c23aeb7..95ddba65e200 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1046 +MARKETING_VERSION = 0.0.1047 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9b4e117f54d1d17283723798ee189e3b9b1f1e45 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 29 Aug 2023 12:16:16 +0000 Subject: [PATCH 1105/1275] Auto-release 0.0.1048 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 95ddba65e200..450c688f2bbe 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1047 +MARKETING_VERSION = 0.0.1048 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c801dc51d9d1464a029acda386d40efe8d7b07af Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 29 Aug 2023 18:11:02 +0000 Subject: [PATCH 1106/1275] Auto-release 0.0.1049 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 450c688f2bbe..0375ce9d7959 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1048 +MARKETING_VERSION = 0.0.1049 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e139373f986ed4d4ed42e4034c2592dde976bead Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 30 Aug 2023 00:37:44 +0000 Subject: [PATCH 1107/1275] Auto-release 0.0.1050 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0375ce9d7959..e41df8f9ad3c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1049 +MARKETING_VERSION = 0.0.1050 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 56f979d97b1b5b01719bba2799fe97e3bf2a173c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 30 Aug 2023 06:11:39 +0000 Subject: [PATCH 1108/1275] Auto-release 0.0.1051 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e41df8f9ad3c..26d7f76fe349 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1050 +MARKETING_VERSION = 0.0.1051 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b3c7c274ccee7467651a09eaa61e249b372bfa67 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 30 Aug 2023 12:16:02 +0000 Subject: [PATCH 1109/1275] Auto-release 0.0.1052 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 26d7f76fe349..490c24ceb52c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1051 +MARKETING_VERSION = 0.0.1052 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4eac4be2bfca495d64bbe081c3b206d5ffc0392e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 30 Aug 2023 18:10:59 +0000 Subject: [PATCH 1110/1275] Auto-release 0.0.1053 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 490c24ceb52c..f5e14f09f273 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1052 +MARKETING_VERSION = 0.0.1053 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 64a23c9907af1b954676a52098782fd34072531a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 31 Aug 2023 00:38:14 +0000 Subject: [PATCH 1111/1275] Auto-release 0.0.1054 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f5e14f09f273..e71f6dba8a1c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1053 +MARKETING_VERSION = 0.0.1054 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1285d8c5f2f781af144e03b5882b8c9a08d06108 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 31 Aug 2023 06:11:53 +0000 Subject: [PATCH 1112/1275] Auto-release 0.0.1055 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e71f6dba8a1c..db788f39f183 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1054 +MARKETING_VERSION = 0.0.1055 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e521eea609941ae9bcedde1e2977ba7f13aa538f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 31 Aug 2023 12:16:00 +0000 Subject: [PATCH 1113/1275] Auto-release 0.0.1056 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index db788f39f183..f33216857de8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1055 +MARKETING_VERSION = 0.0.1056 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 48d5d7993bad0cbd2d7f885782ab3db9e615461c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 31 Aug 2023 18:10:55 +0000 Subject: [PATCH 1114/1275] Auto-release 0.0.1057 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f33216857de8..dded90d5d1e2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1056 +MARKETING_VERSION = 0.0.1057 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 219fb1883773af398a25295c713a5172b9956c32 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Sep 2023 00:40:39 +0000 Subject: [PATCH 1115/1275] Auto-release 0.0.1058 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dded90d5d1e2..a4241c93a7a5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1057 +MARKETING_VERSION = 0.0.1058 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ad01b37e6bc8246a38dd147a69ecb5a88ab968ae Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Sep 2023 06:12:07 +0000 Subject: [PATCH 1116/1275] Auto-release 0.0.1059 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a4241c93a7a5..3af70169bab2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1058 +MARKETING_VERSION = 0.0.1059 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 239c95885b9dbb641bdadad408d77ec835d2d1a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Sep 2023 12:15:46 +0000 Subject: [PATCH 1117/1275] Auto-release 0.0.1060 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3af70169bab2..4a124f0a50ec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1059 +MARKETING_VERSION = 0.0.1060 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ea59ad809d1eb0fc70262c40e15c5f14f6f6af07 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Sep 2023 18:09:56 +0000 Subject: [PATCH 1118/1275] Auto-release 0.0.1061 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a124f0a50ec..01516c73d893 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1060 +MARKETING_VERSION = 0.0.1061 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 76014ae96a959edb66b2b0d05eebc98e5af6cb40 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Sep 2023 00:36:32 +0000 Subject: [PATCH 1119/1275] Auto-release 0.0.1062 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 01516c73d893..0494dac01d47 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1061 +MARKETING_VERSION = 0.0.1062 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a90acad45b14aee1e7cd123d5b050681d3c237a9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Sep 2023 06:09:59 +0000 Subject: [PATCH 1120/1275] Auto-release 0.0.1063 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0494dac01d47..e70a9264562b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1062 +MARKETING_VERSION = 0.0.1063 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8420cb894c3e7352ca5caa51e3fa7ea773bc8313 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Sep 2023 12:14:04 +0000 Subject: [PATCH 1121/1275] Auto-release 0.0.1064 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e70a9264562b..374c819e7ae2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1063 +MARKETING_VERSION = 0.0.1064 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 085d8fdd9bb78ec9d0fbcd9489f0bc6bd4b0e684 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Sep 2023 18:10:19 +0000 Subject: [PATCH 1122/1275] Auto-release 0.0.1065 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 374c819e7ae2..8fa0d0682a9e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1064 +MARKETING_VERSION = 0.0.1065 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From acba2e98b16a60d42740c7296a9192b0a010ca4c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Sep 2023 00:40:29 +0000 Subject: [PATCH 1123/1275] Auto-release 0.0.1066 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8fa0d0682a9e..b6ce81f1698b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1065 +MARKETING_VERSION = 0.0.1066 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a5aa18e8577c6d979cdc49686b06d69466e40ead Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Sep 2023 06:10:59 +0000 Subject: [PATCH 1124/1275] Auto-release 0.0.1067 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6ce81f1698b..b664ac818753 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1066 +MARKETING_VERSION = 0.0.1067 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b12fd4e0b0274b0e78beff1260b4982265c6c5d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Sep 2023 12:14:34 +0000 Subject: [PATCH 1125/1275] Auto-release 0.0.1068 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b664ac818753..59ed8115869e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1067 +MARKETING_VERSION = 0.0.1068 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 434ae600c44c36774747060b7b1971b2a9d22d65 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Sep 2023 18:10:10 +0000 Subject: [PATCH 1126/1275] Auto-release 0.0.1069 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 59ed8115869e..dfc4cae822cd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1068 +MARKETING_VERSION = 0.0.1069 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 380ea5958b6da36fed4a7173f8ecb24f3c88932b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Sep 2023 00:38:46 +0000 Subject: [PATCH 1127/1275] Auto-release 0.0.1070 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dfc4cae822cd..3b2c5fe49a57 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1069 +MARKETING_VERSION = 0.0.1070 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 15a4ef537ed88d54f65f289685a1ac1919e6f729 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Sep 2023 06:12:52 +0000 Subject: [PATCH 1128/1275] Auto-release 0.0.1071 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3b2c5fe49a57..414fcccaba8a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1070 +MARKETING_VERSION = 0.0.1071 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 60d450b99aef04c425a685cf63f9b5cfd2b2ac28 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Sep 2023 12:16:39 +0000 Subject: [PATCH 1129/1275] Auto-release 0.0.1072 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 414fcccaba8a..e261078cbbc3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1071 +MARKETING_VERSION = 0.0.1072 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ad361502ca278c130afd9c996636a0e20f55b3ad Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Sep 2023 18:10:36 +0000 Subject: [PATCH 1130/1275] Auto-release 0.0.1073 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e261078cbbc3..34e1fc7de18a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1072 +MARKETING_VERSION = 0.0.1073 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 456a7762be2f05a4af3177c392ed0414893c4439 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Sep 2023 00:37:31 +0000 Subject: [PATCH 1131/1275] Auto-release 0.0.1074 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34e1fc7de18a..e58ebbfec267 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1073 +MARKETING_VERSION = 0.0.1074 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c0982ad9d858f27513e81d048dee281b67132861 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Sep 2023 06:11:30 +0000 Subject: [PATCH 1132/1275] Auto-release 0.0.1075 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e58ebbfec267..462d40ec865b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1074 +MARKETING_VERSION = 0.0.1075 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f5e92752b211dcc962eb482d1e49959c99db6616 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Sep 2023 12:15:56 +0000 Subject: [PATCH 1133/1275] Auto-release 0.0.1076 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 462d40ec865b..2b1a829bfe3c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1075 +MARKETING_VERSION = 0.0.1076 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2add4e8672d293e2f4f841c2a25804943ead35d3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Sep 2023 18:11:20 +0000 Subject: [PATCH 1134/1275] Auto-release 0.0.1077 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2b1a829bfe3c..80cac606884b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1076 +MARKETING_VERSION = 0.0.1077 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fa002fe9f31a2f6449992c3303faaedd27b5efb1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Sep 2023 00:37:48 +0000 Subject: [PATCH 1135/1275] Auto-release 0.0.1078 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 80cac606884b..46c353d331a6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1077 +MARKETING_VERSION = 0.0.1078 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4c8a3d5afde659a1e8ac15c1ce92233b39f81fe1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Sep 2023 06:12:00 +0000 Subject: [PATCH 1136/1275] Auto-release 0.0.1079 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 46c353d331a6..5ba6b104e2f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1078 +MARKETING_VERSION = 0.0.1079 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1b41a7ab7a88adfcf019ecae0a6ab603c37effa0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Sep 2023 12:16:30 +0000 Subject: [PATCH 1137/1275] Auto-release 0.0.1080 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5ba6b104e2f1..ec8297b620ec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1079 +MARKETING_VERSION = 0.0.1080 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 44e9ffe22d582e7483fc7beb5781085c5b8c03f1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Sep 2023 18:11:15 +0000 Subject: [PATCH 1138/1275] Auto-release 0.0.1081 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ec8297b620ec..4fe62b518811 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1080 +MARKETING_VERSION = 0.0.1081 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 63287631d4c08b762fb32c95c72346eadfb152cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Sep 2023 00:37:24 +0000 Subject: [PATCH 1139/1275] Auto-release 0.0.1082 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4fe62b518811..5e07a3388800 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1081 +MARKETING_VERSION = 0.0.1082 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 75c1d7c087d2492baef98a98a15ad106c9434842 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Sep 2023 06:11:21 +0000 Subject: [PATCH 1140/1275] Auto-release 0.0.1083 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e07a3388800..2fab03c12f6c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1082 +MARKETING_VERSION = 0.0.1083 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2fd0730912d4b0757b576e9adb1091a8a8e6f67a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Sep 2023 12:16:29 +0000 Subject: [PATCH 1141/1275] Auto-release 0.0.1084 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2fab03c12f6c..3f604af3326f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1083 +MARKETING_VERSION = 0.0.1084 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2ab0eb341f0a2ab8e771085b4ed01b29828db13a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Sep 2023 18:11:38 +0000 Subject: [PATCH 1142/1275] Auto-release 0.0.1085 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f604af3326f..f74c060af4e8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1084 +MARKETING_VERSION = 0.0.1085 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1afabeac951933aa4b44d481bef4215a06a62e48 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Sep 2023 00:38:18 +0000 Subject: [PATCH 1143/1275] Auto-release 0.0.1086 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f74c060af4e8..0fd2cd1a5b4f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1085 +MARKETING_VERSION = 0.0.1086 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 688c99a1eabc0252bf8ebb952c42c5d1dda03491 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Sep 2023 06:11:59 +0000 Subject: [PATCH 1144/1275] Auto-release 0.0.1087 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0fd2cd1a5b4f..88215c7bc378 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1086 +MARKETING_VERSION = 0.0.1087 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From df6e17b7ed212122d4e377f7c1f42fd9f76addfb Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Sep 2023 12:15:26 +0000 Subject: [PATCH 1145/1275] Auto-release 0.0.1088 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 88215c7bc378..a4c6cb485324 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1087 +MARKETING_VERSION = 0.0.1088 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6aa9701a52ead4a02ae2a54d0f15109f72252165 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Sep 2023 18:10:57 +0000 Subject: [PATCH 1146/1275] Auto-release 0.0.1089 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a4c6cb485324..83c234f3740b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1088 +MARKETING_VERSION = 0.0.1089 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f57195b72cf27c4f6631ee92fabd0826033259ea Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Sep 2023 00:36:36 +0000 Subject: [PATCH 1147/1275] Auto-release 0.0.1090 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 83c234f3740b..d0dde03f3747 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1089 +MARKETING_VERSION = 0.0.1090 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ddec4c3d8822a22280a989f2270c7f5758bab94d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Sep 2023 06:10:32 +0000 Subject: [PATCH 1148/1275] Auto-release 0.0.1091 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d0dde03f3747..1a7b90560bb6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1090 +MARKETING_VERSION = 0.0.1091 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 041dbe969ef8a74c05c453d3bca2e429ae0ec8a9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Sep 2023 12:14:29 +0000 Subject: [PATCH 1149/1275] Auto-release 0.0.1092 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1a7b90560bb6..a9e1da34f207 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1091 +MARKETING_VERSION = 0.0.1092 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 28306597648de35fd29a1d37241c260b0f8e4d40 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Sep 2023 18:10:26 +0000 Subject: [PATCH 1150/1275] Auto-release 0.0.1093 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a9e1da34f207..4a4516dc6019 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1092 +MARKETING_VERSION = 0.0.1093 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 55b5caeb47e2cc9b1b8129662b24b1547ec46dfe Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Sep 2023 00:40:15 +0000 Subject: [PATCH 1151/1275] Auto-release 0.0.1094 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a4516dc6019..beddb074370e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1093 +MARKETING_VERSION = 0.0.1094 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 696ebff4d7f4f2f854daf96068334056c09dd3e3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Sep 2023 06:10:44 +0000 Subject: [PATCH 1152/1275] Auto-release 0.0.1095 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index beddb074370e..2eb447b6d326 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1094 +MARKETING_VERSION = 0.0.1095 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From efe14f4e713522c91bf18d000b7c237a152832ce Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Sep 2023 12:14:18 +0000 Subject: [PATCH 1153/1275] Auto-release 0.0.1096 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2eb447b6d326..db1f77199d4e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1095 +MARKETING_VERSION = 0.0.1096 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f8c4d14331d98629bbb7aec13e18ac018e7cdf1b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Sep 2023 18:10:21 +0000 Subject: [PATCH 1154/1275] Auto-release 0.0.1097 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index db1f77199d4e..ce645748ff3c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1096 +MARKETING_VERSION = 0.0.1097 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5ac1c0411622e9686523464b275d494d8bc113d3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Sep 2023 00:38:25 +0000 Subject: [PATCH 1155/1275] Auto-release 0.0.1098 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ce645748ff3c..e3fa47a9d549 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1097 +MARKETING_VERSION = 0.0.1098 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7a036631557ae984258285bac2c28819451dc87d Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Sep 2023 06:12:19 +0000 Subject: [PATCH 1156/1275] Auto-release 0.0.1099 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e3fa47a9d549..666c48d2ae75 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1098 +MARKETING_VERSION = 0.0.1099 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 15c97b7e9b680f72b1810f7377b28d2020322e4b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Sep 2023 12:16:13 +0000 Subject: [PATCH 1157/1275] Auto-release 0.0.1100 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 666c48d2ae75..2771d33a17c3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1099 +MARKETING_VERSION = 0.0.1100 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5b6f01a1511fd329240b704319422bdc60bc0699 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Sep 2023 18:11:38 +0000 Subject: [PATCH 1158/1275] Auto-release 0.0.1101 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2771d33a17c3..95ccc9996e46 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1100 +MARKETING_VERSION = 0.0.1101 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ff923ea78be689ba3938298a1a6ac4e76a940737 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Sep 2023 00:37:07 +0000 Subject: [PATCH 1159/1275] Auto-release 0.0.1102 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 95ccc9996e46..6ee2e27f7723 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1101 +MARKETING_VERSION = 0.0.1102 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c52db9b6f578304d53f2ea5ea2ef2908f0cf20a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Sep 2023 06:12:27 +0000 Subject: [PATCH 1160/1275] Auto-release 0.0.1103 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6ee2e27f7723..f2e43a695e1a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1102 +MARKETING_VERSION = 0.0.1103 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 69fd337b502c6e20cea5826ffe0bcd26b4117916 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Sep 2023 12:16:04 +0000 Subject: [PATCH 1161/1275] Auto-release 0.0.1104 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f2e43a695e1a..9a5e69b1f43b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1103 +MARKETING_VERSION = 0.0.1104 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 39b2a096a67d2ace87c668c2f9cc5a6291222046 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Sep 2023 18:11:27 +0000 Subject: [PATCH 1162/1275] Auto-release 0.0.1105 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9a5e69b1f43b..29a624db0f2c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1104 +MARKETING_VERSION = 0.0.1105 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 003e4a5df32cc7d73619fb63b03289158b8a5665 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Sep 2023 00:38:53 +0000 Subject: [PATCH 1163/1275] Auto-release 0.0.1106 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 29a624db0f2c..9e802993c28f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1105 +MARKETING_VERSION = 0.0.1106 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b201c33d7fda73343634c170fc1e69a9337fe2bd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Sep 2023 06:11:52 +0000 Subject: [PATCH 1164/1275] Auto-release 0.0.1107 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e802993c28f..e2b87e62a307 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1106 +MARKETING_VERSION = 0.0.1107 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 85ca1f4c2a4da56b1b1b0c15e4817de9ceb54dbb Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Sep 2023 12:16:28 +0000 Subject: [PATCH 1165/1275] Auto-release 0.0.1108 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e2b87e62a307..650c1c00ef52 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1107 +MARKETING_VERSION = 0.0.1108 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 95551900812b9426537a74ac05ca7920165500d6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Sep 2023 18:11:39 +0000 Subject: [PATCH 1166/1275] Auto-release 0.0.1109 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 650c1c00ef52..dde941e6b1a9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1108 +MARKETING_VERSION = 0.0.1109 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bff5c43edd2808323f6b0b21fd6b148a3be68f82 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Sep 2023 00:38:14 +0000 Subject: [PATCH 1167/1275] Auto-release 0.0.1110 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dde941e6b1a9..c0945cbda44d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1109 +MARKETING_VERSION = 0.0.1110 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8633b2dc69dabcac7e0aa7806f8377b19decf2bf Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Sep 2023 06:11:48 +0000 Subject: [PATCH 1168/1275] Auto-release 0.0.1111 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c0945cbda44d..cf841b0e8e6a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1110 +MARKETING_VERSION = 0.0.1111 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 257fc66215073f4fdc8fc76480f8f026af67e52d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Sep 2023 12:16:20 +0000 Subject: [PATCH 1169/1275] Auto-release 0.0.1112 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf841b0e8e6a..f29d6e024efb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1111 +MARKETING_VERSION = 0.0.1112 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 89b280938660513045f49fdefe79a78660d35a70 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Sep 2023 18:12:02 +0000 Subject: [PATCH 1170/1275] Auto-release 0.0.1113 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f29d6e024efb..34878b5e182b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1112 +MARKETING_VERSION = 0.0.1113 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 19b7acb72eb37c820ad035fe7ee934d0c6177f40 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Sep 2023 00:38:31 +0000 Subject: [PATCH 1171/1275] Auto-release 0.0.1114 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34878b5e182b..4bbae2697ba6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1113 +MARKETING_VERSION = 0.0.1114 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a22fef5950340975982d7e2d9885dae020bd0bef Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Sep 2023 06:12:10 +0000 Subject: [PATCH 1172/1275] Auto-release 0.0.1115 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4bbae2697ba6..967c560db7d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1114 +MARKETING_VERSION = 0.0.1115 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8f7cc67c91649eb2dc5ea8d4b8f5f0f14abc9347 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Sep 2023 12:16:23 +0000 Subject: [PATCH 1173/1275] Auto-release 0.0.1116 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 967c560db7d2..c7dd8fc03cf3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1115 +MARKETING_VERSION = 0.0.1116 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4a34fc3c46b7a8029ce38c89f21ce2810a121961 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Sep 2023 18:11:10 +0000 Subject: [PATCH 1174/1275] Auto-release 0.0.1117 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c7dd8fc03cf3..b8cc7c6c6b23 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1116 +MARKETING_VERSION = 0.0.1117 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3d7bc115981831c3d5bab09224268d69baf6ac2d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Sep 2023 00:37:04 +0000 Subject: [PATCH 1175/1275] Auto-release 0.0.1118 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b8cc7c6c6b23..1a41dd0f63f0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1117 +MARKETING_VERSION = 0.0.1118 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f4d348fde9cd86c6c0d70e28f50c4fc79611f8d2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Sep 2023 06:11:30 +0000 Subject: [PATCH 1176/1275] Auto-release 0.0.1119 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1a41dd0f63f0..4c713551e0cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1118 +MARKETING_VERSION = 0.0.1119 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8b64bef77e068043752af933668cb2f9d4cfd530 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Sep 2023 12:14:31 +0000 Subject: [PATCH 1177/1275] Auto-release 0.0.1120 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c713551e0cc..386960c56d94 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1119 +MARKETING_VERSION = 0.0.1120 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2774cf4b5c0a6d76307a380fc7cc48b14d848c9d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Sep 2023 18:10:16 +0000 Subject: [PATCH 1178/1275] Auto-release 0.0.1121 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 386960c56d94..ae759592bf61 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1120 +MARKETING_VERSION = 0.0.1121 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 01f9b87f46a182fc4c78f759614ca44a048b8d55 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Sep 2023 00:41:35 +0000 Subject: [PATCH 1179/1275] Auto-release 0.0.1122 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ae759592bf61..a29324c22e78 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1121 +MARKETING_VERSION = 0.0.1122 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 870c18bfb255c138628fbec9ad7667a63eff019a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Sep 2023 06:11:03 +0000 Subject: [PATCH 1180/1275] Auto-release 0.0.1123 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a29324c22e78..81eddec827e6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1122 +MARKETING_VERSION = 0.0.1123 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 50ca049221d5ca8d1e536c038e94aebe19689dc1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Sep 2023 12:14:31 +0000 Subject: [PATCH 1181/1275] Auto-release 0.0.1124 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 81eddec827e6..f9657cd0893c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1123 +MARKETING_VERSION = 0.0.1124 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ea2c59db5ed5f84d6991e5eac3006d249c4156a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Sep 2023 18:10:21 +0000 Subject: [PATCH 1182/1275] Auto-release 0.0.1125 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f9657cd0893c..d9888c9cc0d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1124 +MARKETING_VERSION = 0.0.1125 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b162c5d77a84127bf9f6a809ee4cab91c1eddd3b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Sep 2023 00:39:11 +0000 Subject: [PATCH 1183/1275] Auto-release 0.0.1126 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d9888c9cc0d0..3b2a121ac078 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1125 +MARKETING_VERSION = 0.0.1126 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dcfce76ddf65715cb84e85c827782c3c720606de Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Sep 2023 06:12:09 +0000 Subject: [PATCH 1184/1275] Auto-release 0.0.1127 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3b2a121ac078..3e9286cdba4b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1126 +MARKETING_VERSION = 0.0.1127 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d92d6abf73ed31f9e3be2dcc4fb1a38a38ee3d99 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Sep 2023 12:17:40 +0000 Subject: [PATCH 1185/1275] Auto-release 0.0.1128 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e9286cdba4b..09a5c2c6d9ed 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1127 +MARKETING_VERSION = 0.0.1128 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 857f49787887ef0c8bcd17f7d7f120321b5d7c30 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Sep 2023 18:11:49 +0000 Subject: [PATCH 1186/1275] Auto-release 0.0.1129 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 09a5c2c6d9ed..a84f16bb4570 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1128 +MARKETING_VERSION = 0.0.1129 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 691b7145384c0d7ad5bec1383e9168a56e000ca4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Sep 2023 00:39:00 +0000 Subject: [PATCH 1187/1275] Auto-release 0.0.1130 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a84f16bb4570..62e99632ba33 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1129 +MARKETING_VERSION = 0.0.1130 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7479df83bb69d6600319714a1b4d7a595bb882cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Sep 2023 06:12:11 +0000 Subject: [PATCH 1188/1275] Auto-release 0.0.1131 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 62e99632ba33..7f54840685f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1130 +MARKETING_VERSION = 0.0.1131 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1cbbae9f2c26b4f78edf5272ba4ed349bbe89b9e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Sep 2023 12:16:45 +0000 Subject: [PATCH 1189/1275] Auto-release 0.0.1132 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7f54840685f7..36508557a144 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1131 +MARKETING_VERSION = 0.0.1132 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f9b4c917c6074ad63b952f43f0b2f0f4ca7d69d1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Sep 2023 18:11:43 +0000 Subject: [PATCH 1190/1275] Auto-release 0.0.1133 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 36508557a144..a4678b2222f5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1132 +MARKETING_VERSION = 0.0.1133 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a66e8364e313f11efb75fad58631dd54e3a45e1f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Sep 2023 00:38:06 +0000 Subject: [PATCH 1191/1275] Auto-release 0.0.1134 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a4678b2222f5..cdf9175eaff6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1133 +MARKETING_VERSION = 0.0.1134 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 713f5099c7d1b77e63a682c2ea3675be3962f1f2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Sep 2023 06:12:41 +0000 Subject: [PATCH 1192/1275] Auto-release 0.0.1135 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cdf9175eaff6..98d50a28851a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1134 +MARKETING_VERSION = 0.0.1135 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f9477db3880449da7abd07201a2033c72e42a6e2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Sep 2023 12:16:27 +0000 Subject: [PATCH 1193/1275] Auto-release 0.0.1136 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 98d50a28851a..1ef68b4dfa03 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1135 +MARKETING_VERSION = 0.0.1136 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 56b2c308f83f9aa536e13b0b94d6f1e82fa550fd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Sep 2023 18:11:46 +0000 Subject: [PATCH 1194/1275] Auto-release 0.0.1137 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ef68b4dfa03..8b16dd1aaf15 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1136 +MARKETING_VERSION = 0.0.1137 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 336947896a143d28ee6e04deb4626bbc0056806b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Sep 2023 00:38:12 +0000 Subject: [PATCH 1195/1275] Auto-release 0.0.1138 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8b16dd1aaf15..3a4ad50668bb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1137 +MARKETING_VERSION = 0.0.1138 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2dc65b3ff24f2ca075520390b9d63a8cc36ace6f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Sep 2023 06:12:24 +0000 Subject: [PATCH 1196/1275] Auto-release 0.0.1139 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3a4ad50668bb..8ee21b5aa776 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1138 +MARKETING_VERSION = 0.0.1139 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7bb74128005f4242173ac04ccb39caecd6ece3cd Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Sep 2023 12:16:29 +0000 Subject: [PATCH 1197/1275] Auto-release 0.0.1140 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8ee21b5aa776..1a157842dbaf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1139 +MARKETING_VERSION = 0.0.1140 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8d285bbad4fbc32c071dbd53303af99a65497365 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Sep 2023 18:12:24 +0000 Subject: [PATCH 1198/1275] Auto-release 0.0.1141 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1a157842dbaf..94dac6f370b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1140 +MARKETING_VERSION = 0.0.1141 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8c3b303f0dac9ccf532e75d3eff8e5e069397d7f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Sep 2023 00:38:53 +0000 Subject: [PATCH 1199/1275] Auto-release 0.0.1142 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 94dac6f370b0..ad29f2bbce50 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1141 +MARKETING_VERSION = 0.0.1142 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9019e94cc3fedf590370045677de4baa47dbd49d Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Sep 2023 06:12:03 +0000 Subject: [PATCH 1200/1275] Auto-release 0.0.1143 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad29f2bbce50..d9ee2e161282 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1142 +MARKETING_VERSION = 0.0.1143 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d1408fbf13130be5947afa90eab68693aae1cf73 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Sep 2023 12:16:13 +0000 Subject: [PATCH 1201/1275] Auto-release 0.0.1144 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d9ee2e161282..a8eb131d1b54 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1143 +MARKETING_VERSION = 0.0.1144 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a16a36f0c449e36d8d3b2db3f2ef9b8818a58546 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Sep 2023 18:11:55 +0000 Subject: [PATCH 1202/1275] Auto-release 0.0.1145 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a8eb131d1b54..7b333e11ec0a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1144 +MARKETING_VERSION = 0.0.1145 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f7150d3f0c377c760ba02c75917b0189c03a258e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Sep 2023 00:37:40 +0000 Subject: [PATCH 1203/1275] Auto-release 0.0.1146 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7b333e11ec0a..cf8891eaee30 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1145 +MARKETING_VERSION = 0.0.1146 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4ce00ed487160b99abfba0ab40ce6abc0ed65aa3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Sep 2023 06:11:11 +0000 Subject: [PATCH 1204/1275] Auto-release 0.0.1147 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf8891eaee30..d84b0835c1ac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1146 +MARKETING_VERSION = 0.0.1147 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 95d433fa2624e61251c5bd0bd64e93215562cb61 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Sep 2023 12:14:24 +0000 Subject: [PATCH 1205/1275] Auto-release 0.0.1148 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d84b0835c1ac..7a3bbd0e8c2a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1147 +MARKETING_VERSION = 0.0.1148 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1a28243ee6c80ae9a420aaf9c13d708f9c2f767c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Sep 2023 18:10:14 +0000 Subject: [PATCH 1206/1275] Auto-release 0.0.1149 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7a3bbd0e8c2a..34f86d5718b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1148 +MARKETING_VERSION = 0.0.1149 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 63e13ec404fbc3fbaa2fcb728c59dbf4d51408ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Sep 2023 00:41:08 +0000 Subject: [PATCH 1207/1275] Auto-release 0.0.1150 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34f86d5718b9..5b6274f97dbc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1149 +MARKETING_VERSION = 0.0.1150 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 57a23980dc1b45b8675c75dbf565270056594b82 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Sep 2023 06:11:05 +0000 Subject: [PATCH 1208/1275] Auto-release 0.0.1151 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5b6274f97dbc..c426ddaabdf3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1150 +MARKETING_VERSION = 0.0.1151 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b84d7a79b853616f5e0cec65fcb6427fec87af08 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Sep 2023 12:14:17 +0000 Subject: [PATCH 1209/1275] Auto-release 0.0.1152 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c426ddaabdf3..9e7484963229 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1151 +MARKETING_VERSION = 0.0.1152 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 76c2eb476d85e7753c66c5ce4394fa515926f607 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Sep 2023 18:10:09 +0000 Subject: [PATCH 1210/1275] Auto-release 0.0.1153 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e7484963229..4926fbb6815b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1152 +MARKETING_VERSION = 0.0.1153 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 18c193e1126b4d76280e8b38619113c9982a7503 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Sep 2023 00:38:59 +0000 Subject: [PATCH 1211/1275] Auto-release 0.0.1154 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4926fbb6815b..560e93752757 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1153 +MARKETING_VERSION = 0.0.1154 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 10274383773cf7145e744ec72857fef12cd33b7a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Sep 2023 06:12:45 +0000 Subject: [PATCH 1212/1275] Auto-release 0.0.1155 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 560e93752757..d986c95259a0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1154 +MARKETING_VERSION = 0.0.1155 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ce2caa8ee5aff224bba26ccc09bab50d3fa4634e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Sep 2023 12:16:59 +0000 Subject: [PATCH 1213/1275] Auto-release 0.0.1156 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d986c95259a0..741e84876076 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1155 +MARKETING_VERSION = 0.0.1156 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5eae45e30e7d51ea3eeed467faec34f094f97d30 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Sep 2023 18:11:59 +0000 Subject: [PATCH 1214/1275] Auto-release 0.0.1157 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 741e84876076..21b21d1a3813 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1156 +MARKETING_VERSION = 0.0.1157 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 18e733f8d3784628520d7af142bda930b2271e48 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Sep 2023 00:39:09 +0000 Subject: [PATCH 1215/1275] Auto-release 0.0.1158 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 21b21d1a3813..5146346573ef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1157 +MARKETING_VERSION = 0.0.1158 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 429382c15a80745c1660262ef091e026bfd08be7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Sep 2023 06:12:38 +0000 Subject: [PATCH 1216/1275] Auto-release 0.0.1159 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5146346573ef..22f843bc3c96 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1158 +MARKETING_VERSION = 0.0.1159 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1b2c72ffa05af47534796f62328282aa77437942 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Sep 2023 12:16:10 +0000 Subject: [PATCH 1217/1275] Auto-release 0.0.1160 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 22f843bc3c96..3e98074bf163 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1159 +MARKETING_VERSION = 0.0.1160 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c21daeb96891cb8c13d17a9ca1b22f7b8e557ee9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Sep 2023 18:11:34 +0000 Subject: [PATCH 1218/1275] Auto-release 0.0.1161 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e98074bf163..04317760dcf7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1160 +MARKETING_VERSION = 0.0.1161 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 31d4c6fb2d9879e42da9667614be2a6364535791 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Sep 2023 00:39:12 +0000 Subject: [PATCH 1219/1275] Auto-release 0.0.1162 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 04317760dcf7..3f1cbd388980 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1161 +MARKETING_VERSION = 0.0.1162 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bf40689f08939a583ca985edf2458ec6362b9043 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Sep 2023 06:12:22 +0000 Subject: [PATCH 1220/1275] Auto-release 0.0.1163 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f1cbd388980..57ba353627f0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1162 +MARKETING_VERSION = 0.0.1163 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fac743206403d01ce54db82d13210143ab1730d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Sep 2023 12:16:21 +0000 Subject: [PATCH 1221/1275] Auto-release 0.0.1164 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 57ba353627f0..f9fcf0a67a24 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1163 +MARKETING_VERSION = 0.0.1164 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 00ed189926ce74b89684fc091c0eba005e59c822 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Sep 2023 18:11:58 +0000 Subject: [PATCH 1222/1275] Auto-release 0.0.1165 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f9fcf0a67a24..02fb0ab7490f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1164 +MARKETING_VERSION = 0.0.1165 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7b73023bd9db77b51117d8e4a460bbbdf71018e7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Sep 2023 00:38:47 +0000 Subject: [PATCH 1223/1275] Auto-release 0.0.1166 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 02fb0ab7490f..7405d6b43bd5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1165 +MARKETING_VERSION = 0.0.1166 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d168eee1a311db98707320afdd3e136179ace4da Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Sep 2023 06:12:33 +0000 Subject: [PATCH 1224/1275] Auto-release 0.0.1167 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7405d6b43bd5..0ae57b68b4d9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1166 +MARKETING_VERSION = 0.0.1167 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a2debefe85cfd84c9776ab8dd42a0ca8c318e093 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Sep 2023 12:16:26 +0000 Subject: [PATCH 1225/1275] Auto-release 0.0.1168 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0ae57b68b4d9..f3f0618dc615 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1167 +MARKETING_VERSION = 0.0.1168 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6037158ca787ada45394bf9cb250e0e0a69bd860 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Sep 2023 18:12:16 +0000 Subject: [PATCH 1226/1275] Auto-release 0.0.1169 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f3f0618dc615..9a58197fd2f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1168 +MARKETING_VERSION = 0.0.1169 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 16df5a86a02b704795e0afa6a9b68be9e4dacb12 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Sep 2023 00:39:12 +0000 Subject: [PATCH 1227/1275] Auto-release 0.0.1170 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9a58197fd2f1..3ffeeedd75a0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1169 +MARKETING_VERSION = 0.0.1170 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d4d568ab3b58d7fd760b5049c7fe6591e77650f0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Sep 2023 06:12:18 +0000 Subject: [PATCH 1228/1275] Auto-release 0.0.1171 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3ffeeedd75a0..4124672d72be 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1170 +MARKETING_VERSION = 0.0.1171 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d77e572c648c7f4cc4460e19f7e742e972fce48c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Sep 2023 12:16:20 +0000 Subject: [PATCH 1229/1275] Auto-release 0.0.1172 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4124672d72be..77c3f251d5c1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1171 +MARKETING_VERSION = 0.0.1172 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 00cb8112f766359b630bcb00851d745167332532 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Sep 2023 18:11:47 +0000 Subject: [PATCH 1230/1275] Auto-release 0.0.1173 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 77c3f251d5c1..312054dd07c3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1172 +MARKETING_VERSION = 0.0.1173 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9153f7b3abad7d6bfb4623099a73225738d1e2e3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Sep 2023 00:38:18 +0000 Subject: [PATCH 1231/1275] Auto-release 0.0.1174 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 312054dd07c3..fb91e6d09490 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1173 +MARKETING_VERSION = 0.0.1174 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4d94eb8d6375e815142e0d1f7514bd3e482ba8cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Sep 2023 06:11:18 +0000 Subject: [PATCH 1232/1275] Auto-release 0.0.1175 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb91e6d09490..77851b0ccb50 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1174 +MARKETING_VERSION = 0.0.1175 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5b6b3007da59f11615223fffa335374c1f4781d2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Sep 2023 12:15:20 +0000 Subject: [PATCH 1233/1275] Auto-release 0.0.1176 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 77851b0ccb50..82c6044cd2e2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1175 +MARKETING_VERSION = 0.0.1176 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4d35d7f6d8628d0bfb1f31905d345c321d451569 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Sep 2023 18:10:52 +0000 Subject: [PATCH 1234/1275] Auto-release 0.0.1177 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 82c6044cd2e2..38bd4eea0ae6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1176 +MARKETING_VERSION = 0.0.1177 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b3f0b8682126b6521d42d36188f20dfa4662973e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Oct 2023 00:44:16 +0000 Subject: [PATCH 1235/1275] Auto-release 0.0.1178 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 38bd4eea0ae6..6e1d4f3d07ac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1177 +MARKETING_VERSION = 0.0.1178 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6c89b30b38ef2ff2bcffb1d573b2898be4d0a4e6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Oct 2023 06:11:35 +0000 Subject: [PATCH 1236/1275] Auto-release 0.0.1179 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6e1d4f3d07ac..547ccd7bc94a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1178 +MARKETING_VERSION = 0.0.1179 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5384626e9f7673c6a47ac3beddaee9086788cf5b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Oct 2023 12:15:17 +0000 Subject: [PATCH 1237/1275] Auto-release 0.0.1180 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 547ccd7bc94a..85c7b3bd445e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1179 +MARKETING_VERSION = 0.0.1180 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7f6c0e20917b21291bd6406babb2a5a497115b9e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Oct 2023 18:11:24 +0000 Subject: [PATCH 1238/1275] Auto-release 0.0.1181 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 85c7b3bd445e..e77e2e9887f6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1180 +MARKETING_VERSION = 0.0.1181 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 57de2406fd1072ce509f63bbb67b0ab74d1157b7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Oct 2023 00:39:45 +0000 Subject: [PATCH 1239/1275] Auto-release 0.0.1182 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e77e2e9887f6..291c06c10751 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1181 +MARKETING_VERSION = 0.0.1182 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b84b25c637ec534d3312133ac94745063fa6e760 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Oct 2023 06:12:42 +0000 Subject: [PATCH 1240/1275] Auto-release 0.0.1183 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 291c06c10751..a19f50bad809 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1182 +MARKETING_VERSION = 0.0.1183 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ec3b965a8019fe947accc2dbeb90821abbfab4e1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Oct 2023 12:17:51 +0000 Subject: [PATCH 1241/1275] Auto-release 0.0.1184 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a19f50bad809..dbd61ff28f26 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1183 +MARKETING_VERSION = 0.0.1184 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 031a7c45b602ec4ea4c3cf94afc904df1a012917 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Oct 2023 18:12:15 +0000 Subject: [PATCH 1242/1275] Auto-release 0.0.1185 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dbd61ff28f26..dd93a2b9382b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1184 +MARKETING_VERSION = 0.0.1185 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1023a7ddb86a40eb546e0cbd535c7397159c3b32 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 3 Oct 2023 00:40:00 +0000 Subject: [PATCH 1243/1275] Auto-release 0.0.1186 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dd93a2b9382b..3ce086fc6553 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1185 +MARKETING_VERSION = 0.0.1186 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 00c00faf41c14e36b95ed2ad0fbfcb62c131d7e8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 3 Oct 2023 06:13:13 +0000 Subject: [PATCH 1244/1275] Auto-release 0.0.1187 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3ce086fc6553..c99d61270216 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1186 +MARKETING_VERSION = 0.0.1187 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 22835e10c6010022228239c6a88176741cebf10a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 3 Oct 2023 12:17:10 +0000 Subject: [PATCH 1245/1275] Auto-release 0.0.1188 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c99d61270216..a2e03dcdfc89 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1187 +MARKETING_VERSION = 0.0.1188 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4d8469d6544ff669b12d9fc8d1aa132386429c8e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 3 Oct 2023 18:12:22 +0000 Subject: [PATCH 1246/1275] Auto-release 0.0.1189 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a2e03dcdfc89..dc8696f0f493 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1188 +MARKETING_VERSION = 0.0.1189 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5b88b8368adf9f4835f9540282243713654dc137 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 4 Oct 2023 00:39:39 +0000 Subject: [PATCH 1247/1275] Auto-release 0.0.1190 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dc8696f0f493..4b90fc3062c9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1189 +MARKETING_VERSION = 0.0.1190 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4a6c67a501beb2dccacfdf0c815b5d1c4ac52ea3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 4 Oct 2023 06:12:50 +0000 Subject: [PATCH 1248/1275] Auto-release 0.0.1191 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4b90fc3062c9..30c2f534426f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1190 +MARKETING_VERSION = 0.0.1191 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 02212ba46d6d08f0d63065e8dec9bff4cd418175 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 4 Oct 2023 12:17:43 +0000 Subject: [PATCH 1249/1275] Auto-release 0.0.1192 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 30c2f534426f..3b0891e7c0e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1191 +MARKETING_VERSION = 0.0.1192 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7dd74de30032e183b7038c5a47d8125f4081fb6c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 4 Oct 2023 18:12:38 +0000 Subject: [PATCH 1250/1275] Auto-release 0.0.1193 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3b0891e7c0e5..50ffb4da8a7c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1192 +MARKETING_VERSION = 0.0.1193 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e2c070ce7538e6fd8890cfa1e2e583d5201c92ca Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 5 Oct 2023 00:39:16 +0000 Subject: [PATCH 1251/1275] Auto-release 0.0.1194 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 50ffb4da8a7c..c09e5a9c6365 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1193 +MARKETING_VERSION = 0.0.1194 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d44f9cd843b235f18dbc04881b18ee7d266a7284 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 5 Oct 2023 06:13:44 +0000 Subject: [PATCH 1252/1275] Auto-release 0.0.1195 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c09e5a9c6365..89ecf46a2202 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1194 +MARKETING_VERSION = 0.0.1195 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d1b42185be90dc1ec08fd14531cc013478f957ed Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 5 Oct 2023 12:17:34 +0000 Subject: [PATCH 1253/1275] Auto-release 0.0.1196 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 89ecf46a2202..801025ab6cd4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1195 +MARKETING_VERSION = 0.0.1196 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fe54d91ea90903c5feca79d8807f29eded7ab0f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 5 Oct 2023 18:12:13 +0000 Subject: [PATCH 1254/1275] Auto-release 0.0.1197 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 801025ab6cd4..d944d574a2a2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1196 +MARKETING_VERSION = 0.0.1197 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d413ee190c28c7953dacd5c3a876d7500b19e5f0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 6 Oct 2023 00:39:16 +0000 Subject: [PATCH 1255/1275] Auto-release 0.0.1198 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d944d574a2a2..73caddf57ed8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1197 +MARKETING_VERSION = 0.0.1198 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7a1b9d80332e8bec0d27d99e225b302b98e464ec Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 6 Oct 2023 06:12:49 +0000 Subject: [PATCH 1256/1275] Auto-release 0.0.1199 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 73caddf57ed8..d0738ab26cf5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1198 +MARKETING_VERSION = 0.0.1199 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3c7435df37583d5ba586560d3595ce9ba5de7df1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 6 Oct 2023 12:17:13 +0000 Subject: [PATCH 1257/1275] Auto-release 0.0.1200 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d0738ab26cf5..2ea7bd1624d5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1199 +MARKETING_VERSION = 0.0.1200 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a7ae9f1aee2bc43f9708bae70b0a578922b7f5d1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 6 Oct 2023 18:12:37 +0000 Subject: [PATCH 1258/1275] Auto-release 0.0.1201 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2ea7bd1624d5..f8fcd35140e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1200 +MARKETING_VERSION = 0.0.1201 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 321819fd4d032ad9bddbc7932d14012088ff5a4b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 7 Oct 2023 00:38:39 +0000 Subject: [PATCH 1259/1275] Auto-release 0.0.1202 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f8fcd35140e9..981608a39c3b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1201 +MARKETING_VERSION = 0.0.1202 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2d645c3737b12368b0c6b6ad66d19fcf76084416 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 7 Oct 2023 06:11:47 +0000 Subject: [PATCH 1260/1275] Auto-release 0.0.1203 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 981608a39c3b..cce377f9d79e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1202 +MARKETING_VERSION = 0.0.1203 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 340f2127246d8533dd185a357bf4d05d1dc35058 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 7 Oct 2023 12:15:01 +0000 Subject: [PATCH 1261/1275] Auto-release 0.0.1204 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cce377f9d79e..4229c79322f3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1203 +MARKETING_VERSION = 0.0.1204 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f2466556922b5c30c4460cde57b1b17e5ab07a27 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 7 Oct 2023 18:10:49 +0000 Subject: [PATCH 1262/1275] Auto-release 0.0.1205 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4229c79322f3..9e8960d78236 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1204 +MARKETING_VERSION = 0.0.1205 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fe0bd004d1e61614b27f52f8d8c4503eda14ef2e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 8 Oct 2023 00:42:00 +0000 Subject: [PATCH 1263/1275] Auto-release 0.0.1206 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e8960d78236..fb6779e8ff03 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1205 +MARKETING_VERSION = 0.0.1206 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fb11c5b4db0d08c0fe2c333d8aabab762b2c4c7b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 8 Oct 2023 06:11:31 +0000 Subject: [PATCH 1264/1275] Auto-release 0.0.1207 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb6779e8ff03..4161960386e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1206 +MARKETING_VERSION = 0.0.1207 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b32677d10902866e3e31b48e8d92eb9355f997c7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 8 Oct 2023 12:15:20 +0000 Subject: [PATCH 1265/1275] Auto-release 0.0.1208 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4161960386e5..9bb25b5634ad 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1207 +MARKETING_VERSION = 0.0.1208 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 61d24ced11cd76e7734446fab3e30eddfae9894d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 8 Oct 2023 18:10:54 +0000 Subject: [PATCH 1266/1275] Auto-release 0.0.1209 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9bb25b5634ad..da9b0f159efd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1208 +MARKETING_VERSION = 0.0.1209 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d33d83c940b2387b4e1f1672d2e266e99bc29738 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 9 Oct 2023 00:39:28 +0000 Subject: [PATCH 1267/1275] Auto-release 0.0.1210 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index da9b0f159efd..cbbceaca6204 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1209 +MARKETING_VERSION = 0.0.1210 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7a065e4f677ac3fc5a204271876ccd3785250ca8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 9 Oct 2023 06:13:01 +0000 Subject: [PATCH 1268/1275] Auto-release 0.0.1211 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cbbceaca6204..8faf064fa1c5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1210 +MARKETING_VERSION = 0.0.1211 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1525cfc723fc7b1eb37f4285261c608fa7309c2f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 9 Oct 2023 12:19:28 +0000 Subject: [PATCH 1269/1275] Auto-release 0.0.1212 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8faf064fa1c5..a9373412ceaf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1211 +MARKETING_VERSION = 0.0.1212 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 85d63a50600dae7c89adac5631f2e96c0e4bc358 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 9 Oct 2023 18:12:35 +0000 Subject: [PATCH 1270/1275] Auto-release 0.0.1213 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a9373412ceaf..c3d0d48b8440 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1212 +MARKETING_VERSION = 0.0.1213 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 47fb7387077cecf890d7d6df12f9832963eeb5ca Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 10 Oct 2023 00:39:25 +0000 Subject: [PATCH 1271/1275] Auto-release 0.0.1214 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c3d0d48b8440..6cbd1084715b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1213 +MARKETING_VERSION = 0.0.1214 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9b54702620b83051091360e408b926d688154a2f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 10 Oct 2023 06:13:13 +0000 Subject: [PATCH 1272/1275] Auto-release 0.0.1215 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6cbd1084715b..af692d80f406 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1214 +MARKETING_VERSION = 0.0.1215 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1f8630e43aadb0f76bb33c3b7a8a50f67b9a14d2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 10 Oct 2023 12:16:58 +0000 Subject: [PATCH 1273/1275] Auto-release 0.0.1216 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index af692d80f406..76d9d27b6730 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1215 +MARKETING_VERSION = 0.0.1216 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 75a109d0b0f6a6f3ce2ffc049afadce54d8c0cdd Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 10 Oct 2023 18:12:45 +0000 Subject: [PATCH 1274/1275] Auto-release 0.0.1217 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 76d9d27b6730..014c7ba69844 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1216 +MARKETING_VERSION = 0.0.1217 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3f4a69484b33e3641f506dbcd576e63a715f3dbd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 11 Oct 2023 00:39:09 +0000 Subject: [PATCH 1275/1275] Auto-release 0.0.1218 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 014c7ba69844..ba88c8112e3d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1217 +MARKETING_VERSION = 0.0.1218 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051