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/2586] 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/2586] 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/2586] --- 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/2586] --- .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/2586] --- .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/2586] --- 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/2586] 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/2586] --- .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/2586] From afca1e437a594bbb871d6f03db08f1cbb4ccde5e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 21:41:09 -0500 Subject: [PATCH 0010/2586] --- .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/2586] 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/2586] --- .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/2586] From 69b03ff0e7d8f852f0b75471d09e5903ca408d60 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 21:53:43 -0500 Subject: [PATCH 0014/2586] --- .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/2586] 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/2586] --- .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/2586] From f5de8f0ba1a24dfb164db0270dd5dd402a0eaf6f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Dec 2022 22:05:07 -0500 Subject: [PATCH 0018/2586] --- .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/2586] 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/2586] --- .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/2586] 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/2586] 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/2586] --- .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/2586] 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/2586] --- .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/2586] 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/2586] --- .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/2586] 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/2586] 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/2586] 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/2586] --- .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/2586] 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/2586] 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/2586] --- .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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] --- .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/2586] From d304d9cf49c3a736787a32f0dc46dec27a0d9fd1 Mon Sep 17 00:00:00 2001 From: appfairbot Date: Fri, 23 Dec 2022 12:23:48 +0000 Subject: [PATCH 0049/2586] 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/2586] 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/2586] 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/2586] 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/2586] --- .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/2586] 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/2586] 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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] --- .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/2586] From 83926540bea3f533f970f3306d9d963447ee9337 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Dec 2022 00:43:10 +0000 Subject: [PATCH 0067/2586] 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/2586] --- .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/2586] --- .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/2586] 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/2586] --- .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/2586] 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/2586] 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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] 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/2586] --- .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/2586] --- .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/2586] 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/2586] --- .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/2586] 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/2586] --- .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/2586] 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/2586] --- .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/2586] 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/2586] --- .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/2586] 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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] --- .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/2586] 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/2586] 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/2586] --- .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/2586] --- .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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] --- .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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] --- 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/2586] --- 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/2586] --- 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/2586] --- 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] --- 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/2586] --- 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] --- 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/2586] --- 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/2586] --- 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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/2586] 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 From 2e59eb6c1a532cd71a5fe46fb212270eec8ba58e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 11 Oct 2023 06:13:15 +0000 Subject: [PATCH 1276/2586] Auto-release 0.0.1219 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ba88c8112e3d..1d4255725cb7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1218 +MARKETING_VERSION = 0.0.1219 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eea868428364cdd1f6b5c2ded60d98f918f1face Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 11 Oct 2023 12:17:26 +0000 Subject: [PATCH 1277/2586] Auto-release 0.0.1220 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1d4255725cb7..8de39d05f8a9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1219 +MARKETING_VERSION = 0.0.1220 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 45234411a0f33399e81978adb6e4866ebd4bc186 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 11 Oct 2023 18:12:48 +0000 Subject: [PATCH 1278/2586] Auto-release 0.0.1221 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8de39d05f8a9..f3ffb8d7e9cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1220 +MARKETING_VERSION = 0.0.1221 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b8e830a0cf49a8517127c9bda993772aba7987a8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 12 Oct 2023 00:37:11 +0000 Subject: [PATCH 1279/2586] Auto-release 0.0.1222 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f3ffb8d7e9cc..d96b821ae0a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1221 +MARKETING_VERSION = 0.0.1222 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e13ff9aa6ed1aa24a654090f8128351b710361a2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 12 Oct 2023 06:12:53 +0000 Subject: [PATCH 1280/2586] Auto-release 0.0.1223 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d96b821ae0a7..dfbba36b5bed 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1222 +MARKETING_VERSION = 0.0.1223 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4ee4bb15fd45511d6b0fddf4f91cd55be3de71b5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 12 Oct 2023 12:16:48 +0000 Subject: [PATCH 1281/2586] Auto-release 0.0.1224 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dfbba36b5bed..9e25f2b220ed 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1223 +MARKETING_VERSION = 0.0.1224 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dec68322d12036d2c9f92ec5c5688c697606fdf4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 12 Oct 2023 18:12:26 +0000 Subject: [PATCH 1282/2586] Auto-release 0.0.1225 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9e25f2b220ed..0971430f61bb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1224 +MARKETING_VERSION = 0.0.1225 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8e3b04eb4bff0d369562ee6f6d5960d41e026d93 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 13 Oct 2023 00:40:16 +0000 Subject: [PATCH 1283/2586] Auto-release 0.0.1226 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0971430f61bb..d221c7c49077 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1225 +MARKETING_VERSION = 0.0.1226 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c4c5372c0235254f244f5aadf12c338ba74f214b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 13 Oct 2023 06:12:50 +0000 Subject: [PATCH 1284/2586] Auto-release 0.0.1227 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d221c7c49077..6957c0851486 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1226 +MARKETING_VERSION = 0.0.1227 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5c5258c3f51755461552323f0909cf867f87410f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 13 Oct 2023 12:17:14 +0000 Subject: [PATCH 1285/2586] Auto-release 0.0.1228 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6957c0851486..18cf595a40a4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1227 +MARKETING_VERSION = 0.0.1228 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ce2f2d6b57a5029fb4b8daa55a80b70816e8ea50 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 13 Oct 2023 18:12:25 +0000 Subject: [PATCH 1286/2586] Auto-release 0.0.1229 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 18cf595a40a4..b0525d259df2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1228 +MARKETING_VERSION = 0.0.1229 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7864cbe71ec179d53899c7a89539dcbc5aef1d1d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 14 Oct 2023 00:38:04 +0000 Subject: [PATCH 1287/2586] Auto-release 0.0.1230 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b0525d259df2..e82fc5e5315c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1229 +MARKETING_VERSION = 0.0.1230 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5349da40315fb2a0c46cc21f7f492c0788383bb3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 14 Oct 2023 06:11:39 +0000 Subject: [PATCH 1288/2586] Auto-release 0.0.1231 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e82fc5e5315c..0b0eccc1bd21 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1230 +MARKETING_VERSION = 0.0.1231 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b6ff00a2c13b7456e44c8924be85fff26b3a6f8c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 14 Oct 2023 12:15:19 +0000 Subject: [PATCH 1289/2586] Auto-release 0.0.1232 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0b0eccc1bd21..ed5e5a001417 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1231 +MARKETING_VERSION = 0.0.1232 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7c0e29156c4a3294b68231edea9ca21241353582 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 14 Oct 2023 18:10:59 +0000 Subject: [PATCH 1290/2586] Auto-release 0.0.1233 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ed5e5a001417..b1f53472126b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1232 +MARKETING_VERSION = 0.0.1233 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8b24e47b6a5f8519e8b1b4f5f3f3ec7c97268857 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 15 Oct 2023 00:42:07 +0000 Subject: [PATCH 1291/2586] Auto-release 0.0.1234 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b1f53472126b..43825224a6d3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1233 +MARKETING_VERSION = 0.0.1234 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d7b8cc64eac1512a465538ac355c482ba510d126 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 15 Oct 2023 06:11:31 +0000 Subject: [PATCH 1292/2586] Auto-release 0.0.1235 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 43825224a6d3..bd2337535620 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1234 +MARKETING_VERSION = 0.0.1235 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4cca4e6e6cbe1077d4a79e0a88a9d04808dcb15f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 15 Oct 2023 12:15:08 +0000 Subject: [PATCH 1293/2586] Auto-release 0.0.1236 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bd2337535620..670ae79218b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1235 +MARKETING_VERSION = 0.0.1236 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d3878dc1e580052178a271c6a96d2c69059c8237 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 15 Oct 2023 18:10:45 +0000 Subject: [PATCH 1294/2586] Auto-release 0.0.1237 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 670ae79218b0..306e9227348d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1236 +MARKETING_VERSION = 0.0.1237 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 98ab15b7b46f3720cd68ae9f0fac2e2688b17796 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 16 Oct 2023 00:40:07 +0000 Subject: [PATCH 1295/2586] Auto-release 0.0.1238 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 306e9227348d..baa60d24f6d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1237 +MARKETING_VERSION = 0.0.1238 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bdf2f254aad8203e3ac382eaed11dfeee06be066 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 16 Oct 2023 06:13:15 +0000 Subject: [PATCH 1296/2586] Auto-release 0.0.1239 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index baa60d24f6d0..20a9afe5787b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1238 +MARKETING_VERSION = 0.0.1239 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9045466d4a1fb8143c9c701ac62d3ae52c8b93d5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 16 Oct 2023 12:17:43 +0000 Subject: [PATCH 1297/2586] Auto-release 0.0.1240 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 20a9afe5787b..4257e7eecd8e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1239 +MARKETING_VERSION = 0.0.1240 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f3b13b8b35154f8c981181d451a742ba0d78b501 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 16 Oct 2023 18:13:20 +0000 Subject: [PATCH 1298/2586] Auto-release 0.0.1241 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4257e7eecd8e..b334b05d1a69 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1240 +MARKETING_VERSION = 0.0.1241 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 817166f3e2b4c24d85057683cb9fa17efc2323f7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 17 Oct 2023 00:39:36 +0000 Subject: [PATCH 1299/2586] Auto-release 0.0.1242 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b334b05d1a69..0544545b9b02 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1241 +MARKETING_VERSION = 0.0.1242 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7bf9c60d31912e48db55e514601d7ced838cf63c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 17 Oct 2023 06:13:00 +0000 Subject: [PATCH 1300/2586] Auto-release 0.0.1243 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0544545b9b02..c23f3c3291d9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1242 +MARKETING_VERSION = 0.0.1243 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d7fa7eb75858297e66f7d970663b7f43527be49e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 17 Oct 2023 12:17:23 +0000 Subject: [PATCH 1301/2586] Auto-release 0.0.1244 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c23f3c3291d9..7f6b0a40c034 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1243 +MARKETING_VERSION = 0.0.1244 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 242706faed32653d6f53ea0cfd7139a268b10a40 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 17 Oct 2023 18:13:13 +0000 Subject: [PATCH 1302/2586] Auto-release 0.0.1245 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7f6b0a40c034..b737a11acc6a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1244 +MARKETING_VERSION = 0.0.1245 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cbb781e6125090108c895ff4bef82ae612262f87 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 18 Oct 2023 00:39:18 +0000 Subject: [PATCH 1303/2586] Auto-release 0.0.1246 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b737a11acc6a..523a19f1f73e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1245 +MARKETING_VERSION = 0.0.1246 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6369a5ec84dc6f9da056c990eeaae6dfda730c75 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 18 Oct 2023 06:13:20 +0000 Subject: [PATCH 1304/2586] Auto-release 0.0.1247 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 523a19f1f73e..259553e1dcf9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1246 +MARKETING_VERSION = 0.0.1247 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2ae95841f4d05ad1b29d63a6fb7cf40d3888c580 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 18 Oct 2023 12:16:55 +0000 Subject: [PATCH 1305/2586] Auto-release 0.0.1248 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 259553e1dcf9..e7fc888a7615 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1247 +MARKETING_VERSION = 0.0.1248 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9ca45061c2e99e4dbbb6242f74175b7ff9a7bc67 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 18 Oct 2023 18:12:32 +0000 Subject: [PATCH 1306/2586] Auto-release 0.0.1249 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e7fc888a7615..a654437c5b74 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1248 +MARKETING_VERSION = 0.0.1249 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3d9a63a6d308c030d1bcdbb2e6aeb6314933be85 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 19 Oct 2023 00:38:59 +0000 Subject: [PATCH 1307/2586] Auto-release 0.0.1250 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a654437c5b74..bb68418afcab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1249 +MARKETING_VERSION = 0.0.1250 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 18b0df254050fedc9316546d3c237b1b4a87c3d2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 19 Oct 2023 06:12:43 +0000 Subject: [PATCH 1308/2586] Auto-release 0.0.1251 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bb68418afcab..697b699e7aeb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1250 +MARKETING_VERSION = 0.0.1251 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6bb302e6f7cd44388b08881031c50819f8ebcea4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 19 Oct 2023 12:17:19 +0000 Subject: [PATCH 1309/2586] Auto-release 0.0.1252 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 697b699e7aeb..d33d9006ddd2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1251 +MARKETING_VERSION = 0.0.1252 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f85452b7601ab3dc8d567d28f9f38a2ab12eead7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 19 Oct 2023 18:12:05 +0000 Subject: [PATCH 1310/2586] Auto-release 0.0.1253 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d33d9006ddd2..408453df0cc6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1252 +MARKETING_VERSION = 0.0.1253 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0320fed8984c8c5430781441989e364763f96ddb Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 20 Oct 2023 00:39:28 +0000 Subject: [PATCH 1311/2586] Auto-release 0.0.1254 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 408453df0cc6..73a34d4291f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1253 +MARKETING_VERSION = 0.0.1254 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9e755905d4db7f4ecbd260720058adbdf75aa024 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 20 Oct 2023 06:12:48 +0000 Subject: [PATCH 1312/2586] Auto-release 0.0.1255 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 73a34d4291f1..385bb013521d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1254 +MARKETING_VERSION = 0.0.1255 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7a0b5a583b354fb9ba6bd62012a75414d3234ffc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 20 Oct 2023 12:17:20 +0000 Subject: [PATCH 1313/2586] Auto-release 0.0.1256 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 385bb013521d..72d309da870a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1255 +MARKETING_VERSION = 0.0.1256 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d6b0f3639df857ecbb6a81c53fa382e7e67ecf53 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 20 Oct 2023 18:11:19 +0000 Subject: [PATCH 1314/2586] Auto-release 0.0.1257 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 72d309da870a..3a00bfe9cba5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1256 +MARKETING_VERSION = 0.0.1257 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 625df144387ccb1a367038c363ca8ddd455fa29a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 21 Oct 2023 00:39:23 +0000 Subject: [PATCH 1315/2586] Auto-release 0.0.1258 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3a00bfe9cba5..0949aee22881 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1257 +MARKETING_VERSION = 0.0.1258 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f5bd6f088104c843cec02c37e449f9bec248c718 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 21 Oct 2023 06:13:30 +0000 Subject: [PATCH 1316/2586] Auto-release 0.0.1259 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0949aee22881..f55ca850e9b5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1258 +MARKETING_VERSION = 0.0.1259 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4964e7df619f655d4b0eae6b094c75303b84e1c2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 21 Oct 2023 12:15:18 +0000 Subject: [PATCH 1317/2586] Auto-release 0.0.1260 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f55ca850e9b5..6358bc257d27 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1259 +MARKETING_VERSION = 0.0.1260 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7300f64b4445daf81d80867673234603e0f1c59b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 21 Oct 2023 18:11:04 +0000 Subject: [PATCH 1318/2586] Auto-release 0.0.1261 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6358bc257d27..04b0cb703a1a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1260 +MARKETING_VERSION = 0.0.1261 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4c8b1787d4bca451af6d9354795804e443dc9fd6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 22 Oct 2023 00:42:17 +0000 Subject: [PATCH 1319/2586] Auto-release 0.0.1262 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 04b0cb703a1a..25865a3cdc85 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1261 +MARKETING_VERSION = 0.0.1262 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4539eb30e7f29e256572c25be4f37742892a1ed0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 22 Oct 2023 06:11:50 +0000 Subject: [PATCH 1320/2586] Auto-release 0.0.1263 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 25865a3cdc85..35e5aed9071a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1262 +MARKETING_VERSION = 0.0.1263 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2c70440d32131028709766472bfc17e8cd168997 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 22 Oct 2023 12:15:01 +0000 Subject: [PATCH 1321/2586] Auto-release 0.0.1264 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 35e5aed9071a..cce0a22bfbf4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1263 +MARKETING_VERSION = 0.0.1264 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e05a38512ca509fc9e877d7e78deacffca8c9733 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 22 Oct 2023 18:10:54 +0000 Subject: [PATCH 1322/2586] Auto-release 0.0.1265 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cce0a22bfbf4..990beaf89fb2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1264 +MARKETING_VERSION = 0.0.1265 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 98b23f229dad3b91065f9accc052323a2b54afad Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 23 Oct 2023 00:39:25 +0000 Subject: [PATCH 1323/2586] Auto-release 0.0.1266 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 990beaf89fb2..a2474881b8ab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1265 +MARKETING_VERSION = 0.0.1266 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 410f8414413a67fadeac338d2766510f7e04b67b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 23 Oct 2023 06:12:53 +0000 Subject: [PATCH 1324/2586] Auto-release 0.0.1267 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a2474881b8ab..e60811dc0f77 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1266 +MARKETING_VERSION = 0.0.1267 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 57976c83ff3847679d8a2e69be468a03097edb01 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 23 Oct 2023 12:17:26 +0000 Subject: [PATCH 1325/2586] Auto-release 0.0.1268 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e60811dc0f77..edaca27799ea 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1267 +MARKETING_VERSION = 0.0.1268 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d717e8e8e40ca35fc7dae49f23c1df987443775d Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 23 Oct 2023 18:11:14 +0000 Subject: [PATCH 1326/2586] Auto-release 0.0.1269 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index edaca27799ea..6c4c7c185f70 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1268 +MARKETING_VERSION = 0.0.1269 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0eed7cd546009ec39ef91c5d10ae2a3521896732 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 24 Oct 2023 00:39:42 +0000 Subject: [PATCH 1327/2586] Auto-release 0.0.1270 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6c4c7c185f70..e3c3851114a1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1269 +MARKETING_VERSION = 0.0.1270 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 224852b1068112440796219cc3530ef42d433e6f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 24 Oct 2023 06:12:55 +0000 Subject: [PATCH 1328/2586] Auto-release 0.0.1271 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e3c3851114a1..85c6d982cccb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1270 +MARKETING_VERSION = 0.0.1271 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From baa79b3bd8e9b06291f3c7e4892436df4e10df9c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 24 Oct 2023 12:16:31 +0000 Subject: [PATCH 1329/2586] Auto-release 0.0.1272 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 85c6d982cccb..3b2559ce9bac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1271 +MARKETING_VERSION = 0.0.1272 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c0affdd47f9148d87095e88a1a9c36451215251b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 24 Oct 2023 18:11:59 +0000 Subject: [PATCH 1330/2586] Auto-release 0.0.1273 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3b2559ce9bac..f0c8e052f439 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1272 +MARKETING_VERSION = 0.0.1273 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2e861807fe8f0052a9a63ff3d283c2d25be9c1ce Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 25 Oct 2023 00:39:03 +0000 Subject: [PATCH 1331/2586] Auto-release 0.0.1274 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f0c8e052f439..d4297d459ce1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1273 +MARKETING_VERSION = 0.0.1274 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 58c52b9e9526ea5281c6f1c7aabc1e6d55e68f1b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 25 Oct 2023 06:13:10 +0000 Subject: [PATCH 1332/2586] Auto-release 0.0.1275 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d4297d459ce1..0745f5f94599 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1274 +MARKETING_VERSION = 0.0.1275 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ec8c866f1fa25489c233881249fbeb21878ca902 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 25 Oct 2023 12:16:54 +0000 Subject: [PATCH 1333/2586] Auto-release 0.0.1276 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0745f5f94599..db38f9e91e40 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1275 +MARKETING_VERSION = 0.0.1276 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d9381aeba09e33112e7420865b50282581064c81 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 25 Oct 2023 18:12:24 +0000 Subject: [PATCH 1334/2586] Auto-release 0.0.1277 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index db38f9e91e40..feb456dccc3c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1276 +MARKETING_VERSION = 0.0.1277 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 700ffab8f1fa8cbac94a60ce876b17ac2da36460 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 26 Oct 2023 00:38:21 +0000 Subject: [PATCH 1335/2586] Auto-release 0.0.1278 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index feb456dccc3c..0e1b27268176 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1277 +MARKETING_VERSION = 0.0.1278 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8b83bbc6ae2f7465a4f638831407044362c85ff9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 26 Oct 2023 06:12:40 +0000 Subject: [PATCH 1336/2586] Auto-release 0.0.1279 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0e1b27268176..69cb8bb07f2a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1278 +MARKETING_VERSION = 0.0.1279 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a15a59213507ff27b9a5b7d11032670cbfce522c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 26 Oct 2023 12:16:09 +0000 Subject: [PATCH 1337/2586] Auto-release 0.0.1280 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 69cb8bb07f2a..ec8a6836dd94 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1279 +MARKETING_VERSION = 0.0.1280 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ac399058269a4b11086c877366356f19ef71fbdc Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 26 Oct 2023 18:12:17 +0000 Subject: [PATCH 1338/2586] Auto-release 0.0.1281 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ec8a6836dd94..c09e1e07bc06 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1280 +MARKETING_VERSION = 0.0.1281 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2fe1c653c5dd7f4c4929148f4c0a6ddd58fc7d1c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 27 Oct 2023 00:38:48 +0000 Subject: [PATCH 1339/2586] Auto-release 0.0.1282 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c09e1e07bc06..5e47355f90f6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1281 +MARKETING_VERSION = 0.0.1282 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f7310faa83c1d155fdf38fcb8d583fba94a0e00d Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 27 Oct 2023 06:12:31 +0000 Subject: [PATCH 1340/2586] Auto-release 0.0.1283 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e47355f90f6..96edbba7a796 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1282 +MARKETING_VERSION = 0.0.1283 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d6fea8cf333e00d7a74a52020962af49b26ac63e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 27 Oct 2023 12:16:10 +0000 Subject: [PATCH 1341/2586] Auto-release 0.0.1284 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 96edbba7a796..b0bdc5baa102 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1283 +MARKETING_VERSION = 0.0.1284 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cdeee8b8f5f0103614a7a32904d6895514c4b569 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 27 Oct 2023 18:11:37 +0000 Subject: [PATCH 1342/2586] Auto-release 0.0.1285 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b0bdc5baa102..5ce8834236d8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1284 +MARKETING_VERSION = 0.0.1285 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b20ecf5961c2f1d6174071eac185cf45ad0fd597 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 28 Oct 2023 00:37:46 +0000 Subject: [PATCH 1343/2586] Auto-release 0.0.1286 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5ce8834236d8..a73477fcab7b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1285 +MARKETING_VERSION = 0.0.1286 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b8b97dcd5cf7cc22d3cf7c13b3d84ca80eeaf3a6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 28 Oct 2023 06:11:22 +0000 Subject: [PATCH 1344/2586] Auto-release 0.0.1287 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a73477fcab7b..d61bd4b3037e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1286 +MARKETING_VERSION = 0.0.1287 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6c465fe082348cbbe243242b9476e73af3a981b2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 28 Oct 2023 12:15:09 +0000 Subject: [PATCH 1345/2586] Auto-release 0.0.1288 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d61bd4b3037e..55402a7ee83c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1287 +MARKETING_VERSION = 0.0.1288 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From db9c0b000822b942381c48466ce5c4fe95132f50 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 28 Oct 2023 18:11:15 +0000 Subject: [PATCH 1346/2586] Auto-release 0.0.1289 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 55402a7ee83c..b1d10b2559ab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1288 +MARKETING_VERSION = 0.0.1289 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 82ceebeb662c6494766959306ecd6bf6d9b76c06 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 29 Oct 2023 00:41:37 +0000 Subject: [PATCH 1347/2586] Auto-release 0.0.1290 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b1d10b2559ab..369afe80c1e2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1289 +MARKETING_VERSION = 0.0.1290 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4648859e514df78ac7f6634affa4b33804813234 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 29 Oct 2023 06:11:44 +0000 Subject: [PATCH 1348/2586] Auto-release 0.0.1291 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 369afe80c1e2..630290d01f67 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1290 +MARKETING_VERSION = 0.0.1291 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1be8552e7db7c8d109176d0edda17cdf37b96bd0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 29 Oct 2023 12:15:05 +0000 Subject: [PATCH 1349/2586] Auto-release 0.0.1292 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 630290d01f67..5e8d2265bcc2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1291 +MARKETING_VERSION = 0.0.1292 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3aefa79a43557a67d26e01737df7c03522b7b581 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 29 Oct 2023 18:10:58 +0000 Subject: [PATCH 1350/2586] Auto-release 0.0.1293 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e8d2265bcc2..1749aa2c36e7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1292 +MARKETING_VERSION = 0.0.1293 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1e21fe8fd13769221468c2b19896dcbea16a013c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 30 Oct 2023 00:39:43 +0000 Subject: [PATCH 1351/2586] Auto-release 0.0.1294 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1749aa2c36e7..8b0f25c380fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1293 +MARKETING_VERSION = 0.0.1294 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 727f9c4a4153ddd9779292dfeb23e7c845917245 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 30 Oct 2023 06:12:39 +0000 Subject: [PATCH 1352/2586] Auto-release 0.0.1295 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8b0f25c380fc..3586ad00ca4e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1294 +MARKETING_VERSION = 0.0.1295 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c264c1e43cfbd778018c624644c4960e69fbcaa6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 30 Oct 2023 12:17:01 +0000 Subject: [PATCH 1353/2586] Auto-release 0.0.1296 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3586ad00ca4e..170ae00d28ac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1295 +MARKETING_VERSION = 0.0.1296 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3b5b765f5140018991e7a0e90b5aae0e86203bf4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 30 Oct 2023 18:12:23 +0000 Subject: [PATCH 1354/2586] Auto-release 0.0.1297 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 170ae00d28ac..e31d9860c5e2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1296 +MARKETING_VERSION = 0.0.1297 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bc07413647901a33567a103de75d37b75b64dfc6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 31 Oct 2023 00:39:39 +0000 Subject: [PATCH 1355/2586] Auto-release 0.0.1298 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e31d9860c5e2..79303fd70823 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1297 +MARKETING_VERSION = 0.0.1298 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From be0240f6deca0e8096487577476486c4a8bdf1d3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 31 Oct 2023 06:13:02 +0000 Subject: [PATCH 1356/2586] Auto-release 0.0.1299 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 79303fd70823..69fb9b25b805 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1298 +MARKETING_VERSION = 0.0.1299 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f073d2258c16a74aec0238e2e066a056a267618e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 31 Oct 2023 12:16:53 +0000 Subject: [PATCH 1357/2586] Auto-release 0.0.1300 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 69fb9b25b805..c64acef1136f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1299 +MARKETING_VERSION = 0.0.1300 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f3f8c57a7e11c896567870737874565ae97d8cea Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 31 Oct 2023 18:12:04 +0000 Subject: [PATCH 1358/2586] Auto-release 0.0.1301 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c64acef1136f..71364137efc7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1300 +MARKETING_VERSION = 0.0.1301 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3477c0ecda8b5785d7fd5fa7159e4fb8c944d5c7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Nov 2023 00:41:59 +0000 Subject: [PATCH 1359/2586] Auto-release 0.0.1302 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 71364137efc7..4c49e31461b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1301 +MARKETING_VERSION = 0.0.1302 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 05dcb88f25f5509922f1fb3d855dd71df939fded Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Nov 2023 06:12:48 +0000 Subject: [PATCH 1360/2586] Auto-release 0.0.1303 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c49e31461b9..96e2c39c8c4c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1302 +MARKETING_VERSION = 0.0.1303 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 963312d7869f354be51fe0a0e9d072c1e046ccdd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Nov 2023 12:16:43 +0000 Subject: [PATCH 1361/2586] Auto-release 0.0.1304 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 96e2c39c8c4c..73e4dc2ecc90 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1303 +MARKETING_VERSION = 0.0.1304 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1ddcee6ede051b3385519a36c49cb149c6a48a88 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 Nov 2023 18:12:30 +0000 Subject: [PATCH 1362/2586] Auto-release 0.0.1305 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 73e4dc2ecc90..9a765e105656 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1304 +MARKETING_VERSION = 0.0.1305 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 59598c7f9101479b4167c1724eda1391a8f1851b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Nov 2023 00:39:47 +0000 Subject: [PATCH 1363/2586] Auto-release 0.0.1306 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9a765e105656..b8fc94b6b026 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1305 +MARKETING_VERSION = 0.0.1306 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 114e195b114100063b3ee79341354134d26db8cb Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Nov 2023 06:12:12 +0000 Subject: [PATCH 1364/2586] Auto-release 0.0.1307 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b8fc94b6b026..ce5c08f72dcc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1306 +MARKETING_VERSION = 0.0.1307 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c1a5b460046871ed4f7243b25f982762e2548b36 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Nov 2023 12:16:42 +0000 Subject: [PATCH 1365/2586] Auto-release 0.0.1308 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ce5c08f72dcc..b464240c41b1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1307 +MARKETING_VERSION = 0.0.1308 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1a26f73d1ea9294461ac1839bc61fe18d3e96972 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 Nov 2023 18:11:59 +0000 Subject: [PATCH 1366/2586] Auto-release 0.0.1309 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b464240c41b1..7e549396ee7a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1308 +MARKETING_VERSION = 0.0.1309 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 931d8e72fc464bb747c061e7b289fbb401455cf7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Nov 2023 00:39:27 +0000 Subject: [PATCH 1367/2586] Auto-release 0.0.1310 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7e549396ee7a..0cc825426358 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1309 +MARKETING_VERSION = 0.0.1310 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 94edec936f341ffd35d7d9ea47d89d2710fd266d Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Nov 2023 06:12:17 +0000 Subject: [PATCH 1368/2586] Auto-release 0.0.1311 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0cc825426358..f90634e1d294 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1310 +MARKETING_VERSION = 0.0.1311 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7ee75151c1eb7b01801dacbf054bb17a14507813 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Nov 2023 12:17:00 +0000 Subject: [PATCH 1369/2586] Auto-release 0.0.1312 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f90634e1d294..5e22e2972565 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1311 +MARKETING_VERSION = 0.0.1312 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b458ba9996afdf94fe64f6553e3de0bf8550c1ae Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 Nov 2023 18:11:35 +0000 Subject: [PATCH 1370/2586] Auto-release 0.0.1313 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e22e2972565..1d71cd81d8c9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1312 +MARKETING_VERSION = 0.0.1313 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aefd8a201afa974fed3a19ca3974e367857293fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Nov 2023 00:38:28 +0000 Subject: [PATCH 1371/2586] Auto-release 0.0.1314 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1d71cd81d8c9..f13331840403 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1313 +MARKETING_VERSION = 0.0.1314 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1c4072bcca19721a9a612489c71a5649ea196f1f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Nov 2023 06:10:54 +0000 Subject: [PATCH 1372/2586] Auto-release 0.0.1315 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f13331840403..85df437f65e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1314 +MARKETING_VERSION = 0.0.1315 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 48780f4f732d80430ec6a6121b783e73b4ac980b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Nov 2023 12:14:22 +0000 Subject: [PATCH 1373/2586] Auto-release 0.0.1316 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 85df437f65e5..cdec62dbdac4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1315 +MARKETING_VERSION = 0.0.1316 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 94e27a22ffd88d21da081044800160e6cad0e3ed Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 Nov 2023 18:11:44 +0000 Subject: [PATCH 1374/2586] Auto-release 0.0.1317 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cdec62dbdac4..ef0aa603cb86 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1316 +MARKETING_VERSION = 0.0.1317 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f23ca3cda332777b90f09316d1231987a687bbb2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Nov 2023 00:43:19 +0000 Subject: [PATCH 1375/2586] Auto-release 0.0.1318 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ef0aa603cb86..4c9690b5a636 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1317 +MARKETING_VERSION = 0.0.1318 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bd0d8d7d8b03d749d3515d4b63219fe934d3e4c9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Nov 2023 06:10:58 +0000 Subject: [PATCH 1376/2586] Auto-release 0.0.1319 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c9690b5a636..bb4d92c11c3d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1318 +MARKETING_VERSION = 0.0.1319 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 56c54e0e53faffe4c1ec994f9df090bc6edc9e15 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Nov 2023 12:15:21 +0000 Subject: [PATCH 1377/2586] Auto-release 0.0.1320 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bb4d92c11c3d..15c3c3bde2f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1319 +MARKETING_VERSION = 0.0.1320 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 09d4f52f2e766cf36c27474eca36e2d1aaa74036 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 Nov 2023 18:11:12 +0000 Subject: [PATCH 1378/2586] Auto-release 0.0.1321 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 15c3c3bde2f1..6119ddb7f169 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1320 +MARKETING_VERSION = 0.0.1321 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 05f72ca43493bb63d766f0f04413ec0a60838a12 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Nov 2023 00:41:29 +0000 Subject: [PATCH 1379/2586] Auto-release 0.0.1322 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6119ddb7f169..ad6dbdd2b7b6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1321 +MARKETING_VERSION = 0.0.1322 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2607334d3218a0faf4f6dc37993ee6ee46f43b55 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Nov 2023 06:12:53 +0000 Subject: [PATCH 1380/2586] Auto-release 0.0.1323 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad6dbdd2b7b6..aa35ef67acea 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1322 +MARKETING_VERSION = 0.0.1323 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 036461c4f17fa4a6491566476a4c3984c561b95f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Nov 2023 12:17:47 +0000 Subject: [PATCH 1381/2586] Auto-release 0.0.1324 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aa35ef67acea..456fefe58775 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1323 +MARKETING_VERSION = 0.0.1324 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2f2d27841716067320a1bd0329615a983d7411fb Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 Nov 2023 18:11:41 +0000 Subject: [PATCH 1382/2586] Auto-release 0.0.1325 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 456fefe58775..716a97eedbd1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1324 +MARKETING_VERSION = 0.0.1325 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 99fcb64212030c75868e4ba7c1b6b53bec09e664 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Nov 2023 00:40:13 +0000 Subject: [PATCH 1383/2586] Auto-release 0.0.1326 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 716a97eedbd1..e5e3a7e4afdf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1325 +MARKETING_VERSION = 0.0.1326 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From be7a161bfb1780a6b8d97cd72b805d5f8d2fb303 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Nov 2023 06:12:36 +0000 Subject: [PATCH 1384/2586] Auto-release 0.0.1327 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e5e3a7e4afdf..fcc920e5e6d3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1326 +MARKETING_VERSION = 0.0.1327 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 49bd037c19b190521962021061df7c6be8739d93 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Nov 2023 12:15:51 +0000 Subject: [PATCH 1385/2586] Auto-release 0.0.1328 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fcc920e5e6d3..8a1d29e528a3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1327 +MARKETING_VERSION = 0.0.1328 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5b0f08890e4a45ba649c7f642fe41735531dfc4d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 Nov 2023 18:11:30 +0000 Subject: [PATCH 1386/2586] Auto-release 0.0.1329 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8a1d29e528a3..6a592fa14eb9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1328 +MARKETING_VERSION = 0.0.1329 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e949d0bc7be3077a3b7e1d15f2dfc49328896382 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Nov 2023 00:39:49 +0000 Subject: [PATCH 1387/2586] Auto-release 0.0.1330 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6a592fa14eb9..6d3ed3243119 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1329 +MARKETING_VERSION = 0.0.1330 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dec00c883823ea52fef1ecdfea59bd7da1bf73c4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Nov 2023 06:13:01 +0000 Subject: [PATCH 1388/2586] Auto-release 0.0.1331 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6d3ed3243119..4c44951696f6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1330 +MARKETING_VERSION = 0.0.1331 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6e306a31f7d8dcf23035e919285df5c3a35a4d13 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Nov 2023 12:15:58 +0000 Subject: [PATCH 1389/2586] Auto-release 0.0.1332 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c44951696f6..039979f0d68e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1331 +MARKETING_VERSION = 0.0.1332 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8d71ec43cbd3b898a4d292c2a345f122fa5e58ce Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 Nov 2023 18:13:22 +0000 Subject: [PATCH 1390/2586] Auto-release 0.0.1333 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 039979f0d68e..5a88705219e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1332 +MARKETING_VERSION = 0.0.1333 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5b94a5f33a38a4b6d07957ee2e27ecf2876d1507 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Nov 2023 00:39:28 +0000 Subject: [PATCH 1391/2586] Auto-release 0.0.1334 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5a88705219e9..10b819ea1e61 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1333 +MARKETING_VERSION = 0.0.1334 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 06bc78c808058460fd04abc6b2a913b35538b1fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Nov 2023 06:12:29 +0000 Subject: [PATCH 1392/2586] Auto-release 0.0.1335 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 10b819ea1e61..f8ce97d34e0d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1334 +MARKETING_VERSION = 0.0.1335 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aeefd346d0dbabee7ff494830754d355bb7363af Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Nov 2023 12:16:19 +0000 Subject: [PATCH 1393/2586] Auto-release 0.0.1336 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f8ce97d34e0d..e979344ed6ae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1335 +MARKETING_VERSION = 0.0.1336 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 495e5260b4e23d3a81e9b404f125ebfd18aee40d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 Nov 2023 18:12:11 +0000 Subject: [PATCH 1394/2586] Auto-release 0.0.1337 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e979344ed6ae..d3c45bd8ff63 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1336 +MARKETING_VERSION = 0.0.1337 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3760fb02544d20c3a51b63a93534e751d1b95d23 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Nov 2023 00:39:15 +0000 Subject: [PATCH 1395/2586] Auto-release 0.0.1338 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d3c45bd8ff63..baa6045792bf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1337 +MARKETING_VERSION = 0.0.1338 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2ea49aebe32b1837e00f178f782906ea5e0405ce Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Nov 2023 06:13:29 +0000 Subject: [PATCH 1396/2586] Auto-release 0.0.1339 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index baa6045792bf..a935956081ff 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1338 +MARKETING_VERSION = 0.0.1339 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ea7492dca876f7be3f043d71b4a2bdaa4bf838d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Nov 2023 12:16:04 +0000 Subject: [PATCH 1397/2586] Auto-release 0.0.1340 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a935956081ff..92b014fd8a1f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1339 +MARKETING_VERSION = 0.0.1340 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b52649a4c5879687aba5c73ca278f668a32e0ae4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 Nov 2023 18:11:32 +0000 Subject: [PATCH 1398/2586] Auto-release 0.0.1341 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 92b014fd8a1f..273d84164e41 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1340 +MARKETING_VERSION = 0.0.1341 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 209cc732469a996db54403ff0cd88b26cebd380d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Nov 2023 00:39:35 +0000 Subject: [PATCH 1399/2586] Auto-release 0.0.1342 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 273d84164e41..f26ea088197a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1341 +MARKETING_VERSION = 0.0.1342 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 977aa663f314170c2bf8f208132c4ebc248131be Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Nov 2023 06:10:59 +0000 Subject: [PATCH 1400/2586] Auto-release 0.0.1343 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f26ea088197a..5d9bb56b48df 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1342 +MARKETING_VERSION = 0.0.1343 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 29cc5d710b29ae03a25f6eac3e1b91ed7e5d66a2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Nov 2023 12:15:22 +0000 Subject: [PATCH 1401/2586] Auto-release 0.0.1344 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5d9bb56b48df..28449e43281e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1343 +MARKETING_VERSION = 0.0.1344 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3236e9aa614fcc9e5b026f437fcb1818770525d6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 Nov 2023 18:10:24 +0000 Subject: [PATCH 1402/2586] Auto-release 0.0.1345 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 28449e43281e..86207e62cc69 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1344 +MARKETING_VERSION = 0.0.1345 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9ac8ff2b320042390f437172ab6fe04e4051a6bc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Nov 2023 00:42:31 +0000 Subject: [PATCH 1403/2586] Auto-release 0.0.1346 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 86207e62cc69..69d8238ec16d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1345 +MARKETING_VERSION = 0.0.1346 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1784295428c82605379ec27f3890500b6b8369ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Nov 2023 06:10:58 +0000 Subject: [PATCH 1404/2586] Auto-release 0.0.1347 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 69d8238ec16d..0f0025c40026 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1346 +MARKETING_VERSION = 0.0.1347 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8fc082418d3ae1a7c8b3d8a604c1830f4aa6891f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Nov 2023 12:15:12 +0000 Subject: [PATCH 1405/2586] Auto-release 0.0.1348 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0f0025c40026..69c83aa8e46b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1347 +MARKETING_VERSION = 0.0.1348 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7dc026d52ffa20a98e134893260eb363b08473c1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 Nov 2023 18:11:29 +0000 Subject: [PATCH 1406/2586] Auto-release 0.0.1349 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 69c83aa8e46b..b318f0b9425d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1348 +MARKETING_VERSION = 0.0.1349 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 555860a64b923c8805dc19eb7d5da2b43b1b3398 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Nov 2023 00:41:10 +0000 Subject: [PATCH 1407/2586] Auto-release 0.0.1350 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b318f0b9425d..1f485c9b6437 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1349 +MARKETING_VERSION = 0.0.1350 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e2640b3058d881b5dc1ee8cce39bce19ae0237e4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Nov 2023 06:12:30 +0000 Subject: [PATCH 1408/2586] Auto-release 0.0.1351 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1f485c9b6437..84312c51e272 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1350 +MARKETING_VERSION = 0.0.1351 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From db602ff86ff07b8bfe1b07f630c58e1b8b0c277a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Nov 2023 12:17:21 +0000 Subject: [PATCH 1409/2586] Auto-release 0.0.1352 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 84312c51e272..546543f00fdb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1351 +MARKETING_VERSION = 0.0.1352 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e06f4d0b123abfb062ce8a7953cfdd740dfb626c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 Nov 2023 18:12:17 +0000 Subject: [PATCH 1410/2586] Auto-release 0.0.1353 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 546543f00fdb..dfc1f0d3a31a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1352 +MARKETING_VERSION = 0.0.1353 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 11a44417f8b3c6b10e3e5031a0f7b202e29e9601 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Nov 2023 00:39:42 +0000 Subject: [PATCH 1411/2586] Auto-release 0.0.1354 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dfc1f0d3a31a..314f91e71470 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1353 +MARKETING_VERSION = 0.0.1354 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 74fa3845b06d0867b0408f3ba075c489ab64250c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Nov 2023 06:12:36 +0000 Subject: [PATCH 1412/2586] Auto-release 0.0.1355 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 314f91e71470..9d74b89e1f26 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1354 +MARKETING_VERSION = 0.0.1355 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 16ebc71ba44a1ff36f2b994b3b5508484a2fcbb1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Nov 2023 12:16:52 +0000 Subject: [PATCH 1413/2586] Auto-release 0.0.1356 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9d74b89e1f26..60b7de3e5a86 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1355 +MARKETING_VERSION = 0.0.1356 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9196cbe5f4c1fc044e8b2b7936d48d6e0071184f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 Nov 2023 18:11:04 +0000 Subject: [PATCH 1414/2586] Auto-release 0.0.1357 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 60b7de3e5a86..d3c4ed8be081 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1356 +MARKETING_VERSION = 0.0.1357 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b210e1abd236df6f577864a06649edc733a3794e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Nov 2023 00:40:27 +0000 Subject: [PATCH 1415/2586] Auto-release 0.0.1358 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d3c4ed8be081..44b7c83da8be 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1357 +MARKETING_VERSION = 0.0.1358 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8796ef821d07fe60b0dd64733b5c35e1e54690fd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Nov 2023 06:13:12 +0000 Subject: [PATCH 1416/2586] Auto-release 0.0.1359 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 44b7c83da8be..b242b1b4e71c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1358 +MARKETING_VERSION = 0.0.1359 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cfd683cf4fafce6dac56369dabb4dadbde925532 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Nov 2023 12:16:49 +0000 Subject: [PATCH 1417/2586] Auto-release 0.0.1360 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b242b1b4e71c..a6dd161bbcd1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1359 +MARKETING_VERSION = 0.0.1360 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bc46d9602766290848d21579afef54dddebb0cca Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 Nov 2023 18:11:48 +0000 Subject: [PATCH 1418/2586] Auto-release 0.0.1361 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a6dd161bbcd1..409fe2d05b0e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1360 +MARKETING_VERSION = 0.0.1361 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 54b3cc0c6857bb9b0be5285601d7bcfbca43e119 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Nov 2023 00:41:04 +0000 Subject: [PATCH 1419/2586] Auto-release 0.0.1362 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 409fe2d05b0e..1f7d7c7d3f4c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1361 +MARKETING_VERSION = 0.0.1362 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 40b1527b6f3e29004f06d43f318aaee52db78e39 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Nov 2023 06:12:55 +0000 Subject: [PATCH 1420/2586] Auto-release 0.0.1363 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1f7d7c7d3f4c..0d7f2316004c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1362 +MARKETING_VERSION = 0.0.1363 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 86688161113805ecbd7a4ebe999dbebb2e0ff04c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Nov 2023 12:16:56 +0000 Subject: [PATCH 1421/2586] Auto-release 0.0.1364 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0d7f2316004c..bfac0e39bb4c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1363 +MARKETING_VERSION = 0.0.1364 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0669c0d2a9ac21b00590fdb13493c9134e26d78e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 Nov 2023 18:13:00 +0000 Subject: [PATCH 1422/2586] Auto-release 0.0.1365 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bfac0e39bb4c..4a3198f62653 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1364 +MARKETING_VERSION = 0.0.1365 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b59ba56b42b38e752e75329ebf3e86aa4f9322ca Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Nov 2023 00:41:18 +0000 Subject: [PATCH 1423/2586] Auto-release 0.0.1366 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a3198f62653..78befc917d89 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1365 +MARKETING_VERSION = 0.0.1366 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8b6695efdc4df1f99b1390d4fdad4d1ca9d5cb9f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Nov 2023 06:13:04 +0000 Subject: [PATCH 1424/2586] Auto-release 0.0.1367 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 78befc917d89..69fe42e29128 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1366 +MARKETING_VERSION = 0.0.1367 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 124816fe38e4e7c90bb61031f942bee44c9656f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Nov 2023 12:16:39 +0000 Subject: [PATCH 1425/2586] Auto-release 0.0.1368 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 69fe42e29128..b52cb2d950aa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1367 +MARKETING_VERSION = 0.0.1368 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 747c51b106dcb0aa5c476f3a597d91a8f6e47d02 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 Nov 2023 18:12:03 +0000 Subject: [PATCH 1426/2586] Auto-release 0.0.1369 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b52cb2d950aa..4b6fc40d45b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1368 +MARKETING_VERSION = 0.0.1369 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e7bd5318ba91eaee667abbf069dc443c50b1f956 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Nov 2023 00:40:04 +0000 Subject: [PATCH 1427/2586] Auto-release 0.0.1370 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4b6fc40d45b9..bf2dcb6250a8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1369 +MARKETING_VERSION = 0.0.1370 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ab7fbf3dd20d518701c91abaa7e90edf4ba5f34c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Nov 2023 06:11:13 +0000 Subject: [PATCH 1428/2586] Auto-release 0.0.1371 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bf2dcb6250a8..3d18475844cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1370 +MARKETING_VERSION = 0.0.1371 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c314cb94728db390b2203b244a95c9abaf593828 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Nov 2023 12:15:30 +0000 Subject: [PATCH 1429/2586] Auto-release 0.0.1372 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3d18475844cb..b7ee39e94fc2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1371 +MARKETING_VERSION = 0.0.1372 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 43163a717de61a07cff82366e1626f4acaa3467d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 Nov 2023 18:10:51 +0000 Subject: [PATCH 1430/2586] Auto-release 0.0.1373 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b7ee39e94fc2..af0076f5ca15 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1372 +MARKETING_VERSION = 0.0.1373 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 962a032cb34fef4be5c817c2e36b661aee12d27c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Nov 2023 00:44:01 +0000 Subject: [PATCH 1431/2586] Auto-release 0.0.1374 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index af0076f5ca15..88150a0780d5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1373 +MARKETING_VERSION = 0.0.1374 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ab3fdce5afb4dfcabb12c238be93db35c950c65e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Nov 2023 06:11:47 +0000 Subject: [PATCH 1432/2586] Auto-release 0.0.1375 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 88150a0780d5..ad7c7a82478b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1374 +MARKETING_VERSION = 0.0.1375 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c65dffc2238330b146b00008e64959ee33472610 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Nov 2023 12:15:08 +0000 Subject: [PATCH 1433/2586] Auto-release 0.0.1376 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad7c7a82478b..80b5f7952169 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1375 +MARKETING_VERSION = 0.0.1376 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 63ee2f772dbf47ab077fc56d54308fcd361210fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 Nov 2023 18:10:55 +0000 Subject: [PATCH 1434/2586] Auto-release 0.0.1377 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 80b5f7952169..ae7ed0dcbc68 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1376 +MARKETING_VERSION = 0.0.1377 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 068b67474a279b26e8021f59368b7e3073b81c4c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Nov 2023 00:41:33 +0000 Subject: [PATCH 1435/2586] Auto-release 0.0.1378 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ae7ed0dcbc68..f6f416d08da8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1377 +MARKETING_VERSION = 0.0.1378 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1ec48902f764f11bcd853d7e85520cce31808e8b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Nov 2023 06:13:37 +0000 Subject: [PATCH 1436/2586] Auto-release 0.0.1379 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f6f416d08da8..81f85b802184 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1378 +MARKETING_VERSION = 0.0.1379 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2421f573dc41e42c785c834f57c3dc00c38e2081 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Nov 2023 12:18:02 +0000 Subject: [PATCH 1437/2586] Auto-release 0.0.1380 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 81f85b802184..36c0e69feff5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1379 +MARKETING_VERSION = 0.0.1380 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 07db51ea3656e37d89818d33c34f6ccf2d98c147 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 Nov 2023 18:12:14 +0000 Subject: [PATCH 1438/2586] Auto-release 0.0.1381 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 36c0e69feff5..d9a8ec7b7386 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1380 +MARKETING_VERSION = 0.0.1381 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 869a58461ea6a8fb813d29ff78fc12a5f3825a53 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Nov 2023 00:41:57 +0000 Subject: [PATCH 1439/2586] Auto-release 0.0.1382 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d9a8ec7b7386..52c702653b24 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1381 +MARKETING_VERSION = 0.0.1382 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e316b22664486350838bfea26220a83167bef079 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Nov 2023 06:12:59 +0000 Subject: [PATCH 1440/2586] Auto-release 0.0.1383 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 52c702653b24..08396d823c81 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1382 +MARKETING_VERSION = 0.0.1383 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 77fffc5b49822bfd963eaa168aa6d20a2c272323 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Nov 2023 12:17:21 +0000 Subject: [PATCH 1441/2586] Auto-release 0.0.1384 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 08396d823c81..f64faac1c4d6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1383 +MARKETING_VERSION = 0.0.1384 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ad2ceb0b22760d81c8e828c3f80260ffdf5893ca Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 Nov 2023 18:12:21 +0000 Subject: [PATCH 1442/2586] Auto-release 0.0.1385 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f64faac1c4d6..a10209933147 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1384 +MARKETING_VERSION = 0.0.1385 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 26f26c56931df719f0235287e50b709cc76f5d46 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Nov 2023 00:42:54 +0000 Subject: [PATCH 1443/2586] Auto-release 0.0.1386 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a10209933147..c2efbdcc49b8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1385 +MARKETING_VERSION = 0.0.1386 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0321f1d8c881a64b19eca4a97da001f218329ebd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Nov 2023 06:12:58 +0000 Subject: [PATCH 1444/2586] Auto-release 0.0.1387 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c2efbdcc49b8..f0eb858c3129 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1386 +MARKETING_VERSION = 0.0.1387 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9af35d8e9cce50277bbd5d3ec3a1f25b29c20155 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Nov 2023 12:17:19 +0000 Subject: [PATCH 1445/2586] Auto-release 0.0.1388 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f0eb858c3129..8aa2b010c4e3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1387 +MARKETING_VERSION = 0.0.1388 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c8e23134cb87f1bad02fc515082a610b4580be4b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 Nov 2023 18:12:07 +0000 Subject: [PATCH 1446/2586] Auto-release 0.0.1389 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8aa2b010c4e3..8cb85eaf7fdc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1388 +MARKETING_VERSION = 0.0.1389 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f83746805e495ee59f06a1844ab8c4786135f9a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Nov 2023 00:40:32 +0000 Subject: [PATCH 1447/2586] Auto-release 0.0.1390 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8cb85eaf7fdc..1eff2701e750 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1389 +MARKETING_VERSION = 0.0.1390 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 96cd3ddff9ce2a58f6f73e3a4eee9f2728192ee0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Nov 2023 06:12:25 +0000 Subject: [PATCH 1448/2586] Auto-release 0.0.1391 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1eff2701e750..d63adbcf077e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1390 +MARKETING_VERSION = 0.0.1391 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4ad47e7d7759fe79126b2d6f46d6ce98f990846d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Nov 2023 12:16:40 +0000 Subject: [PATCH 1449/2586] Auto-release 0.0.1392 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d63adbcf077e..387ad445c922 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1391 +MARKETING_VERSION = 0.0.1392 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c99f67bb3444b941de4928494b2417f21ca9d29c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 Nov 2023 18:11:21 +0000 Subject: [PATCH 1450/2586] Auto-release 0.0.1393 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 387ad445c922..d58bd38b5261 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1392 +MARKETING_VERSION = 0.0.1393 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ffcd3ff67c3567fe7b9ada96f34a453a36b14fb2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Nov 2023 00:40:06 +0000 Subject: [PATCH 1451/2586] Auto-release 0.0.1394 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d58bd38b5261..f485809ae237 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1393 +MARKETING_VERSION = 0.0.1394 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3e69880cc3f7d096ced10c9a3f26d35dff6e5fbc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Nov 2023 06:12:27 +0000 Subject: [PATCH 1452/2586] Auto-release 0.0.1395 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f485809ae237..cd8c6118a447 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1394 +MARKETING_VERSION = 0.0.1395 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9ed0e96e3a0ab8a9344b8270874bd33c551a47ff Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Nov 2023 12:16:33 +0000 Subject: [PATCH 1453/2586] Auto-release 0.0.1396 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd8c6118a447..ea07d8c4f638 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1395 +MARKETING_VERSION = 0.0.1396 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8f7577a68d44b248415fd99b774d557fe51705be Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 Nov 2023 18:11:37 +0000 Subject: [PATCH 1454/2586] Auto-release 0.0.1397 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ea07d8c4f638..0ce4af2ce458 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1396 +MARKETING_VERSION = 0.0.1397 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 48516cdd13a9f3e3f7e7ec17e9472a85af49fceb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Nov 2023 00:39:10 +0000 Subject: [PATCH 1455/2586] Auto-release 0.0.1398 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0ce4af2ce458..bd9bb629cf6b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1397 +MARKETING_VERSION = 0.0.1398 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From faf6d93b67e0d8ebf41b574264e1f1203f2e5920 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Nov 2023 06:11:13 +0000 Subject: [PATCH 1456/2586] Auto-release 0.0.1399 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bd9bb629cf6b..634984daafc5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1398 +MARKETING_VERSION = 0.0.1399 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cc7a3f23cad0e4a13c359fb4e88383627be1461a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Nov 2023 12:15:16 +0000 Subject: [PATCH 1457/2586] Auto-release 0.0.1400 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 634984daafc5..920873dc35aa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1399 +MARKETING_VERSION = 0.0.1400 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 60b59a54c2b45bc89419aaf629204df5e0d764b2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 Nov 2023 18:10:48 +0000 Subject: [PATCH 1458/2586] Auto-release 0.0.1401 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 920873dc35aa..992cbd9f90e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1400 +MARKETING_VERSION = 0.0.1401 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 12e0c7ddff6ff7a028529d998bcd4e81e709a2ed Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Nov 2023 00:43:41 +0000 Subject: [PATCH 1459/2586] Auto-release 0.0.1402 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 992cbd9f90e5..34159adfab12 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1401 +MARKETING_VERSION = 0.0.1402 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2cf3dbfeceea8d088e54d4c5760eb4325b4dfdc4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Nov 2023 06:11:35 +0000 Subject: [PATCH 1460/2586] Auto-release 0.0.1403 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34159adfab12..411130503060 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1402 +MARKETING_VERSION = 0.0.1403 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 06334f05990fa4198588a1bcc047b6abd5bfd50b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Nov 2023 12:15:06 +0000 Subject: [PATCH 1461/2586] Auto-release 0.0.1404 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 411130503060..5bc2c2bc8df5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1403 +MARKETING_VERSION = 0.0.1404 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7a048badc5e91851bd38f5b3ed67cb69fa1afda6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 Nov 2023 18:10:42 +0000 Subject: [PATCH 1462/2586] Auto-release 0.0.1405 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5bc2c2bc8df5..61dbcd2cb0e8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1404 +MARKETING_VERSION = 0.0.1405 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3e1e524e2fb5dd54d6f4a1308269ee5317c02ef8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Nov 2023 00:41:28 +0000 Subject: [PATCH 1463/2586] Auto-release 0.0.1406 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 61dbcd2cb0e8..0b754f276b99 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1405 +MARKETING_VERSION = 0.0.1406 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 95630274c92917fd299c8517a73cca53b8d3b601 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Nov 2023 06:13:13 +0000 Subject: [PATCH 1464/2586] Auto-release 0.0.1407 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0b754f276b99..989fd5e6c6c6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1406 +MARKETING_VERSION = 0.0.1407 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c96259205827222c0d44524b3c3e50660b3a26de Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Nov 2023 12:17:09 +0000 Subject: [PATCH 1465/2586] Auto-release 0.0.1408 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 989fd5e6c6c6..cf19964f17dc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1407 +MARKETING_VERSION = 0.0.1408 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 58facad43cb79703e4ec3b360755f1d04f92b3ea Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 Nov 2023 18:12:15 +0000 Subject: [PATCH 1466/2586] Auto-release 0.0.1409 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf19964f17dc..4883cf7e00c5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1408 +MARKETING_VERSION = 0.0.1409 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1d9b9887c1256fb80dd711ba62d1f9914430a830 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Nov 2023 00:41:35 +0000 Subject: [PATCH 1467/2586] Auto-release 0.0.1410 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4883cf7e00c5..bfd274024b9e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1409 +MARKETING_VERSION = 0.0.1410 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 121c10ab8b9e40d496e04be6b9fb0b7c32579c11 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Nov 2023 06:12:53 +0000 Subject: [PATCH 1468/2586] Auto-release 0.0.1411 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bfd274024b9e..53544d0c7913 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1410 +MARKETING_VERSION = 0.0.1411 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cfe977b749cda65c58074e55df5224aadf53e43a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Nov 2023 12:17:02 +0000 Subject: [PATCH 1469/2586] Auto-release 0.0.1412 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 53544d0c7913..f2cb5441fa08 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1411 +MARKETING_VERSION = 0.0.1412 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 205d6de8abb3c69b86e605b400a212a1770da386 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 Nov 2023 18:11:50 +0000 Subject: [PATCH 1470/2586] Auto-release 0.0.1413 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f2cb5441fa08..5276775c2655 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1412 +MARKETING_VERSION = 0.0.1413 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0e6b2a596d260a5005eb995868bc5953b56163d8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 Nov 2023 00:46:09 +0000 Subject: [PATCH 1471/2586] Auto-release 0.0.1414 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5276775c2655..c04862f37b53 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1413 +MARKETING_VERSION = 0.0.1414 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f3e82b3ef9bd792a657a7efa9a0cd4e27af73560 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 Nov 2023 06:12:25 +0000 Subject: [PATCH 1472/2586] Auto-release 0.0.1415 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c04862f37b53..e833bf99bf5b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1414 +MARKETING_VERSION = 0.0.1415 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 82e4630b20442f03762d8a7e9014448748ac3a5d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 Nov 2023 12:16:50 +0000 Subject: [PATCH 1473/2586] Auto-release 0.0.1416 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e833bf99bf5b..f0a4334ab6b8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1415 +MARKETING_VERSION = 0.0.1416 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 12fd5598427440c0cb9facb25ef3ab8bce6eeb80 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 Nov 2023 18:11:47 +0000 Subject: [PATCH 1474/2586] Auto-release 0.0.1417 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f0a4334ab6b8..99bb8ebd0ab9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1416 +MARKETING_VERSION = 0.0.1417 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d91acf75a4516f3f6603cb6ab0c56d34b41d1831 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 Nov 2023 00:41:00 +0000 Subject: [PATCH 1475/2586] Auto-release 0.0.1418 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 99bb8ebd0ab9..2f97de466500 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1417 +MARKETING_VERSION = 0.0.1418 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2054e796beb499a965b33dddcfe66d970de9adf0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 Nov 2023 06:12:44 +0000 Subject: [PATCH 1476/2586] Auto-release 0.0.1419 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f97de466500..cd3f96646832 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1418 +MARKETING_VERSION = 0.0.1419 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f3282d27e5c019ff7cf225d79e91af36c1f49506 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 Nov 2023 12:16:49 +0000 Subject: [PATCH 1477/2586] Auto-release 0.0.1420 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd3f96646832..293fb8613544 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1419 +MARKETING_VERSION = 0.0.1420 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 370b4979466eb1259f603652ae0dee589e767b7f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 Nov 2023 18:12:47 +0000 Subject: [PATCH 1478/2586] Auto-release 0.0.1421 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 293fb8613544..3bb8f2d2436c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1420 +MARKETING_VERSION = 0.0.1421 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fca6df186273e05b6be096762592e2b98b9fddd6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Dec 2023 00:44:46 +0000 Subject: [PATCH 1479/2586] Auto-release 0.0.1422 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3bb8f2d2436c..68db227d2b49 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1421 +MARKETING_VERSION = 0.0.1422 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d6a975ad999b85aa58fe8fc58c5bb7500739ad54 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Dec 2023 06:12:50 +0000 Subject: [PATCH 1480/2586] Auto-release 0.0.1423 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 68db227d2b49..c4871e4678c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1422 +MARKETING_VERSION = 0.0.1423 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d63e7613c205fc68b224b0a801e0b42c8954abbc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Dec 2023 12:16:59 +0000 Subject: [PATCH 1481/2586] Auto-release 0.0.1424 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c4871e4678c8..57316dfd5b22 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1423 +MARKETING_VERSION = 0.0.1424 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f76e352c2fbfb40bc2a3a5579cee0d5c0c6b1559 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Dec 2023 18:12:07 +0000 Subject: [PATCH 1482/2586] Auto-release 0.0.1425 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 57316dfd5b22..11d4c386c755 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1424 +MARKETING_VERSION = 0.0.1425 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5e5bcc4b7b56b9839546cc8b8de8de01bff54185 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Dec 2023 00:40:05 +0000 Subject: [PATCH 1483/2586] Auto-release 0.0.1426 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 11d4c386c755..8734129a40c4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1425 +MARKETING_VERSION = 0.0.1426 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ef1f858c2bcc19200d96dbd664c4307b8fb7f96d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Dec 2023 06:11:51 +0000 Subject: [PATCH 1484/2586] Auto-release 0.0.1427 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8734129a40c4..bea43bb9078f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1426 +MARKETING_VERSION = 0.0.1427 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1ee5f0693f90eb6f202cb63966df01fa27eebc2f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Dec 2023 12:14:59 +0000 Subject: [PATCH 1485/2586] Auto-release 0.0.1428 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bea43bb9078f..62be2b298cd2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1427 +MARKETING_VERSION = 0.0.1428 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dfcfe087e41670ef43bd2b1d3301a80ae70abad0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Dec 2023 18:10:41 +0000 Subject: [PATCH 1486/2586] Auto-release 0.0.1429 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 62be2b298cd2..d0f1be607635 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1428 +MARKETING_VERSION = 0.0.1429 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c0c39a611da5ddbe4dc46715711f832037b902c8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Dec 2023 00:43:27 +0000 Subject: [PATCH 1487/2586] Auto-release 0.0.1430 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d0f1be607635..102931fd36ef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1429 +MARKETING_VERSION = 0.0.1430 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ff98a290d70c07af0eca8ba3f99444e023242c1b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Dec 2023 06:11:13 +0000 Subject: [PATCH 1488/2586] Auto-release 0.0.1431 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 102931fd36ef..409735366422 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1430 +MARKETING_VERSION = 0.0.1431 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 704f661362a5a65faef7b91540535942f4cf316a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Dec 2023 12:15:14 +0000 Subject: [PATCH 1489/2586] Auto-release 0.0.1432 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 409735366422..d42f6f73b4f9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1431 +MARKETING_VERSION = 0.0.1432 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 56f9c1d2476b41b9a3b5ee25e664531e00e300da Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Dec 2023 18:11:05 +0000 Subject: [PATCH 1490/2586] Auto-release 0.0.1433 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d42f6f73b4f9..62c3c8acdd60 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1432 +MARKETING_VERSION = 0.0.1433 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9a35aea66df1d6b64d8bbe43a087bdc7576617c2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Dec 2023 00:41:48 +0000 Subject: [PATCH 1491/2586] Auto-release 0.0.1434 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 62c3c8acdd60..5cfde0c7bdec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1433 +MARKETING_VERSION = 0.0.1434 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From afb7480a2341cb7aa26ca0c7a6801fe1a933ccea Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Dec 2023 06:13:11 +0000 Subject: [PATCH 1492/2586] Auto-release 0.0.1435 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5cfde0c7bdec..49e12542ba95 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1434 +MARKETING_VERSION = 0.0.1435 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a50e0847d4e1c6f87fe3d95d1b429572787492a5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Dec 2023 12:16:56 +0000 Subject: [PATCH 1493/2586] Auto-release 0.0.1436 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 49e12542ba95..dc7fcb0de489 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1435 +MARKETING_VERSION = 0.0.1436 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 705656f8bd5a987db19e057133b072a9d744479c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Dec 2023 18:12:26 +0000 Subject: [PATCH 1494/2586] Auto-release 0.0.1437 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dc7fcb0de489..e119762bedc9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1436 +MARKETING_VERSION = 0.0.1437 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 726cc8eb897a295701499b39af30717ebb1b4bf2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Dec 2023 00:41:59 +0000 Subject: [PATCH 1495/2586] Auto-release 0.0.1438 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e119762bedc9..4db6e8c69fab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1437 +MARKETING_VERSION = 0.0.1438 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0dc2e4cdbe68f2682c7272f94b5cd1698f1976ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Dec 2023 06:12:45 +0000 Subject: [PATCH 1496/2586] Auto-release 0.0.1439 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4db6e8c69fab..db1caa8cc03f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1438 +MARKETING_VERSION = 0.0.1439 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 49656bfe825bccec4626dcbaf0b698cf20500827 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Dec 2023 12:17:41 +0000 Subject: [PATCH 1497/2586] Auto-release 0.0.1440 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index db1caa8cc03f..da12a9a1d677 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1439 +MARKETING_VERSION = 0.0.1440 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4105ebee4f9c1cd36564134cf9d7c1cd50a5b11d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Dec 2023 18:12:13 +0000 Subject: [PATCH 1498/2586] Auto-release 0.0.1441 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index da12a9a1d677..cfdddabeea62 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1440 +MARKETING_VERSION = 0.0.1441 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f3ff47e2bb4758bf43aabc6efbc8dba0a60f73b7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Dec 2023 00:41:51 +0000 Subject: [PATCH 1499/2586] Auto-release 0.0.1442 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cfdddabeea62..80a7ee098e22 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1441 +MARKETING_VERSION = 0.0.1442 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8be006f9b5ea14c1d5e63aa2390e8b7a9b727cfc Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Dec 2023 06:12:40 +0000 Subject: [PATCH 1500/2586] Auto-release 0.0.1443 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 80a7ee098e22..e07fca655470 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1442 +MARKETING_VERSION = 0.0.1443 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1e24e235f9c9ed466b4d146d00a9fdd39ab42fe9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Dec 2023 12:16:59 +0000 Subject: [PATCH 1501/2586] Auto-release 0.0.1444 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e07fca655470..33286e7afba9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1443 +MARKETING_VERSION = 0.0.1444 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f9dde85c3fc93f850bb2e7d1160bf2af4958ddb8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Dec 2023 18:11:47 +0000 Subject: [PATCH 1502/2586] Auto-release 0.0.1445 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 33286e7afba9..44cf3dc290e6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1444 +MARKETING_VERSION = 0.0.1445 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ea55d4aa6e44ebb4655b0e9d65aacc49cadbcbc3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Dec 2023 00:41:06 +0000 Subject: [PATCH 1503/2586] Auto-release 0.0.1446 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 44cf3dc290e6..5f333d60615e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1445 +MARKETING_VERSION = 0.0.1446 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9525fb4e0c3f110bd3ae3bd0f95d4d2e99c3c9d3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Dec 2023 06:13:13 +0000 Subject: [PATCH 1504/2586] Auto-release 0.0.1447 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5f333d60615e..98d2c761e3db 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1446 +MARKETING_VERSION = 0.0.1447 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6594f12a2daea168d67abf71dee06d35081e5b31 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Dec 2023 12:16:33 +0000 Subject: [PATCH 1505/2586] Auto-release 0.0.1448 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 98d2c761e3db..8df6feeb9656 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1447 +MARKETING_VERSION = 0.0.1448 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fa970b60371894b18fa1a1d72a6aef5f5f286eaf Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Dec 2023 18:12:24 +0000 Subject: [PATCH 1506/2586] Auto-release 0.0.1449 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8df6feeb9656..f5622b52d2ea 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1448 +MARKETING_VERSION = 0.0.1449 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3c560897f98fc6e6661935db6e024ac13d3e0609 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Dec 2023 00:41:52 +0000 Subject: [PATCH 1507/2586] Auto-release 0.0.1450 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f5622b52d2ea..c9ea6944ecb1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1449 +MARKETING_VERSION = 0.0.1450 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7ed77b55139d7d19ecebb4930ad409081b15ca40 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Dec 2023 06:12:46 +0000 Subject: [PATCH 1508/2586] Auto-release 0.0.1451 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c9ea6944ecb1..44c99dc243c6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1450 +MARKETING_VERSION = 0.0.1451 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d47c01c1ac44c7ee75f06c86f07dcaed16c0dfe6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Dec 2023 12:16:45 +0000 Subject: [PATCH 1509/2586] Auto-release 0.0.1452 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 44c99dc243c6..b2bcf422a58e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1451 +MARKETING_VERSION = 0.0.1452 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cd02823daac0c6ebd153b7ac85c0b2e1cc9294b8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Dec 2023 18:12:21 +0000 Subject: [PATCH 1510/2586] Auto-release 0.0.1453 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b2bcf422a58e..a774dbbe2eac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1452 +MARKETING_VERSION = 0.0.1453 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a3e01e8db4432a2a5d82c6563975a8181df9bb18 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Dec 2023 00:40:22 +0000 Subject: [PATCH 1511/2586] Auto-release 0.0.1454 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a774dbbe2eac..d762cfe410d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1453 +MARKETING_VERSION = 0.0.1454 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a7deb0796b3bc3c9a611260be1f832e776750c00 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Dec 2023 06:11:26 +0000 Subject: [PATCH 1512/2586] Auto-release 0.0.1455 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d762cfe410d0..a893120551ae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1454 +MARKETING_VERSION = 0.0.1455 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 83b4d129bd2a9f0f0aa0b27a91ae0e104d991b08 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Dec 2023 12:15:25 +0000 Subject: [PATCH 1513/2586] Auto-release 0.0.1456 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a893120551ae..de79fc5b7f8b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1455 +MARKETING_VERSION = 0.0.1456 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6dbfb01e9384103b68d434df398e42cc133b083b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Dec 2023 18:11:06 +0000 Subject: [PATCH 1514/2586] Auto-release 0.0.1457 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index de79fc5b7f8b..cf83b2334dae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1456 +MARKETING_VERSION = 0.0.1457 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 63dc1bf6366b013af4822de7fffb35f25d3659d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Dec 2023 00:44:34 +0000 Subject: [PATCH 1515/2586] Auto-release 0.0.1458 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf83b2334dae..13dc8707f788 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1457 +MARKETING_VERSION = 0.0.1458 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6b88a77d9e24503eee242366bf20b02974b46bbb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Dec 2023 06:11:45 +0000 Subject: [PATCH 1516/2586] Auto-release 0.0.1459 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 13dc8707f788..ca0773d9ca2d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1458 +MARKETING_VERSION = 0.0.1459 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 94e84b04c4a1ac7e12ca64bd7a84f5b2328d4fbe Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Dec 2023 12:15:00 +0000 Subject: [PATCH 1517/2586] Auto-release 0.0.1460 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ca0773d9ca2d..8386a70492fd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1459 +MARKETING_VERSION = 0.0.1460 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bed0289bde51d570823eda65564fd4b9be5d1d0e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Dec 2023 18:10:59 +0000 Subject: [PATCH 1518/2586] Auto-release 0.0.1461 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8386a70492fd..78106b1d83a1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1460 +MARKETING_VERSION = 0.0.1461 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ee2f1d1020e524624b7ee53c30007668461ca123 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Dec 2023 00:42:16 +0000 Subject: [PATCH 1519/2586] Auto-release 0.0.1462 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 78106b1d83a1..ca9495c28338 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1461 +MARKETING_VERSION = 0.0.1462 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From db92dd3769563c4fb7fca9d905748104279b4f49 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Dec 2023 06:13:22 +0000 Subject: [PATCH 1520/2586] Auto-release 0.0.1463 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ca9495c28338..50b1c18992d8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1462 +MARKETING_VERSION = 0.0.1463 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9f28143ad34349c89bce87271f0639cf5ab2f5f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Dec 2023 12:17:30 +0000 Subject: [PATCH 1521/2586] Auto-release 0.0.1464 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 50b1c18992d8..f838b1bd1659 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1463 +MARKETING_VERSION = 0.0.1464 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fcb8a2c0b131440583c9b281ad9884e585c58bd0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Dec 2023 18:12:07 +0000 Subject: [PATCH 1522/2586] Auto-release 0.0.1465 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f838b1bd1659..befee7b68f44 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1464 +MARKETING_VERSION = 0.0.1465 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6ea130e5ea09af2aaca0dc2b635e3ba5a353fa56 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Dec 2023 00:42:29 +0000 Subject: [PATCH 1523/2586] Auto-release 0.0.1466 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index befee7b68f44..3cd12038a5e0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1465 +MARKETING_VERSION = 0.0.1466 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0cdca0ce19e68b2fba51faef06d97577426fd0ab Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Dec 2023 06:12:55 +0000 Subject: [PATCH 1524/2586] Auto-release 0.0.1467 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3cd12038a5e0..a7237b84c22e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1466 +MARKETING_VERSION = 0.0.1467 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d794fcfb542c1f7db02a40e4141cc4d1390cc013 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Dec 2023 12:17:46 +0000 Subject: [PATCH 1525/2586] Auto-release 0.0.1468 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a7237b84c22e..de6e37649190 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1467 +MARKETING_VERSION = 0.0.1468 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 716ef1fdbc7e903378a6b60cf0c07beb09e8647b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Dec 2023 18:12:10 +0000 Subject: [PATCH 1526/2586] Auto-release 0.0.1469 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index de6e37649190..c9536244741d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1468 +MARKETING_VERSION = 0.0.1469 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dea43e63addd0e1109016137b5e5a8416dacfc74 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Dec 2023 00:41:21 +0000 Subject: [PATCH 1527/2586] Auto-release 0.0.1470 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c9536244741d..cb770dadd45b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1469 +MARKETING_VERSION = 0.0.1470 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 770cc48c18ddda9b2ae4e420cc2cbde1b0697b92 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Dec 2023 06:12:27 +0000 Subject: [PATCH 1528/2586] Auto-release 0.0.1471 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cb770dadd45b..09e127aad6c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1470 +MARKETING_VERSION = 0.0.1471 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4557da8d2c9c428b732370bfcbd575ef72535719 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Dec 2023 12:16:58 +0000 Subject: [PATCH 1529/2586] Auto-release 0.0.1472 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 09e127aad6c8..6177b328dfa5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1471 +MARKETING_VERSION = 0.0.1472 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b6a51f672b520feaecd5264f7745ecb41673e31d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Dec 2023 18:09:57 +0000 Subject: [PATCH 1530/2586] Auto-release 0.0.1473 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6177b328dfa5..ec17de88b150 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1472 +MARKETING_VERSION = 0.0.1473 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ee339a26fee3e3cdac18fa2db45a94662bbd8098 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Dec 2023 00:40:50 +0000 Subject: [PATCH 1531/2586] Auto-release 0.0.1474 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ec17de88b150..ad8c38c79a19 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1473 +MARKETING_VERSION = 0.0.1474 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2ee4dc64007089a8a5c62c450c630c4e1a38ec55 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Dec 2023 06:12:27 +0000 Subject: [PATCH 1532/2586] Auto-release 0.0.1475 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad8c38c79a19..c2e61cea28b6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1474 +MARKETING_VERSION = 0.0.1475 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d0201c995f8de32b551f89536909405e0a7d3a6e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Dec 2023 12:16:57 +0000 Subject: [PATCH 1533/2586] Auto-release 0.0.1476 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c2e61cea28b6..4d5b8ebd620e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1475 +MARKETING_VERSION = 0.0.1476 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a04ef13d60c73da95d04767059cd4e4d3060ddb2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Dec 2023 18:12:49 +0000 Subject: [PATCH 1534/2586] Auto-release 0.0.1477 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4d5b8ebd620e..763a692b114b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1476 +MARKETING_VERSION = 0.0.1477 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 852ee4b256c225363960cfdcd91ec4a8b1a98f9d Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Dec 2023 00:42:06 +0000 Subject: [PATCH 1535/2586] Auto-release 0.0.1478 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 763a692b114b..aa446b76fe21 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1477 +MARKETING_VERSION = 0.0.1478 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1f43f728e75aec3972ddac6273f7ae5ebd2e8041 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Dec 2023 06:12:51 +0000 Subject: [PATCH 1536/2586] Auto-release 0.0.1479 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aa446b76fe21..d08e2b8f96fd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1478 +MARKETING_VERSION = 0.0.1479 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 12b71e3a08f03a3eb4cf90837c86994a87fdf01c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Dec 2023 12:16:49 +0000 Subject: [PATCH 1537/2586] Auto-release 0.0.1480 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d08e2b8f96fd..49685c5bd406 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1479 +MARKETING_VERSION = 0.0.1480 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 94e4c03ca878d31adb65644f2cce548e8ba4b2d8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Dec 2023 18:12:21 +0000 Subject: [PATCH 1538/2586] Auto-release 0.0.1481 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 49685c5bd406..cce4134e3ac0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1480 +MARKETING_VERSION = 0.0.1481 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2e5c7003cca84f540fb1f2a0f6f23d48b67695d1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Dec 2023 00:40:42 +0000 Subject: [PATCH 1539/2586] Auto-release 0.0.1482 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cce4134e3ac0..870debb26865 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1481 +MARKETING_VERSION = 0.0.1482 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0c6ef31713cc609a872c134f625e03b2b9fba452 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Dec 2023 06:11:34 +0000 Subject: [PATCH 1540/2586] Auto-release 0.0.1483 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 870debb26865..6edaaf3021ac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1482 +MARKETING_VERSION = 0.0.1483 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7368fd77e638d792dcc8f557c7b0c43d298366b6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Dec 2023 12:16:04 +0000 Subject: [PATCH 1541/2586] Auto-release 0.0.1484 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6edaaf3021ac..e2a5ba89e200 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1483 +MARKETING_VERSION = 0.0.1484 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 72453ad440bd6cbaea58a6647373b921560b5bca Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Dec 2023 18:10:50 +0000 Subject: [PATCH 1542/2586] Auto-release 0.0.1485 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e2a5ba89e200..187e64b8872f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1484 +MARKETING_VERSION = 0.0.1485 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 55b5c8eac427df2e6f29905555fe52a42548caf1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Dec 2023 00:44:21 +0000 Subject: [PATCH 1543/2586] Auto-release 0.0.1486 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 187e64b8872f..0672c66ebe2c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1485 +MARKETING_VERSION = 0.0.1486 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ad85a997b0fe974f57ddede820ae1530834f53a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Dec 2023 06:11:02 +0000 Subject: [PATCH 1544/2586] Auto-release 0.0.1487 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0672c66ebe2c..cf73063cd44f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1486 +MARKETING_VERSION = 0.0.1487 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4520cb7df5dbec8104bb8f22ce1ac643313f7ee1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Dec 2023 12:15:10 +0000 Subject: [PATCH 1545/2586] Auto-release 0.0.1488 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf73063cd44f..34a6cba0dfde 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1487 +MARKETING_VERSION = 0.0.1488 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d1fcb5ee5aee464c3411a1449b4cf8b7fcd405ff Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Dec 2023 18:10:47 +0000 Subject: [PATCH 1546/2586] Auto-release 0.0.1489 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34a6cba0dfde..7bfa066c7186 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1488 +MARKETING_VERSION = 0.0.1489 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 70ab943b4c74366727823021c87615079d7b7f74 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Dec 2023 00:42:19 +0000 Subject: [PATCH 1547/2586] Auto-release 0.0.1490 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7bfa066c7186..c834b3350122 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1489 +MARKETING_VERSION = 0.0.1490 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1d866e1f99b222b2fe25c207217ced65a01bec4b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Dec 2023 06:13:32 +0000 Subject: [PATCH 1548/2586] Auto-release 0.0.1491 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c834b3350122..c43745e30f1d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1490 +MARKETING_VERSION = 0.0.1491 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c30593406c4ec4537973b755fad65014343d42d8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Dec 2023 12:17:16 +0000 Subject: [PATCH 1549/2586] Auto-release 0.0.1492 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c43745e30f1d..e387cce83322 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1491 +MARKETING_VERSION = 0.0.1492 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2f3fa0a54af5c0e0112e6a81d33a84f0f134690b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Dec 2023 18:11:59 +0000 Subject: [PATCH 1550/2586] Auto-release 0.0.1493 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e387cce83322..15d60497e98d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1492 +MARKETING_VERSION = 0.0.1493 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f43209a2b39ff75b77c12927518627202366aa7b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Dec 2023 00:41:23 +0000 Subject: [PATCH 1551/2586] Auto-release 0.0.1494 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 15d60497e98d..ad58fe8575ec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1493 +MARKETING_VERSION = 0.0.1494 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0c28457bfa6673a6b28a18222bf35dcda119ebbd Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Dec 2023 06:12:07 +0000 Subject: [PATCH 1552/2586] Auto-release 0.0.1495 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad58fe8575ec..e8096ad544f8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1494 +MARKETING_VERSION = 0.0.1495 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 731644c4a59008d90c3da22b6a0293496367e327 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Dec 2023 12:16:34 +0000 Subject: [PATCH 1553/2586] Auto-release 0.0.1496 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e8096ad544f8..257bcd04c4a9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1495 +MARKETING_VERSION = 0.0.1496 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 60b04fb6f3f8e1d4f9e20635d29bd57192f9ffb3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Dec 2023 18:09:35 +0000 Subject: [PATCH 1554/2586] Auto-release 0.0.1497 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 257bcd04c4a9..dda4838f729d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1496 +MARKETING_VERSION = 0.0.1497 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e4ceca6c0f8e99268fb8e4c6d2916f386a1a2c18 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Dec 2023 00:34:02 +0000 Subject: [PATCH 1555/2586] Auto-release 0.0.1498 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dda4838f729d..59ccee160e5d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1497 +MARKETING_VERSION = 0.0.1498 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 34ff1daf7df25a313295eec260933461ffc7cc26 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Dec 2023 06:10:35 +0000 Subject: [PATCH 1556/2586] Auto-release 0.0.1499 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 59ccee160e5d..84da10b6a761 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1498 +MARKETING_VERSION = 0.0.1499 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bc898147830ab969f0eeb815d40fdc95bc0e4191 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Dec 2023 12:14:08 +0000 Subject: [PATCH 1557/2586] Auto-release 0.0.1500 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 84da10b6a761..6a76511b62f2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1499 +MARKETING_VERSION = 0.0.1500 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9aa82f5c694b2eeb23b21ed4b0bcac57c0e4a318 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Dec 2023 18:11:42 +0000 Subject: [PATCH 1558/2586] Auto-release 0.0.1501 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6a76511b62f2..fc302e3dc6d8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1500 +MARKETING_VERSION = 0.0.1501 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b92e162e659e1011767d38a461eaf984cfb26d40 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Dec 2023 00:40:45 +0000 Subject: [PATCH 1559/2586] Auto-release 0.0.1502 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fc302e3dc6d8..d7f692846cc5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1501 +MARKETING_VERSION = 0.0.1502 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 27282cfc44f72195464c5d2d144bd97508974831 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Dec 2023 06:12:18 +0000 Subject: [PATCH 1560/2586] Auto-release 0.0.1503 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d7f692846cc5..d48b3688fed8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1502 +MARKETING_VERSION = 0.0.1503 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 47e9764e58cd3ae5369f42a22e3e44053558040c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Dec 2023 12:16:17 +0000 Subject: [PATCH 1561/2586] Auto-release 0.0.1504 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d48b3688fed8..4f7aa513f2ad 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1503 +MARKETING_VERSION = 0.0.1504 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 525cb15c0cfabb80365eb7fd571bf2a1c48bd29c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Dec 2023 18:10:23 +0000 Subject: [PATCH 1562/2586] Auto-release 0.0.1505 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4f7aa513f2ad..61fe9265448f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1504 +MARKETING_VERSION = 0.0.1505 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6b038fcce3bc443442ecd94668c2cb8f9d1e4c1f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Dec 2023 00:40:33 +0000 Subject: [PATCH 1563/2586] Auto-release 0.0.1506 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 61fe9265448f..2eb3d5bf9da9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1505 +MARKETING_VERSION = 0.0.1506 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a0d8c7f30253131fed5a5f71713657032af046ed Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Dec 2023 06:12:26 +0000 Subject: [PATCH 1564/2586] Auto-release 0.0.1507 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2eb3d5bf9da9..57fc2c5b29b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1506 +MARKETING_VERSION = 0.0.1507 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c24592fc72662cb94636688049aa25b99984cd63 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Dec 2023 12:15:54 +0000 Subject: [PATCH 1565/2586] Auto-release 0.0.1508 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 57fc2c5b29b0..df4f38de6e4b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1507 +MARKETING_VERSION = 0.0.1508 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 308c998c8d95003f1a66513874a5db6cc8d4e6ee Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Dec 2023 18:11:17 +0000 Subject: [PATCH 1566/2586] Auto-release 0.0.1509 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df4f38de6e4b..2d893a676bc9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1508 +MARKETING_VERSION = 0.0.1509 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3cf4f8321788ee36819694498c8a8f7cf76e16a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Dec 2023 00:39:09 +0000 Subject: [PATCH 1567/2586] Auto-release 0.0.1510 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d893a676bc9..6f900e3f546a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1509 +MARKETING_VERSION = 0.0.1510 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3be24453734f8f8ffb075dea08ce1ad6b7124a8d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Dec 2023 06:12:02 +0000 Subject: [PATCH 1568/2586] Auto-release 0.0.1511 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6f900e3f546a..e992469526d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1510 +MARKETING_VERSION = 0.0.1511 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 33a90834967d3dd4b314230322bc9f51698e9ded Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Dec 2023 12:14:45 +0000 Subject: [PATCH 1569/2586] Auto-release 0.0.1512 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e992469526d2..658cc2a999da 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1511 +MARKETING_VERSION = 0.0.1512 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 90f09341d25697d8b0444ed50bec438d75eb137e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Dec 2023 18:10:40 +0000 Subject: [PATCH 1570/2586] Auto-release 0.0.1513 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 658cc2a999da..63a39e4cf247 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1512 +MARKETING_VERSION = 0.0.1513 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8efa0e4bd52abe082efb3633715b19079107d2e4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Dec 2023 00:43:44 +0000 Subject: [PATCH 1571/2586] Auto-release 0.0.1514 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 63a39e4cf247..2aedebf5bb86 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1513 +MARKETING_VERSION = 0.0.1514 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dbc69ebce4cc496ec5b0ae84bf4a1d7e3ab37b41 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Dec 2023 06:11:21 +0000 Subject: [PATCH 1572/2586] Auto-release 0.0.1515 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2aedebf5bb86..1d63803ff333 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1514 +MARKETING_VERSION = 0.0.1515 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8c126ad008821b9cc4acbe46c7f0897d501dc7bf Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Dec 2023 12:14:31 +0000 Subject: [PATCH 1573/2586] Auto-release 0.0.1516 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1d63803ff333..5ffc24d4933d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1515 +MARKETING_VERSION = 0.0.1516 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 718c86b08ea9727781f5994ed088a174c9f69238 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Dec 2023 18:10:34 +0000 Subject: [PATCH 1574/2586] Auto-release 0.0.1517 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5ffc24d4933d..4fd91150256a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1516 +MARKETING_VERSION = 0.0.1517 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9aac41c242a268bdcf42b2bb98fdda797d9a623c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Dec 2023 00:42:39 +0000 Subject: [PATCH 1575/2586] Auto-release 0.0.1518 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4fd91150256a..eab737292123 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1517 +MARKETING_VERSION = 0.0.1518 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dfb722e7705df6d8091d380e5250a83c7b581daa Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Dec 2023 06:12:55 +0000 Subject: [PATCH 1576/2586] Auto-release 0.0.1519 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eab737292123..cf82a405ce34 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1518 +MARKETING_VERSION = 0.0.1519 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 270f73db698ec0c9e54421961786684cc99e26ab Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Dec 2023 12:16:08 +0000 Subject: [PATCH 1577/2586] Auto-release 0.0.1520 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf82a405ce34..45a448bcfcbd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1519 +MARKETING_VERSION = 0.0.1520 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ce72d9326e14f6e5f254006822656b052a445557 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Dec 2023 18:11:10 +0000 Subject: [PATCH 1578/2586] Auto-release 0.0.1521 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 45a448bcfcbd..879b34dc42a3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1520 +MARKETING_VERSION = 0.0.1521 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 459b770506e8a1d11c0fb628fcbd284b5fa884e3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Dec 2023 00:39:44 +0000 Subject: [PATCH 1579/2586] Auto-release 0.0.1522 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 879b34dc42a3..6ee53ced7ade 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1521 +MARKETING_VERSION = 0.0.1522 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 67ea946021a96725d94900888d97eed46e947328 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Dec 2023 06:12:17 +0000 Subject: [PATCH 1580/2586] Auto-release 0.0.1523 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6ee53ced7ade..1035dc600bbd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1522 +MARKETING_VERSION = 0.0.1523 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1e18615c478c4373da25690a79a635962ff8f17c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Dec 2023 12:15:33 +0000 Subject: [PATCH 1581/2586] Auto-release 0.0.1524 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1035dc600bbd..e12043239351 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1523 +MARKETING_VERSION = 0.0.1524 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cfc88c1189a3ba79eaec88a3248765d606996049 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Dec 2023 18:11:30 +0000 Subject: [PATCH 1582/2586] Auto-release 0.0.1525 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e12043239351..33c9b2d7475e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1524 +MARKETING_VERSION = 0.0.1525 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3a8f953c811b3825094a7e931740c99354733a99 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Dec 2023 00:39:52 +0000 Subject: [PATCH 1583/2586] Auto-release 0.0.1526 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 33c9b2d7475e..0d8c272ea7ca 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1525 +MARKETING_VERSION = 0.0.1526 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1e2be4a84770137158fb5e90dc258223ee454905 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Dec 2023 06:12:42 +0000 Subject: [PATCH 1584/2586] Auto-release 0.0.1527 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0d8c272ea7ca..3e19c761f2cf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1526 +MARKETING_VERSION = 0.0.1527 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a99735da88918ea1d6ab538581487e0316c6ab78 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Dec 2023 12:15:45 +0000 Subject: [PATCH 1585/2586] Auto-release 0.0.1528 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e19c761f2cf..0e842c8549e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1527 +MARKETING_VERSION = 0.0.1528 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6d4cc615708e83bb18881924bf1b4ef1fddda5a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Dec 2023 18:11:15 +0000 Subject: [PATCH 1586/2586] Auto-release 0.0.1529 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0e842c8549e5..bd0b89586887 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1528 +MARKETING_VERSION = 0.0.1529 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3b37e773234dae6e1e2c0d8fce09a7b1ac0de147 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Dec 2023 00:39:29 +0000 Subject: [PATCH 1587/2586] Auto-release 0.0.1530 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bd0b89586887..4ce4ae148d6a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1529 +MARKETING_VERSION = 0.0.1530 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a68cb7f9d2021a5181f80132f87d08053f9947e0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Dec 2023 06:12:30 +0000 Subject: [PATCH 1588/2586] Auto-release 0.0.1531 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4ce4ae148d6a..1e29a433f0a6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1530 +MARKETING_VERSION = 0.0.1531 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ece2fdaf37ab50a32a4793b56d458ab23d1d0d31 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Dec 2023 12:15:52 +0000 Subject: [PATCH 1589/2586] Auto-release 0.0.1532 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1e29a433f0a6..28bde795a8c2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1531 +MARKETING_VERSION = 0.0.1532 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 86fa14a3efab98b8e1389ef81633d4317ba78383 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Dec 2023 18:11:54 +0000 Subject: [PATCH 1590/2586] Auto-release 0.0.1533 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 28bde795a8c2..0edd27369669 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1532 +MARKETING_VERSION = 0.0.1533 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5d3469efbcea12af040a9879f3e47ed0300f85ee Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Dec 2023 00:33:33 +0000 Subject: [PATCH 1591/2586] Auto-release 0.0.1534 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0edd27369669..9d7cd6eb9193 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1533 +MARKETING_VERSION = 0.0.1534 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 677e03d2a00e8f3602270344b338430f4a2de7a6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Dec 2023 06:12:27 +0000 Subject: [PATCH 1592/2586] Auto-release 0.0.1535 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9d7cd6eb9193..56c23187edbf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1534 +MARKETING_VERSION = 0.0.1535 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f8eaeba97727ae7870c8b52b0b1f744c5deb3c44 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Dec 2023 12:14:17 +0000 Subject: [PATCH 1593/2586] Auto-release 0.0.1536 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 56c23187edbf..a47d4cd5d87e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1535 +MARKETING_VERSION = 0.0.1536 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4277556dd8cc5544ac2a08a4efd2efbbcd6e0368 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Dec 2023 18:11:21 +0000 Subject: [PATCH 1594/2586] Auto-release 0.0.1537 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a47d4cd5d87e..22a0b14b0417 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1536 +MARKETING_VERSION = 0.0.1537 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ba8b8c4cf881cb05bc6f6145a0ca29e95b209c84 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Dec 2023 00:39:14 +0000 Subject: [PATCH 1595/2586] Auto-release 0.0.1538 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 22a0b14b0417..a8a0cd780815 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1537 +MARKETING_VERSION = 0.0.1538 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 265fb5c7ebcafa38fac945f68353b60937d14f1f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Dec 2023 06:11:21 +0000 Subject: [PATCH 1596/2586] Auto-release 0.0.1539 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a8a0cd780815..5eb2fee1a3ac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1538 +MARKETING_VERSION = 0.0.1539 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 488fcd085d1b51d5ddd55549b98c845df2fd4834 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Dec 2023 12:14:41 +0000 Subject: [PATCH 1597/2586] Auto-release 0.0.1540 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5eb2fee1a3ac..1fc639fe0129 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1539 +MARKETING_VERSION = 0.0.1540 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f49aa6fcefbeea663b501da2fb4b3bb365bee8fd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Dec 2023 18:11:14 +0000 Subject: [PATCH 1598/2586] Auto-release 0.0.1541 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1fc639fe0129..f1fdf669fccd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1540 +MARKETING_VERSION = 0.0.1541 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aaaccada58216026088954e02b306fee9b669503 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 31 Dec 2023 00:43:48 +0000 Subject: [PATCH 1599/2586] Auto-release 0.0.1542 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f1fdf669fccd..f68565957734 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1541 +MARKETING_VERSION = 0.0.1542 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f65ed92b463913fb40db86b7c2c71703d7f54b29 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 31 Dec 2023 06:11:21 +0000 Subject: [PATCH 1600/2586] Auto-release 0.0.1543 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f68565957734..2834c564687f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1542 +MARKETING_VERSION = 0.0.1543 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a58cb2f6d4e6dbc3ebff0a9e5c1036f4eef89b78 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 31 Dec 2023 12:15:10 +0000 Subject: [PATCH 1601/2586] Auto-release 0.0.1544 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2834c564687f..336475e5247d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1543 +MARKETING_VERSION = 0.0.1544 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 02519669b6ec8e4e0415db7307bb40f06ae6a008 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 31 Dec 2023 18:10:13 +0000 Subject: [PATCH 1602/2586] Auto-release 0.0.1545 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 336475e5247d..12d77eb4c8de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1544 +MARKETING_VERSION = 0.0.1545 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fd950e73625947783114d4ec813d035fd3fcb25f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Jan 2024 00:45:15 +0000 Subject: [PATCH 1603/2586] Auto-release 0.0.1546 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 12d77eb4c8de..e95ec8a6998b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1545 +MARKETING_VERSION = 0.0.1546 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4f230be4dcc7720e359de3529543ae7888b0ca06 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Jan 2024 06:13:20 +0000 Subject: [PATCH 1604/2586] Auto-release 0.0.1547 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e95ec8a6998b..21fbfc333169 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1546 +MARKETING_VERSION = 0.0.1547 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2f86b34ddcba9838077f3923ec918a988fb277d5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Jan 2024 12:16:25 +0000 Subject: [PATCH 1605/2586] Auto-release 0.0.1548 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 21fbfc333169..61a4a5ab1513 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1547 +MARKETING_VERSION = 0.0.1548 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 40cadd18d7de8313535c48791e7590ba897dd3ce Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Jan 2024 18:12:00 +0000 Subject: [PATCH 1606/2586] Auto-release 0.0.1549 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 61a4a5ab1513..efc334b9e796 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1548 +MARKETING_VERSION = 0.0.1549 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4dbacaad7ea28e39a4a7b20dc4bf2c22e95967a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Jan 2024 00:40:13 +0000 Subject: [PATCH 1607/2586] Auto-release 0.0.1550 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index efc334b9e796..24e4fe708524 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1549 +MARKETING_VERSION = 0.0.1550 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 18affd3a54b717d8da0094d4f2fa83b0e64f8cd2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Jan 2024 06:12:23 +0000 Subject: [PATCH 1608/2586] Auto-release 0.0.1551 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 24e4fe708524..742233cc898f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1550 +MARKETING_VERSION = 0.0.1551 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3292377cf7ec775dfee41b75a920eb2249551a8c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Jan 2024 12:16:03 +0000 Subject: [PATCH 1609/2586] Auto-release 0.0.1552 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 742233cc898f..8121e3aa307c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1551 +MARKETING_VERSION = 0.0.1552 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a134de4fbda2d3f37f8d68837844425ecc21aa27 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Jan 2024 18:12:23 +0000 Subject: [PATCH 1610/2586] Auto-release 0.0.1553 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8121e3aa307c..f0b8a2a8f6de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1552 +MARKETING_VERSION = 0.0.1553 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c3eb28c301a3a8f1a3770500bf5e687737e31f2e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Jan 2024 00:41:45 +0000 Subject: [PATCH 1611/2586] Auto-release 0.0.1554 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f0b8a2a8f6de..7b3e4c1f42c6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1553 +MARKETING_VERSION = 0.0.1554 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 65d6f311e55a0af7b0c9df51e4951f46892f204c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Jan 2024 06:12:09 +0000 Subject: [PATCH 1612/2586] Auto-release 0.0.1555 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7b3e4c1f42c6..4344f3c0f001 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1554 +MARKETING_VERSION = 0.0.1555 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f8dfe0450e2032d003db1798d89671485155f4ea Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Jan 2024 12:16:09 +0000 Subject: [PATCH 1613/2586] Auto-release 0.0.1556 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4344f3c0f001..775670ab1aa1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1555 +MARKETING_VERSION = 0.0.1556 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 872fcc23a04e4f1e4628bb73db5602f51f397d6f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Jan 2024 18:11:55 +0000 Subject: [PATCH 1614/2586] Auto-release 0.0.1557 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 775670ab1aa1..df5ab5b82144 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1556 +MARKETING_VERSION = 0.0.1557 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5c382124a5e5fd03d9cb78924a3b3d79f982ca88 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Jan 2024 00:42:05 +0000 Subject: [PATCH 1615/2586] Auto-release 0.0.1558 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df5ab5b82144..2d6b5cc126f0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1557 +MARKETING_VERSION = 0.0.1558 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 519734bcc3bea69930b623e3c9363bdac575e980 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Jan 2024 06:12:40 +0000 Subject: [PATCH 1616/2586] Auto-release 0.0.1559 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d6b5cc126f0..ed0bc93b5ba3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1558 +MARKETING_VERSION = 0.0.1559 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 643a909f522cb905cbcf5cc1cd80bdf7e4b2f85a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Jan 2024 12:16:05 +0000 Subject: [PATCH 1617/2586] Auto-release 0.0.1560 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ed0bc93b5ba3..cb1773b0c454 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1559 +MARKETING_VERSION = 0.0.1560 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0a76d6dedf1dc69f16606fdc31b538b251c2531c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Jan 2024 18:11:37 +0000 Subject: [PATCH 1618/2586] Auto-release 0.0.1561 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cb1773b0c454..1387d1e722ab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1560 +MARKETING_VERSION = 0.0.1561 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 464e1cdfe1d11025a13c840cf7d4a415425e41b4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Jan 2024 00:41:30 +0000 Subject: [PATCH 1619/2586] Auto-release 0.0.1562 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1387d1e722ab..59e7dd4e47f2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1561 +MARKETING_VERSION = 0.0.1562 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 542066c2ad0544e56196740c0c3d50be7bebebe5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Jan 2024 06:12:11 +0000 Subject: [PATCH 1620/2586] Auto-release 0.0.1563 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 59e7dd4e47f2..a1fdff1f9b27 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1562 +MARKETING_VERSION = 0.0.1563 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5686db312be031fb977bae180b08bed472a686fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Jan 2024 12:16:11 +0000 Subject: [PATCH 1621/2586] Auto-release 0.0.1564 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a1fdff1f9b27..aaabe54c33ab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1563 +MARKETING_VERSION = 0.0.1564 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b8e7f4ed4f8186a13da2186276ca1a6445bfae2d Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Jan 2024 18:11:32 +0000 Subject: [PATCH 1622/2586] Auto-release 0.0.1565 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aaabe54c33ab..a0276291d584 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1564 +MARKETING_VERSION = 0.0.1565 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8e8cdee893ad5ceb925251546da55b0458ac103f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Jan 2024 00:40:42 +0000 Subject: [PATCH 1623/2586] Auto-release 0.0.1566 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a0276291d584..7dd10e8a6670 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1565 +MARKETING_VERSION = 0.0.1566 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 00d68af8ffd12d5dc7c76806e1cfb401c2be6a7a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Jan 2024 06:11:04 +0000 Subject: [PATCH 1624/2586] Auto-release 0.0.1567 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7dd10e8a6670..33cd76e0c364 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1566 +MARKETING_VERSION = 0.0.1567 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 77677a7608f51b3fa7142553917ecec37ee7f673 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Jan 2024 12:15:03 +0000 Subject: [PATCH 1625/2586] Auto-release 0.0.1568 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 33cd76e0c364..16849e7d293e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1567 +MARKETING_VERSION = 0.0.1568 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 05597dcd40da4b4193659eb1e48f3ffc39e0c1f3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Jan 2024 18:10:43 +0000 Subject: [PATCH 1626/2586] Auto-release 0.0.1569 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 16849e7d293e..0544137fa706 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1568 +MARKETING_VERSION = 0.0.1569 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c28c8205fd789688b7a819fc1b9473bf4e34b34d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Jan 2024 00:45:21 +0000 Subject: [PATCH 1627/2586] Auto-release 0.0.1570 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0544137fa706..ee3fa0f07cc1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1569 +MARKETING_VERSION = 0.0.1570 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 915e550d6a69c043bf4362466e78c31ffffdd0c6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Jan 2024 06:11:42 +0000 Subject: [PATCH 1628/2586] Auto-release 0.0.1571 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ee3fa0f07cc1..6c8bb10f65b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1570 +MARKETING_VERSION = 0.0.1571 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1eb0030591bd7ed67cb3a95830f6e70282c5bdd1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Jan 2024 12:15:08 +0000 Subject: [PATCH 1629/2586] Auto-release 0.0.1572 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6c8bb10f65b9..50fb7736ab10 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1571 +MARKETING_VERSION = 0.0.1572 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a9758045ea304941d9b9fe5dfc9ed8b361e41163 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Jan 2024 18:10:58 +0000 Subject: [PATCH 1630/2586] Auto-release 0.0.1573 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 50fb7736ab10..d44054b4d5eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1572 +MARKETING_VERSION = 0.0.1573 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fc61bbc90b92eb38064a543fd4f77940c21c8ff4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Jan 2024 00:42:25 +0000 Subject: [PATCH 1631/2586] Auto-release 0.0.1574 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d44054b4d5eb..e0074e377924 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1573 +MARKETING_VERSION = 0.0.1574 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c6378b251aaec734ff3af1884d5c242f2a96f2cd Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Jan 2024 06:13:24 +0000 Subject: [PATCH 1632/2586] Auto-release 0.0.1575 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e0074e377924..2f7423a7dde8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1574 +MARKETING_VERSION = 0.0.1575 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 80b5dd7776d8dcced3f99ca0de1046e8790ab81e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Jan 2024 12:17:45 +0000 Subject: [PATCH 1633/2586] Auto-release 0.0.1576 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f7423a7dde8..b211708fd7fa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1575 +MARKETING_VERSION = 0.0.1576 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e46ff2512dc8f8221c62c0ac1f71fa632640dc62 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Jan 2024 18:12:41 +0000 Subject: [PATCH 1634/2586] Auto-release 0.0.1577 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b211708fd7fa..881febf1ec16 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1576 +MARKETING_VERSION = 0.0.1577 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ce28b869d9cd2d212580e1052a39c6baea3b20ae Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Jan 2024 00:42:24 +0000 Subject: [PATCH 1635/2586] Auto-release 0.0.1578 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 881febf1ec16..ed0b8dcbade8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1577 +MARKETING_VERSION = 0.0.1578 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f364e5994b37c8e15d946901940fe8a14d4098ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Jan 2024 06:12:44 +0000 Subject: [PATCH 1636/2586] Auto-release 0.0.1579 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ed0b8dcbade8..8c871cc8eea9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1578 +MARKETING_VERSION = 0.0.1579 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aba95c418272617ce01a12e8d2d78c6008f4f5a7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Jan 2024 12:16:35 +0000 Subject: [PATCH 1637/2586] Auto-release 0.0.1580 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8c871cc8eea9..f741cc1fd4c4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1579 +MARKETING_VERSION = 0.0.1580 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9ee860043010c8cea0e751d6ebf50fd1f99c0df8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Jan 2024 18:10:14 +0000 Subject: [PATCH 1638/2586] Auto-release 0.0.1581 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f741cc1fd4c4..ea69ab514edf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1580 +MARKETING_VERSION = 0.0.1581 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3adba654f1c948954030e06b6680fa60b1071199 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Jan 2024 00:42:31 +0000 Subject: [PATCH 1639/2586] Auto-release 0.0.1582 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ea69ab514edf..c7597a60da96 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1581 +MARKETING_VERSION = 0.0.1582 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5d8cee9418e85004623d5ebc8ff64de86cd30781 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Jan 2024 06:13:12 +0000 Subject: [PATCH 1640/2586] Auto-release 0.0.1583 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c7597a60da96..ea3dcdf0d42c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1582 +MARKETING_VERSION = 0.0.1583 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b44bb8c0e897172f13210100636fca959901aeff Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Jan 2024 12:18:31 +0000 Subject: [PATCH 1641/2586] Auto-release 0.0.1584 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ea3dcdf0d42c..518dc8d47007 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1583 +MARKETING_VERSION = 0.0.1584 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 564f4749ad6a3039c949e25072b86a4e222b72a2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Jan 2024 18:11:49 +0000 Subject: [PATCH 1642/2586] Auto-release 0.0.1585 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 518dc8d47007..599502f7b2be 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1584 +MARKETING_VERSION = 0.0.1585 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From abaa3616ddf418be0cc0dcb912fdde9c906cb58f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Jan 2024 00:42:25 +0000 Subject: [PATCH 1643/2586] Auto-release 0.0.1586 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 599502f7b2be..48c8824acca9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1585 +MARKETING_VERSION = 0.0.1586 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9c13f06d1d44eae7ad6bad3f6cae8bd92303ec3b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Jan 2024 06:13:09 +0000 Subject: [PATCH 1644/2586] Auto-release 0.0.1587 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 48c8824acca9..fa8c9f901603 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1586 +MARKETING_VERSION = 0.0.1587 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0dafec331d9af92addda2d3fb1c3dc06b715930e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Jan 2024 12:17:00 +0000 Subject: [PATCH 1645/2586] Auto-release 0.0.1588 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fa8c9f901603..041eca8b56ee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1587 +MARKETING_VERSION = 0.0.1588 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 365cbe8b2c9c0fb6b596c243ff9a87341224767c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Jan 2024 18:11:42 +0000 Subject: [PATCH 1646/2586] Auto-release 0.0.1589 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 041eca8b56ee..87aaf68f694f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1588 +MARKETING_VERSION = 0.0.1589 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 35696aefab8fa00dacb8f46593fea8bb0b62538e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Jan 2024 00:43:33 +0000 Subject: [PATCH 1647/2586] Auto-release 0.0.1590 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 87aaf68f694f..6aa7da860af6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1589 +MARKETING_VERSION = 0.0.1590 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1e746c500f9a50243cdfb22469c85f2e8a1ae782 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Jan 2024 06:12:38 +0000 Subject: [PATCH 1648/2586] Auto-release 0.0.1591 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6aa7da860af6..33daa637cd65 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1590 +MARKETING_VERSION = 0.0.1591 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 96211357fb44c7f3486140657ff2e0d1ecad4a53 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Jan 2024 12:16:55 +0000 Subject: [PATCH 1649/2586] Auto-release 0.0.1592 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 33daa637cd65..4b32dd774686 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1591 +MARKETING_VERSION = 0.0.1592 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 613cb4373741bb44bb4fb99b04cc7ca5ac20890b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Jan 2024 18:11:57 +0000 Subject: [PATCH 1650/2586] Auto-release 0.0.1593 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4b32dd774686..6b1790af975f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1592 +MARKETING_VERSION = 0.0.1593 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 50493d6a6425d3fadf1284f0830b5bc96243d9dc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Jan 2024 00:41:15 +0000 Subject: [PATCH 1651/2586] Auto-release 0.0.1594 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6b1790af975f..5a4c717fa0d9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1593 +MARKETING_VERSION = 0.0.1594 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e1bdfb683dfd2186defdf6b7088b411219f61a8b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Jan 2024 06:11:22 +0000 Subject: [PATCH 1652/2586] Auto-release 0.0.1595 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5a4c717fa0d9..ec9df0c2a066 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1594 +MARKETING_VERSION = 0.0.1595 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ba3bcfd3648622b262db1a2603a18f5eb75d9ab5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Jan 2024 12:15:29 +0000 Subject: [PATCH 1653/2586] Auto-release 0.0.1596 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ec9df0c2a066..057454765cff 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1595 +MARKETING_VERSION = 0.0.1596 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c0adae0b4ff8b60933aa0f49adc491ccebf23618 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Jan 2024 18:10:48 +0000 Subject: [PATCH 1654/2586] Auto-release 0.0.1597 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 057454765cff..ede9fb13096c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1596 +MARKETING_VERSION = 0.0.1597 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1b5b0ec30630a4ae76e68fb48600df2e27071e35 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Jan 2024 00:46:08 +0000 Subject: [PATCH 1655/2586] Auto-release 0.0.1598 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ede9fb13096c..5160dd03fc5d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1597 +MARKETING_VERSION = 0.0.1598 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 11714fbd945f53c07b2fc4d91dc644212c3d4bdc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Jan 2024 06:11:39 +0000 Subject: [PATCH 1656/2586] Auto-release 0.0.1599 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5160dd03fc5d..1ed87d691382 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1598 +MARKETING_VERSION = 0.0.1599 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7e8c024bab096d4188f1fee241da1177668ba104 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Jan 2024 12:15:37 +0000 Subject: [PATCH 1657/2586] Auto-release 0.0.1600 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ed87d691382..7b58f8d939ca 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1599 +MARKETING_VERSION = 0.0.1600 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 308cc4af1eb303fdd81eff4a54c1ae3139de5ff2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Jan 2024 18:10:51 +0000 Subject: [PATCH 1658/2586] Auto-release 0.0.1601 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7b58f8d939ca..54028a3bb8c3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1600 +MARKETING_VERSION = 0.0.1601 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 07c231c2999a2fbc25c56a4691c4a72f0dbf4c2a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Jan 2024 00:44:30 +0000 Subject: [PATCH 1659/2586] Auto-release 0.0.1602 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 54028a3bb8c3..a4d59c04b95e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1601 +MARKETING_VERSION = 0.0.1602 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c9b41c0d7537b02e26f16a677e7836fae0c9495b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Jan 2024 06:13:26 +0000 Subject: [PATCH 1660/2586] Auto-release 0.0.1603 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a4d59c04b95e..140319aef1c9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1602 +MARKETING_VERSION = 0.0.1603 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6b281133e1bfa66a2155741ded0387ccddd7544e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Jan 2024 12:17:10 +0000 Subject: [PATCH 1661/2586] Auto-release 0.0.1604 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 140319aef1c9..a59acc666a9a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1603 +MARKETING_VERSION = 0.0.1604 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3ab9273acb8b8c112544978e222c1b23d9e01647 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Jan 2024 18:11:42 +0000 Subject: [PATCH 1662/2586] Auto-release 0.0.1605 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a59acc666a9a..005beecce055 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1604 +MARKETING_VERSION = 0.0.1605 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1570a800fe8b01796ab84641fa4a98b120303ba1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Jan 2024 00:41:46 +0000 Subject: [PATCH 1663/2586] Auto-release 0.0.1606 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 005beecce055..b464add928cf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1605 +MARKETING_VERSION = 0.0.1606 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9ccac03a991eadd92101a5e308a08760420b51d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Jan 2024 06:12:58 +0000 Subject: [PATCH 1664/2586] Auto-release 0.0.1607 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b464add928cf..a7c527c99925 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1606 +MARKETING_VERSION = 0.0.1607 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f2aeb4d14b51927806ab9cba26327d63020dcf63 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Jan 2024 12:17:26 +0000 Subject: [PATCH 1665/2586] Auto-release 0.0.1608 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a7c527c99925..ecc62dcb3a04 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1607 +MARKETING_VERSION = 0.0.1608 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3ed41a7eb030687309b4003059293438e6952885 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Jan 2024 18:11:45 +0000 Subject: [PATCH 1666/2586] Auto-release 0.0.1609 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ecc62dcb3a04..783bb821721d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1608 +MARKETING_VERSION = 0.0.1609 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4fa7d05a107eb3435c1f5f5e210284f336cb4ab9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Jan 2024 00:43:22 +0000 Subject: [PATCH 1667/2586] Auto-release 0.0.1610 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 783bb821721d..aa7ba18e96c9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1609 +MARKETING_VERSION = 0.0.1610 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7876efa65a44634c0528c7ccda0a6315131ab3f1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Jan 2024 06:12:57 +0000 Subject: [PATCH 1668/2586] Auto-release 0.0.1611 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aa7ba18e96c9..0281ddc65e64 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1610 +MARKETING_VERSION = 0.0.1611 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eb15af232e8bd6e6819bdd9da8ffd568b5020b57 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Jan 2024 12:17:21 +0000 Subject: [PATCH 1669/2586] Auto-release 0.0.1612 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0281ddc65e64..937c801f7e47 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1611 +MARKETING_VERSION = 0.0.1612 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 581e9e16fe69ed3414caf1d077d3deabfb8594f6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Jan 2024 18:12:18 +0000 Subject: [PATCH 1670/2586] Auto-release 0.0.1613 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 937c801f7e47..4cd4af96de28 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1612 +MARKETING_VERSION = 0.0.1613 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0f5954d8f72c4df0e83531076b220c12d6acb309 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Jan 2024 00:42:00 +0000 Subject: [PATCH 1671/2586] Auto-release 0.0.1614 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4cd4af96de28..bde6db9ba382 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1613 +MARKETING_VERSION = 0.0.1614 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c3095db63fee1a7ee04f8260396f489e9e2ed6a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Jan 2024 06:13:14 +0000 Subject: [PATCH 1672/2586] Auto-release 0.0.1615 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bde6db9ba382..1ea4279d7bec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1614 +MARKETING_VERSION = 0.0.1615 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From df1e5b10d5bea119dd878066648b3acac6fea5ef Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Jan 2024 12:17:18 +0000 Subject: [PATCH 1673/2586] Auto-release 0.0.1616 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ea4279d7bec..7444e2af0c10 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1615 +MARKETING_VERSION = 0.0.1616 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 43e00fd9d32b99e9635eec332321312664c2dbb5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Jan 2024 18:11:56 +0000 Subject: [PATCH 1674/2586] Auto-release 0.0.1617 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7444e2af0c10..51429ea3587c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1616 +MARKETING_VERSION = 0.0.1617 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6afcaf1907018b58a0ed203d05edabac55399bfe Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Jan 2024 00:42:08 +0000 Subject: [PATCH 1675/2586] Auto-release 0.0.1618 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 51429ea3587c..4f7377ebbfbd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1617 +MARKETING_VERSION = 0.0.1618 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 450c244b63707c0f9b5364e7f64dc440416ee34a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Jan 2024 06:13:04 +0000 Subject: [PATCH 1676/2586] Auto-release 0.0.1619 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4f7377ebbfbd..14724b0bfcae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1618 +MARKETING_VERSION = 0.0.1619 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 88d57e236caf20b3da4307a4b6872123fc03d76c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Jan 2024 12:17:00 +0000 Subject: [PATCH 1677/2586] Auto-release 0.0.1620 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 14724b0bfcae..2af5a70ba330 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1619 +MARKETING_VERSION = 0.0.1620 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9612064a534d775cbecb184cdc51e0c2395beab3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Jan 2024 18:12:06 +0000 Subject: [PATCH 1678/2586] Auto-release 0.0.1621 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2af5a70ba330..a60ad85323e4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1620 +MARKETING_VERSION = 0.0.1621 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 506c274e31ba7746fa9d1f35fafbba0f4ac9d349 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Jan 2024 00:41:13 +0000 Subject: [PATCH 1679/2586] Auto-release 0.0.1622 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a60ad85323e4..944a90f0aca4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1621 +MARKETING_VERSION = 0.0.1622 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 67ee607caa01aedd2d352a19a1347122bb0b2a89 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Jan 2024 06:11:42 +0000 Subject: [PATCH 1680/2586] Auto-release 0.0.1623 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 944a90f0aca4..b5b320f7066f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1622 +MARKETING_VERSION = 0.0.1623 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ebb6a1e02161affbe8bbc1af615f953bce87ef3b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Jan 2024 12:15:32 +0000 Subject: [PATCH 1681/2586] Auto-release 0.0.1624 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b5b320f7066f..2dc70f534981 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1623 +MARKETING_VERSION = 0.0.1624 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d1a5e38b79b612f6795d546ec82190ef6f57f59e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Jan 2024 18:11:11 +0000 Subject: [PATCH 1682/2586] Auto-release 0.0.1625 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2dc70f534981..c860db79bafb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1624 +MARKETING_VERSION = 0.0.1625 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2f7f25aca39dae797ad1b9f9ba268b57fe44382c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Jan 2024 00:45:39 +0000 Subject: [PATCH 1683/2586] Auto-release 0.0.1626 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c860db79bafb..f5cabaefcaa8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1625 +MARKETING_VERSION = 0.0.1626 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 575e8c905f468b52d5df60b3da1d37c76188d2ec Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Jan 2024 06:11:54 +0000 Subject: [PATCH 1684/2586] Auto-release 0.0.1627 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f5cabaefcaa8..9a2809f0c605 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1626 +MARKETING_VERSION = 0.0.1627 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b7278020a0d2c20c2db20f26a2c59f29f822d99f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Jan 2024 12:15:39 +0000 Subject: [PATCH 1685/2586] Auto-release 0.0.1628 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9a2809f0c605..0361f60b2732 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1627 +MARKETING_VERSION = 0.0.1628 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 10605ea0734e5b1749eb146c2712372516c8ef1c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Jan 2024 18:11:40 +0000 Subject: [PATCH 1686/2586] Auto-release 0.0.1629 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0361f60b2732..854241cb5ec2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1628 +MARKETING_VERSION = 0.0.1629 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dbfe6c7657a8a9bd33e759cb186bad98fac38e12 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Jan 2024 00:44:16 +0000 Subject: [PATCH 1687/2586] Auto-release 0.0.1630 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 854241cb5ec2..1b73c65d538f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1629 +MARKETING_VERSION = 0.0.1630 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 42b67a039c25372a52dedc9258ca18d55f33e03d Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Jan 2024 06:13:34 +0000 Subject: [PATCH 1688/2586] Auto-release 0.0.1631 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1b73c65d538f..69b8b54efd3f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1630 +MARKETING_VERSION = 0.0.1631 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c39d19341707e33e4f350dbb5ba5c8d2187115ff Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Jan 2024 12:17:48 +0000 Subject: [PATCH 1689/2586] Auto-release 0.0.1632 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 69b8b54efd3f..252b9e4452d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1631 +MARKETING_VERSION = 0.0.1632 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 240d8b0b86772afacf80b9f6ea8ce1ba2bad86ed Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Jan 2024 18:12:06 +0000 Subject: [PATCH 1690/2586] Auto-release 0.0.1633 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 252b9e4452d2..061d7658cc3b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1632 +MARKETING_VERSION = 0.0.1633 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4b265da53899c0ad28e056654521a1df25b7d889 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Jan 2024 00:42:48 +0000 Subject: [PATCH 1691/2586] Auto-release 0.0.1634 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 061d7658cc3b..906e67e1bac3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1633 +MARKETING_VERSION = 0.0.1634 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ab268288a06eaf34e2d071299d5b45d16a849d4e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Jan 2024 06:13:27 +0000 Subject: [PATCH 1692/2586] Auto-release 0.0.1635 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 906e67e1bac3..9b933099b109 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1634 +MARKETING_VERSION = 0.0.1635 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b9c6ce9147b24bc319ca2b09c6ac6189b8078202 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Jan 2024 12:17:14 +0000 Subject: [PATCH 1693/2586] Auto-release 0.0.1636 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9b933099b109..fb0c1bbfe44c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1635 +MARKETING_VERSION = 0.0.1636 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ce8f6ab52af1fcace5146236266be8c6f2faadcd Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Jan 2024 18:11:59 +0000 Subject: [PATCH 1694/2586] Auto-release 0.0.1637 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb0c1bbfe44c..33f8ebf7c5fa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1636 +MARKETING_VERSION = 0.0.1637 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 482fc156acd0d71b987e4f3fcaa089a0bfa59d59 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Jan 2024 00:42:42 +0000 Subject: [PATCH 1695/2586] Auto-release 0.0.1638 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 33f8ebf7c5fa..2d70300f9c41 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1637 +MARKETING_VERSION = 0.0.1638 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a9686dfcf3c77c196ea55a154ac7fc0f05628814 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Jan 2024 06:13:31 +0000 Subject: [PATCH 1696/2586] Auto-release 0.0.1639 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d70300f9c41..30bb190e9d35 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1638 +MARKETING_VERSION = 0.0.1639 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 07cdd9ebd67e5eb8e2be583f3e9eca47c19e390a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Jan 2024 12:17:43 +0000 Subject: [PATCH 1697/2586] Auto-release 0.0.1640 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 30bb190e9d35..7175e2b51fe5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1639 +MARKETING_VERSION = 0.0.1640 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 425146847074a66f1e5b634ea0bad56c31912119 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Jan 2024 18:12:24 +0000 Subject: [PATCH 1698/2586] Auto-release 0.0.1641 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7175e2b51fe5..f7c8f1f09801 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1640 +MARKETING_VERSION = 0.0.1641 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9c3dd120e56e31caf25def517e935130ce085528 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Jan 2024 00:42:55 +0000 Subject: [PATCH 1699/2586] Auto-release 0.0.1642 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f7c8f1f09801..7fe3a6caed82 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1641 +MARKETING_VERSION = 0.0.1642 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ed072a8d75863ee03da1ae6ac9ad70c1645fa5bc Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Jan 2024 06:12:48 +0000 Subject: [PATCH 1700/2586] Auto-release 0.0.1643 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7fe3a6caed82..3395741b8492 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1642 +MARKETING_VERSION = 0.0.1643 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 08d2d74b49ff9df32f4a9bb23b9693a930680573 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Jan 2024 12:17:17 +0000 Subject: [PATCH 1701/2586] Auto-release 0.0.1644 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3395741b8492..1a77b5fc6b17 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1643 +MARKETING_VERSION = 0.0.1644 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 51f42bbf190a3033a987af30b800678825930b6c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Jan 2024 18:12:11 +0000 Subject: [PATCH 1702/2586] Auto-release 0.0.1645 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1a77b5fc6b17..7973b23cb5dd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1644 +MARKETING_VERSION = 0.0.1645 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 631d2ad734d59ee1cf583658e510f8632567bd53 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Jan 2024 00:39:38 +0000 Subject: [PATCH 1703/2586] Auto-release 0.0.1646 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7973b23cb5dd..fb20ef2de705 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1645 +MARKETING_VERSION = 0.0.1646 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8cd26755581cb6f8c71916df99f0801fa8edf31a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Jan 2024 06:11:39 +0000 Subject: [PATCH 1704/2586] Auto-release 0.0.1647 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb20ef2de705..aad856153e1b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1646 +MARKETING_VERSION = 0.0.1647 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c361af313d77ac5f7dc175eb59449e34abf4a9b5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Jan 2024 12:15:28 +0000 Subject: [PATCH 1705/2586] Auto-release 0.0.1648 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aad856153e1b..181c09e7564d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1647 +MARKETING_VERSION = 0.0.1648 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ec4b4132ce3ee2ba8eba22a8921b8723fa60d6d1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Jan 2024 18:11:27 +0000 Subject: [PATCH 1706/2586] Auto-release 0.0.1649 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 181c09e7564d..95fbf8ed3a4e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1648 +MARKETING_VERSION = 0.0.1649 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 743dac49b3e5975fe9e981d0377f821e4117fa8e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Jan 2024 00:39:15 +0000 Subject: [PATCH 1707/2586] Auto-release 0.0.1650 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 95fbf8ed3a4e..dff59197ed61 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1649 +MARKETING_VERSION = 0.0.1650 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a6dd7ad7058e6c56b95cc81fde53767a3b769049 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Jan 2024 06:10:24 +0000 Subject: [PATCH 1708/2586] Auto-release 0.0.1651 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dff59197ed61..e03a4119ee71 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1650 +MARKETING_VERSION = 0.0.1651 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c86f67be3918cc36572c7db048f08338b4437325 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Jan 2024 12:14:03 +0000 Subject: [PATCH 1709/2586] Auto-release 0.0.1652 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e03a4119ee71..42b1fb74ad61 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1651 +MARKETING_VERSION = 0.0.1652 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d35382c29d3c152a6dd09c6ba9b550ddd808c13c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Jan 2024 18:10:21 +0000 Subject: [PATCH 1710/2586] Auto-release 0.0.1653 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 42b1fb74ad61..141ace7600a8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1652 +MARKETING_VERSION = 0.0.1653 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 45f64ae80a99cd358a9b5838ae884f7b6c583a17 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Jan 2024 00:42:33 +0000 Subject: [PATCH 1711/2586] Auto-release 0.0.1654 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 141ace7600a8..28dd9fdff159 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1653 +MARKETING_VERSION = 0.0.1654 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 352387b447b2cb6f04a22ed6a36c89cf97988f45 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Jan 2024 06:10:46 +0000 Subject: [PATCH 1712/2586] Auto-release 0.0.1655 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 28dd9fdff159..86a91b6176ab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1654 +MARKETING_VERSION = 0.0.1655 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5a57201eb111f32ad59527de715c61121019c317 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Jan 2024 12:13:42 +0000 Subject: [PATCH 1713/2586] Auto-release 0.0.1656 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 86a91b6176ab..0f2b60bc948e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1655 +MARKETING_VERSION = 0.0.1656 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f63102618334f5423d2c4504aa46f85ac7b9311c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Jan 2024 18:10:04 +0000 Subject: [PATCH 1714/2586] Auto-release 0.0.1657 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0f2b60bc948e..f6f58093a53e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1656 +MARKETING_VERSION = 0.0.1657 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2b98d15a48612f5df57ac30ac104e91c8cd96284 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Jan 2024 00:39:29 +0000 Subject: [PATCH 1715/2586] Auto-release 0.0.1658 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f6f58093a53e..e8ea9792469e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1657 +MARKETING_VERSION = 0.0.1658 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cb65da10180c43f60b639887a0161084718837fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Jan 2024 06:12:15 +0000 Subject: [PATCH 1716/2586] Auto-release 0.0.1659 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e8ea9792469e..2d5b604ef549 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1658 +MARKETING_VERSION = 0.0.1659 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 19ae19cca62056b971eeaabf9dba81e0c3c5a231 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Jan 2024 12:15:41 +0000 Subject: [PATCH 1717/2586] Auto-release 0.0.1660 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d5b604ef549..de896d624575 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1659 +MARKETING_VERSION = 0.0.1660 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9a0809b97f6f79eb3c4a330279af422f0b25cb56 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Jan 2024 18:11:26 +0000 Subject: [PATCH 1718/2586] Auto-release 0.0.1661 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index de896d624575..fc941d2713e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1660 +MARKETING_VERSION = 0.0.1661 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6189c45cc7718ea5272a282890d24183ef9c2018 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Jan 2024 00:39:20 +0000 Subject: [PATCH 1719/2586] Auto-release 0.0.1662 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fc941d2713e5..94b013a66aec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1661 +MARKETING_VERSION = 0.0.1662 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aafbaeb8e188a5b276f3431b6dda64a2d13a6981 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Jan 2024 06:12:35 +0000 Subject: [PATCH 1720/2586] Auto-release 0.0.1663 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 94b013a66aec..1fd42dbdadae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1662 +MARKETING_VERSION = 0.0.1663 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0fae9bc68f8a723ff483af82ec8016c0f62ad64c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Jan 2024 12:14:50 +0000 Subject: [PATCH 1721/2586] Auto-release 0.0.1664 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1fd42dbdadae..42b32c2c1767 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1663 +MARKETING_VERSION = 0.0.1664 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ade97e1c102d48e296899e7bc4921f482ac97a84 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Jan 2024 18:13:15 +0000 Subject: [PATCH 1722/2586] Auto-release 0.0.1665 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 42b32c2c1767..43ba9506ef98 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1664 +MARKETING_VERSION = 0.0.1665 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b1c15c34cec4ab36bf11f4f0cde47489e546afda Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 Jan 2024 00:39:50 +0000 Subject: [PATCH 1723/2586] Auto-release 0.0.1666 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 43ba9506ef98..ed81ac238c30 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1665 +MARKETING_VERSION = 0.0.1666 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 83202cc4ea959dceb51ecf9ddb68a1e4a00348e7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 Jan 2024 06:11:59 +0000 Subject: [PATCH 1724/2586] Auto-release 0.0.1667 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ed81ac238c30..ae0444e4b6a4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1666 +MARKETING_VERSION = 0.0.1667 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e147f560ab7963809441506f5646b4d97f96557a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 Jan 2024 12:15:36 +0000 Subject: [PATCH 1725/2586] Auto-release 0.0.1668 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ae0444e4b6a4..55cee2b1a921 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1667 +MARKETING_VERSION = 0.0.1668 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c309019b37441ffc5b53619bfa955bd978019e84 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 Jan 2024 18:09:07 +0000 Subject: [PATCH 1726/2586] Auto-release 0.0.1669 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 55cee2b1a921..b3c31d90673a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1668 +MARKETING_VERSION = 0.0.1669 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6a70610ae76e4a62947cc7a63490e770bb647607 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Feb 2024 00:41:23 +0000 Subject: [PATCH 1727/2586] Auto-release 0.0.1670 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b3c31d90673a..ac312cc57f05 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1669 +MARKETING_VERSION = 0.0.1670 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 939505e21f0f1a1e5acbd31911a758b8bd81bbde Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Feb 2024 06:12:30 +0000 Subject: [PATCH 1728/2586] Auto-release 0.0.1671 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ac312cc57f05..43fc3d17efbd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1670 +MARKETING_VERSION = 0.0.1671 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f29a60239c7b77915b7896e8ff594f9836f57cbb Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Feb 2024 12:15:43 +0000 Subject: [PATCH 1729/2586] Auto-release 0.0.1672 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 43fc3d17efbd..2f23ded615ee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1671 +MARKETING_VERSION = 0.0.1672 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b27b5653a9f3eb59309a774f3a3a541e58af6c72 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Feb 2024 18:11:03 +0000 Subject: [PATCH 1730/2586] Auto-release 0.0.1673 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2f23ded615ee..ceba01af2ba5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1672 +MARKETING_VERSION = 0.0.1673 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 684974a838aad4303f417215968b8fa753bf9794 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Feb 2024 00:40:46 +0000 Subject: [PATCH 1731/2586] Auto-release 0.0.1674 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ceba01af2ba5..b260771c251e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1673 +MARKETING_VERSION = 0.0.1674 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6703d85f7428ceec1c666a9faf579f759da2d8a5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Feb 2024 06:11:41 +0000 Subject: [PATCH 1732/2586] Auto-release 0.0.1675 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b260771c251e..7c9db7ab78e7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1674 +MARKETING_VERSION = 0.0.1675 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 159b69a124f289dfbbadb0c52bfc69623b41d905 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Feb 2024 12:15:22 +0000 Subject: [PATCH 1733/2586] Auto-release 0.0.1676 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7c9db7ab78e7..a9bf2189b151 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1675 +MARKETING_VERSION = 0.0.1676 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 65ecd67f9769aefaebe2b6d1a366e89d0f89b8e8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Feb 2024 18:12:05 +0000 Subject: [PATCH 1734/2586] Auto-release 0.0.1677 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a9bf2189b151..4ea3bd4e1cbb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1676 +MARKETING_VERSION = 0.0.1677 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 24385349cbbd9cb06b36003452a775875cdcda6d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Feb 2024 00:39:03 +0000 Subject: [PATCH 1735/2586] Auto-release 0.0.1678 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4ea3bd4e1cbb..867299d53839 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1677 +MARKETING_VERSION = 0.0.1678 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aae39bead327a7280c8ee22945ead7177f4c8d34 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Feb 2024 06:10:47 +0000 Subject: [PATCH 1736/2586] Auto-release 0.0.1679 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 867299d53839..f50961345e25 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1678 +MARKETING_VERSION = 0.0.1679 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a16895d1fc0830ecb316d19186149eb2b107f57e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Feb 2024 12:14:57 +0000 Subject: [PATCH 1737/2586] Auto-release 0.0.1680 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f50961345e25..afc65906806a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1679 +MARKETING_VERSION = 0.0.1680 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ddc89b799e94d8dab8055e8457aa39ad83bd8aa9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Feb 2024 18:10:33 +0000 Subject: [PATCH 1738/2586] Auto-release 0.0.1681 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index afc65906806a..ba6929703a00 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1680 +MARKETING_VERSION = 0.0.1681 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1a2728f9feaf647fdb7e9377f0b7ef90ac4428fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Feb 2024 00:42:43 +0000 Subject: [PATCH 1739/2586] Auto-release 0.0.1682 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ba6929703a00..f87532f2c47f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1681 +MARKETING_VERSION = 0.0.1682 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e62e9b08e15f8ce9428b3b70884c9538c7c5c40b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Feb 2024 06:10:53 +0000 Subject: [PATCH 1740/2586] Auto-release 0.0.1683 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f87532f2c47f..4c0eaa587962 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1682 +MARKETING_VERSION = 0.0.1683 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ed8f6f71c8f234c84947a9e12c605663bf45b2a9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Feb 2024 12:14:28 +0000 Subject: [PATCH 1741/2586] Auto-release 0.0.1684 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c0eaa587962..35eb4e1b8070 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1683 +MARKETING_VERSION = 0.0.1684 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 28c85744347b56beb33681df89be155513162f0e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Feb 2024 18:12:49 +0000 Subject: [PATCH 1742/2586] Auto-release 0.0.1685 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 35eb4e1b8070..f72a0ec7b5a5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1684 +MARKETING_VERSION = 0.0.1685 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c1df68f115be546f1c7e11717221dfeb25b98247 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Feb 2024 00:40:13 +0000 Subject: [PATCH 1743/2586] Auto-release 0.0.1686 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f72a0ec7b5a5..02c1c71392c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1685 +MARKETING_VERSION = 0.0.1686 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 90d3dec2265ac5096c8cba1fd8108529d66f4f78 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Feb 2024 06:11:56 +0000 Subject: [PATCH 1744/2586] Auto-release 0.0.1687 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 02c1c71392c8..a865c9128797 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1686 +MARKETING_VERSION = 0.0.1687 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 820914fcf14ac9b7e24f37a84f0f0d6ae2806377 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Feb 2024 12:15:52 +0000 Subject: [PATCH 1745/2586] Auto-release 0.0.1688 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a865c9128797..b810c1075810 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1687 +MARKETING_VERSION = 0.0.1688 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 83297cb68bf4d9d81e57ee309e84ce200cc4b8d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Feb 2024 18:11:54 +0000 Subject: [PATCH 1746/2586] Auto-release 0.0.1689 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b810c1075810..8fb5200de445 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1688 +MARKETING_VERSION = 0.0.1689 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 41023052b3e21258d1f05e0901d06de259f721df Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Feb 2024 00:38:39 +0000 Subject: [PATCH 1747/2586] Auto-release 0.0.1690 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8fb5200de445..821ad1e7b242 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1689 +MARKETING_VERSION = 0.0.1690 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eee604fbe05c090da0b0897d7ce9d2acbbff0d27 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Feb 2024 06:12:22 +0000 Subject: [PATCH 1748/2586] Auto-release 0.0.1691 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 821ad1e7b242..7f6d3e24defd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1690 +MARKETING_VERSION = 0.0.1691 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5d8e0665a9da8e11f231f715461e69257885b5c5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Feb 2024 12:16:06 +0000 Subject: [PATCH 1749/2586] Auto-release 0.0.1692 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7f6d3e24defd..d29e43cedc18 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1691 +MARKETING_VERSION = 0.0.1692 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7808c854b19d185d08f7b9c86666ba7b2e337468 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Feb 2024 18:10:54 +0000 Subject: [PATCH 1750/2586] Auto-release 0.0.1693 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d29e43cedc18..e0bb6f879895 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1692 +MARKETING_VERSION = 0.0.1693 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 28dcbd1060e232ae401496368bea5c9a502feeac Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Feb 2024 00:37:28 +0000 Subject: [PATCH 1751/2586] Auto-release 0.0.1694 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e0bb6f879895..7f8139e83c26 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1693 +MARKETING_VERSION = 0.0.1694 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 65e08a991b717b7ae00d4e766f062d980e997575 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Feb 2024 06:13:05 +0000 Subject: [PATCH 1752/2586] Auto-release 0.0.1695 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7f8139e83c26..df974c79807b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1694 +MARKETING_VERSION = 0.0.1695 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2501a729761fdac5019b9db68e3e68bd96088381 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Feb 2024 12:15:27 +0000 Subject: [PATCH 1753/2586] Auto-release 0.0.1696 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df974c79807b..b6bc7530c579 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1695 +MARKETING_VERSION = 0.0.1696 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 20aa924b0ee34b2b2e294f9c1ceeaeaf16841b0b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Feb 2024 18:12:11 +0000 Subject: [PATCH 1754/2586] Auto-release 0.0.1697 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6bc7530c579..a324673399b1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1696 +MARKETING_VERSION = 0.0.1697 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6e18f9c4b62a6c6bf13aea452cef4a6ea5f0cd0c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Feb 2024 00:38:48 +0000 Subject: [PATCH 1755/2586] Auto-release 0.0.1698 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a324673399b1..460ddcaa0c89 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1697 +MARKETING_VERSION = 0.0.1698 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3057cf1d10e94815edb9ace0572a8d5e9584d585 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Feb 2024 06:12:39 +0000 Subject: [PATCH 1756/2586] Auto-release 0.0.1699 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 460ddcaa0c89..d10002aecd74 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1698 +MARKETING_VERSION = 0.0.1699 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9043a7fc92d673670b823491a560d9cb0a96e44a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Feb 2024 12:15:39 +0000 Subject: [PATCH 1757/2586] Auto-release 0.0.1700 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d10002aecd74..8e9ee13292fa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1699 +MARKETING_VERSION = 0.0.1700 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bcd123a960fbbe052753d36cd130c5c1e21330b3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Feb 2024 18:12:23 +0000 Subject: [PATCH 1758/2586] Auto-release 0.0.1701 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8e9ee13292fa..668dbc0ccab1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1700 +MARKETING_VERSION = 0.0.1701 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6265f9f8f230b6e6384098c70f172b95dda5c75c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Feb 2024 00:38:24 +0000 Subject: [PATCH 1759/2586] Auto-release 0.0.1702 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 668dbc0ccab1..d3f78975e206 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1701 +MARKETING_VERSION = 0.0.1702 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d71a053620d263bf6b4c09994be6d28458c06d4e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Feb 2024 06:12:08 +0000 Subject: [PATCH 1760/2586] Auto-release 0.0.1703 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d3f78975e206..934c6124652a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1702 +MARKETING_VERSION = 0.0.1703 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0257728c92c2279b59b0fa8c30df65c8b714f3bd Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Feb 2024 12:15:34 +0000 Subject: [PATCH 1761/2586] Auto-release 0.0.1704 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 934c6124652a..0bce992c1e0b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1703 +MARKETING_VERSION = 0.0.1704 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6790cb34f85ccf3d12dc34bc9168c6ce53f45262 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Feb 2024 18:11:37 +0000 Subject: [PATCH 1762/2586] Auto-release 0.0.1705 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0bce992c1e0b..d5baf2684c58 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1704 +MARKETING_VERSION = 0.0.1705 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ed60262e15fa00d3f09f962b00cc9b4061270fe6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Feb 2024 00:37:53 +0000 Subject: [PATCH 1763/2586] Auto-release 0.0.1706 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d5baf2684c58..2fc45b1dbcca 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1705 +MARKETING_VERSION = 0.0.1706 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 73eca7cb3ddc311ecea08b40745f64233c43135c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Feb 2024 06:10:56 +0000 Subject: [PATCH 1764/2586] Auto-release 0.0.1707 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2fc45b1dbcca..35bc92f17dcf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1706 +MARKETING_VERSION = 0.0.1707 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e73f9d02504510d9b978069ec46d780101b50c0f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Feb 2024 12:14:48 +0000 Subject: [PATCH 1765/2586] Auto-release 0.0.1708 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 35bc92f17dcf..346805352cb0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1707 +MARKETING_VERSION = 0.0.1708 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fba5c1e06b8221b279e7669723306f5d09dc4271 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Feb 2024 18:10:54 +0000 Subject: [PATCH 1766/2586] Auto-release 0.0.1709 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 346805352cb0..b59d3c0928af 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1708 +MARKETING_VERSION = 0.0.1709 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 54e6439bb54d721fe59a6619e2041aee97db57c0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Feb 2024 00:43:41 +0000 Subject: [PATCH 1767/2586] Auto-release 0.0.1710 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b59d3c0928af..465371fae446 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1709 +MARKETING_VERSION = 0.0.1710 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b73243e42f47085524d1c92db204fee8f2cf8d36 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Feb 2024 06:11:58 +0000 Subject: [PATCH 1768/2586] Auto-release 0.0.1711 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 465371fae446..c1814a24af94 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1710 +MARKETING_VERSION = 0.0.1711 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c504b94dc997c82e564ef9b4ab51f1cb108fb744 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Feb 2024 12:14:13 +0000 Subject: [PATCH 1769/2586] Auto-release 0.0.1712 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c1814a24af94..ab417c121033 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1711 +MARKETING_VERSION = 0.0.1712 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ec5580d5efa786ac1db7ce32d0e4bedecb439a22 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Feb 2024 18:11:03 +0000 Subject: [PATCH 1770/2586] Auto-release 0.0.1713 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ab417c121033..19b143a12b17 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1712 +MARKETING_VERSION = 0.0.1713 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2b66181fad87a64be0144d5e6e64e072524981c1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Feb 2024 00:39:49 +0000 Subject: [PATCH 1771/2586] Auto-release 0.0.1714 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 19b143a12b17..d314a82dcde2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1713 +MARKETING_VERSION = 0.0.1714 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d13bcee500a978a4108855dc47f0ee80cbceae65 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Feb 2024 06:12:19 +0000 Subject: [PATCH 1772/2586] Auto-release 0.0.1715 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d314a82dcde2..b3848211483d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1714 +MARKETING_VERSION = 0.0.1715 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 62e761eb7653e201a12748a37e841ed9412ad0cd Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Feb 2024 12:16:08 +0000 Subject: [PATCH 1773/2586] Auto-release 0.0.1716 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b3848211483d..d5608c042e8a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1715 +MARKETING_VERSION = 0.0.1716 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0b28a548ed1bf70f0ab15efd702304396bc79d55 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Feb 2024 18:11:09 +0000 Subject: [PATCH 1774/2586] Auto-release 0.0.1717 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d5608c042e8a..6ed33222d8d9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1716 +MARKETING_VERSION = 0.0.1717 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 174767e51b6e30aad161af9956e7d4ef4b50a28c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Feb 2024 00:39:52 +0000 Subject: [PATCH 1775/2586] Auto-release 0.0.1718 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6ed33222d8d9..322e6f83ca16 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1717 +MARKETING_VERSION = 0.0.1718 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7e8d1acd93795501c4d91b24e31e7d19d7e93c70 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Feb 2024 06:13:12 +0000 Subject: [PATCH 1776/2586] Auto-release 0.0.1719 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 322e6f83ca16..300ba5add2e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1718 +MARKETING_VERSION = 0.0.1719 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cfb3c2c4c700d5ed223b8858c1d5476ec164d9d1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Feb 2024 12:15:10 +0000 Subject: [PATCH 1777/2586] Auto-release 0.0.1720 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 300ba5add2e5..aedd1feef1e0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1719 +MARKETING_VERSION = 0.0.1720 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6d97f650040334af117db5a0ebb22c11622b35b4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Feb 2024 18:12:26 +0000 Subject: [PATCH 1778/2586] Auto-release 0.0.1721 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aedd1feef1e0..57fb6a1b7ff5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1720 +MARKETING_VERSION = 0.0.1721 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 79b4ef59e1862bbb116894131866377c50cb6f1d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Feb 2024 00:39:54 +0000 Subject: [PATCH 1779/2586] Auto-release 0.0.1722 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 57fb6a1b7ff5..09997a195a08 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1721 +MARKETING_VERSION = 0.0.1722 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 78fb0467fa7ff52e32eef53e7eea69e1555e41cb Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Feb 2024 06:12:47 +0000 Subject: [PATCH 1780/2586] Auto-release 0.0.1723 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 09997a195a08..168b1918a4fd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1722 +MARKETING_VERSION = 0.0.1723 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e87abb3d4cfebf73c1e43a72c00bc5a8429802a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Feb 2024 12:16:18 +0000 Subject: [PATCH 1781/2586] Auto-release 0.0.1724 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 168b1918a4fd..321697b19b56 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1723 +MARKETING_VERSION = 0.0.1724 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 32cf20a59fe5a66a59b29c5b3ebbf8686cf187f1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Feb 2024 18:11:18 +0000 Subject: [PATCH 1782/2586] Auto-release 0.0.1725 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 321697b19b56..49f4606280d8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1724 +MARKETING_VERSION = 0.0.1725 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1dea9bcaab364d8545b5b8da1ba0f112585c9a36 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Feb 2024 00:39:39 +0000 Subject: [PATCH 1783/2586] Auto-release 0.0.1726 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 49f4606280d8..2fb7ecdee771 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1725 +MARKETING_VERSION = 0.0.1726 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7c176d0471c40e651da7bd8dc3ea1a890b35aefa Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Feb 2024 06:12:28 +0000 Subject: [PATCH 1784/2586] Auto-release 0.0.1727 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2fb7ecdee771..c7da94c8742c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1726 +MARKETING_VERSION = 0.0.1727 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e7274c380765f070d39d93299b2575396b814dc3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Feb 2024 12:15:27 +0000 Subject: [PATCH 1785/2586] Auto-release 0.0.1728 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c7da94c8742c..c035b11d7e8c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1727 +MARKETING_VERSION = 0.0.1728 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5ed4b2ee7fd11d174bae3142599814ccbbbea9e4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Feb 2024 18:13:24 +0000 Subject: [PATCH 1786/2586] Auto-release 0.0.1729 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c035b11d7e8c..631c9220930c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1728 +MARKETING_VERSION = 0.0.1729 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3f8bafa7fcebd2759daae54de8f0eac4c10853ad Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Feb 2024 00:38:43 +0000 Subject: [PATCH 1787/2586] Auto-release 0.0.1730 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 631c9220930c..a3a27e9871cf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1729 +MARKETING_VERSION = 0.0.1730 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b9e2c2b3907316f44fbfc913fa63db269d6ec08c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Feb 2024 06:12:06 +0000 Subject: [PATCH 1788/2586] Auto-release 0.0.1731 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a3a27e9871cf..20ef6a84edab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1730 +MARKETING_VERSION = 0.0.1731 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 60d8b0d93de076e3617c8249f7dc239665ab2925 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Feb 2024 12:15:22 +0000 Subject: [PATCH 1789/2586] Auto-release 0.0.1732 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 20ef6a84edab..679eb3e011c6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1731 +MARKETING_VERSION = 0.0.1732 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 79e2ea04270b3dabdeb8496ae5e04dab840708d1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Feb 2024 18:12:25 +0000 Subject: [PATCH 1790/2586] Auto-release 0.0.1733 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 679eb3e011c6..ab48ab054b2e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1732 +MARKETING_VERSION = 0.0.1733 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b28ba64683c0f9679257db50afb1fb5ea93f3c05 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Feb 2024 00:38:42 +0000 Subject: [PATCH 1791/2586] Auto-release 0.0.1734 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ab48ab054b2e..1de05eec08da 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1733 +MARKETING_VERSION = 0.0.1734 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6c0e70daf577ce7786b82c7e95a8596da0c5d970 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Feb 2024 06:11:33 +0000 Subject: [PATCH 1792/2586] Auto-release 0.0.1735 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1de05eec08da..b2dcad2cddc4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1734 +MARKETING_VERSION = 0.0.1735 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 921cc27c7bf384f910f9495046f23eebaed8b2ba Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Feb 2024 12:14:18 +0000 Subject: [PATCH 1793/2586] Auto-release 0.0.1736 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b2dcad2cddc4..356139321bb9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1735 +MARKETING_VERSION = 0.0.1736 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 755e8a7a83d40c5134d21ddd15344287d1770ecf Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Feb 2024 18:10:50 +0000 Subject: [PATCH 1794/2586] Auto-release 0.0.1737 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 356139321bb9..e5e90390e287 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1736 +MARKETING_VERSION = 0.0.1737 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0941a780578350688e56a884a634151f01cd3fce Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Feb 2024 00:43:15 +0000 Subject: [PATCH 1795/2586] Auto-release 0.0.1738 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e5e90390e287..fcfc8ef6184b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1737 +MARKETING_VERSION = 0.0.1738 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b66ef6b8e69c47ca14f2afdb9cdfc0af473780fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Feb 2024 06:11:31 +0000 Subject: [PATCH 1796/2586] Auto-release 0.0.1739 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fcfc8ef6184b..04febe5181fa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1738 +MARKETING_VERSION = 0.0.1739 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 88216572ce91ade8aa395662bb85d91bef7f4f76 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Feb 2024 12:14:19 +0000 Subject: [PATCH 1797/2586] Auto-release 0.0.1740 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 04febe5181fa..3ffc760f427f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1739 +MARKETING_VERSION = 0.0.1740 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6fbf2900b7dcbd60d54a42c645d8755c97ff11c8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Feb 2024 18:10:12 +0000 Subject: [PATCH 1798/2586] Auto-release 0.0.1741 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3ffc760f427f..0fccaa8e0362 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1740 +MARKETING_VERSION = 0.0.1741 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2307542fa5fc78384d91e41ac691c881521bd872 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Feb 2024 00:41:36 +0000 Subject: [PATCH 1799/2586] Auto-release 0.0.1742 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0fccaa8e0362..9b384ee35205 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1741 +MARKETING_VERSION = 0.0.1742 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f2734240a1de0cdf1cb9219f9fefd9f13b27db31 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Feb 2024 06:13:05 +0000 Subject: [PATCH 1800/2586] Auto-release 0.0.1743 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9b384ee35205..2b0981a75ca8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1742 +MARKETING_VERSION = 0.0.1743 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e6989fddff9c5b4eb687c912ff5dbb81ecbc1f41 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Feb 2024 12:16:13 +0000 Subject: [PATCH 1801/2586] Auto-release 0.0.1744 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2b0981a75ca8..7129f17b077b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1743 +MARKETING_VERSION = 0.0.1744 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 633f1844f4ae2f6fd5a6dfcaabddd84391c6665c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Feb 2024 18:12:35 +0000 Subject: [PATCH 1802/2586] Auto-release 0.0.1745 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7129f17b077b..aeb35d84ca8c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1744 +MARKETING_VERSION = 0.0.1745 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e8c55fce67ee5a95e333c30a33ad248e32779b14 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Feb 2024 00:38:37 +0000 Subject: [PATCH 1803/2586] Auto-release 0.0.1746 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aeb35d84ca8c..0b81b5634344 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1745 +MARKETING_VERSION = 0.0.1746 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d9fcf760a39722280ca8c687ca9051e030a5b845 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Feb 2024 06:12:19 +0000 Subject: [PATCH 1804/2586] Auto-release 0.0.1747 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0b81b5634344..083b12b9018c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1746 +MARKETING_VERSION = 0.0.1747 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bd42d4ebf8bc6c5c61aa0f8a19164f1a1fcbdfb0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Feb 2024 12:15:29 +0000 Subject: [PATCH 1805/2586] Auto-release 0.0.1748 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 083b12b9018c..f8b32af56613 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1747 +MARKETING_VERSION = 0.0.1748 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 98a3fc2684202e9abc5fb1375e6a52e7e1db653a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Feb 2024 18:13:18 +0000 Subject: [PATCH 1806/2586] Auto-release 0.0.1749 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f8b32af56613..384673c5cd9a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1748 +MARKETING_VERSION = 0.0.1749 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ebd434df6f029a12d1f7b7e341eb48127aca146d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Feb 2024 00:39:34 +0000 Subject: [PATCH 1807/2586] Auto-release 0.0.1750 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 384673c5cd9a..ff332c280337 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1749 +MARKETING_VERSION = 0.0.1750 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6bcb9de6cfe62a7ec5f033b3dc4a1eba8042b9a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Feb 2024 06:12:11 +0000 Subject: [PATCH 1808/2586] Auto-release 0.0.1751 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ff332c280337..0276402240cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1750 +MARKETING_VERSION = 0.0.1751 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 15e7e804460c67cddfbffb08144aa68c524dd499 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Feb 2024 12:15:42 +0000 Subject: [PATCH 1809/2586] Auto-release 0.0.1752 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0276402240cb..51f3e9c38a6d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1751 +MARKETING_VERSION = 0.0.1752 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 261cd1cb9b1306177871ea0bc458a7b5b357d9b1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Feb 2024 18:11:26 +0000 Subject: [PATCH 1810/2586] Auto-release 0.0.1753 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 51f3e9c38a6d..4b760098c9e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1752 +MARKETING_VERSION = 0.0.1753 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cb49ee601f647db562ad59640c6027a5c61fc2a7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Feb 2024 00:38:40 +0000 Subject: [PATCH 1811/2586] Auto-release 0.0.1754 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4b760098c9e9..ce0caccbfa79 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1753 +MARKETING_VERSION = 0.0.1754 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ebfb9d32470d479561b15242ed1c5350866a467e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Feb 2024 06:12:02 +0000 Subject: [PATCH 1812/2586] Auto-release 0.0.1755 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ce0caccbfa79..da4ca6f5d7fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1754 +MARKETING_VERSION = 0.0.1755 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d4f550a99fb4f95128de996b06bb769ad14dc795 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Feb 2024 12:15:17 +0000 Subject: [PATCH 1813/2586] Auto-release 0.0.1756 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index da4ca6f5d7fc..c377157c5284 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1755 +MARKETING_VERSION = 0.0.1756 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 603479dc9cf52f2a4668b14853baa2a0f9f9b5d5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Feb 2024 18:11:55 +0000 Subject: [PATCH 1814/2586] Auto-release 0.0.1757 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c377157c5284..d8e0325b85e2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1756 +MARKETING_VERSION = 0.0.1757 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From be1fbdfc3ee15af28a19eda2dfe5e636d5d3d9e3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Feb 2024 00:39:30 +0000 Subject: [PATCH 1815/2586] Auto-release 0.0.1758 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d8e0325b85e2..13b013b0a741 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1757 +MARKETING_VERSION = 0.0.1758 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 251b24addbe950dbcdba2ba2edb7df435ef74f74 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Feb 2024 06:12:34 +0000 Subject: [PATCH 1816/2586] Auto-release 0.0.1759 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 13b013b0a741..23669b647235 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1758 +MARKETING_VERSION = 0.0.1759 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d493371cf3ecff6c638019cb7db1b3eba5df19cc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Feb 2024 12:15:42 +0000 Subject: [PATCH 1817/2586] Auto-release 0.0.1760 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 23669b647235..44700b8f64d8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1759 +MARKETING_VERSION = 0.0.1760 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f49fc7514d01ff09b731cf9fcd130da1f813ae10 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Feb 2024 18:12:20 +0000 Subject: [PATCH 1818/2586] Auto-release 0.0.1761 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 44700b8f64d8..d886d026f2f8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1760 +MARKETING_VERSION = 0.0.1761 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c6449121500a29721aeeb96576b0f51f6b029609 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Feb 2024 00:37:19 +0000 Subject: [PATCH 1819/2586] Auto-release 0.0.1762 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d886d026f2f8..6a2b083ce7a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1761 +MARKETING_VERSION = 0.0.1762 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6728aa8421af2a85eabf4b9e2ca5762e2d41377e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Feb 2024 06:11:10 +0000 Subject: [PATCH 1820/2586] Auto-release 0.0.1763 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6a2b083ce7a7..e223549c1251 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1762 +MARKETING_VERSION = 0.0.1763 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b3bacf003c638a105e203aa223615e4ffa9ec475 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Feb 2024 12:14:13 +0000 Subject: [PATCH 1821/2586] Auto-release 0.0.1764 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e223549c1251..bb5148c59d94 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1763 +MARKETING_VERSION = 0.0.1764 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7eaad548d54e7f3a58c7d17e91b5443a1359aa45 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Feb 2024 18:11:09 +0000 Subject: [PATCH 1822/2586] Auto-release 0.0.1765 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bb5148c59d94..f7c2e82672a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1764 +MARKETING_VERSION = 0.0.1765 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 16a4dfb2cfb4414ccb8e45e68e72d6d6a4fe1939 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Feb 2024 00:43:28 +0000 Subject: [PATCH 1823/2586] Auto-release 0.0.1766 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f7c2e82672a7..7c381f26bd1f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1765 +MARKETING_VERSION = 0.0.1766 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 61a11f3dd63a731a0d7e55c8efe62fc1ee5fedde Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Feb 2024 06:11:12 +0000 Subject: [PATCH 1824/2586] Auto-release 0.0.1767 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7c381f26bd1f..6cb35d720c55 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1766 +MARKETING_VERSION = 0.0.1767 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5dd88f59ee9dbc70d303f32ce71a791fc0c61b5a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Feb 2024 12:14:28 +0000 Subject: [PATCH 1825/2586] Auto-release 0.0.1768 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6cb35d720c55..7abd3ead909a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1767 +MARKETING_VERSION = 0.0.1768 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 32fe6c8c995d0afd994aaa1c625a04cd6605f83f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Feb 2024 18:10:24 +0000 Subject: [PATCH 1826/2586] Auto-release 0.0.1769 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7abd3ead909a..69ae5ebc371f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1768 +MARKETING_VERSION = 0.0.1769 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3fa48656255b0b96a2fbc7000041f6f251ba60ce Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Feb 2024 00:40:23 +0000 Subject: [PATCH 1827/2586] Auto-release 0.0.1770 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 69ae5ebc371f..7134d3c9322f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1769 +MARKETING_VERSION = 0.0.1770 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bcf99240c3731e78bd1be50ff395b00c48df02a2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Feb 2024 06:13:26 +0000 Subject: [PATCH 1828/2586] Auto-release 0.0.1771 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7134d3c9322f..5ac2122d112c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1770 +MARKETING_VERSION = 0.0.1771 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d00a9e052f9c629f09a5a5c6b31215944349aa47 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Feb 2024 12:16:28 +0000 Subject: [PATCH 1829/2586] Auto-release 0.0.1772 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5ac2122d112c..27b3dd6d69f3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1771 +MARKETING_VERSION = 0.0.1772 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c41131c9fff5cdc3e0a7d5695dc593d55a55651a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Feb 2024 18:11:30 +0000 Subject: [PATCH 1830/2586] Auto-release 0.0.1773 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 27b3dd6d69f3..392283764c4e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1772 +MARKETING_VERSION = 0.0.1773 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cf4adb9dbc9147a19c58b2f187013b77e9cd6de9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Feb 2024 00:39:48 +0000 Subject: [PATCH 1831/2586] Auto-release 0.0.1774 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 392283764c4e..4ad6e2b6f711 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1773 +MARKETING_VERSION = 0.0.1774 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7d83c39334d3b409e31fc7b72b07fc49c9b84909 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Feb 2024 06:11:45 +0000 Subject: [PATCH 1832/2586] Auto-release 0.0.1775 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4ad6e2b6f711..9f6256a76bab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1774 +MARKETING_VERSION = 0.0.1775 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7f47c3878413a5144f7eb2dec131d0ce9ca5babc Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Feb 2024 12:15:17 +0000 Subject: [PATCH 1833/2586] Auto-release 0.0.1776 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9f6256a76bab..fd3cb03b3fd0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1775 +MARKETING_VERSION = 0.0.1776 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 323d657d3987bf7a4498ce01dfa21581d64164ff Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Feb 2024 18:11:55 +0000 Subject: [PATCH 1834/2586] Auto-release 0.0.1777 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fd3cb03b3fd0..b4d2b4006af2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1776 +MARKETING_VERSION = 0.0.1777 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7cac4427d08d786d02c1f409687025728f27309e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Feb 2024 00:38:27 +0000 Subject: [PATCH 1835/2586] Auto-release 0.0.1778 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b4d2b4006af2..80d388885cd7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1777 +MARKETING_VERSION = 0.0.1778 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 96e7c44189a1cf7deadc283b499a99e56c933382 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Feb 2024 06:11:36 +0000 Subject: [PATCH 1836/2586] Auto-release 0.0.1779 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 80d388885cd7..e61ad4648f78 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1778 +MARKETING_VERSION = 0.0.1779 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d74463a213f63ec42cc07d76cfddd94583a72560 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Feb 2024 12:15:46 +0000 Subject: [PATCH 1837/2586] Auto-release 0.0.1780 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e61ad4648f78..ace060fe3539 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1779 +MARKETING_VERSION = 0.0.1780 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 136ba818ffd8df54dd853b9b2182a4541167c14c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Feb 2024 18:12:41 +0000 Subject: [PATCH 1838/2586] Auto-release 0.0.1781 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ace060fe3539..d2c451da7cad 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1780 +MARKETING_VERSION = 0.0.1781 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3f30c14fd04e7c11dad22a65b202a4a61e073ff5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Feb 2024 00:40:08 +0000 Subject: [PATCH 1839/2586] Auto-release 0.0.1782 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d2c451da7cad..47039231a88d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1781 +MARKETING_VERSION = 0.0.1782 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9d7425ee719f1b1fe716dfe9557508c14c0467ed Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Feb 2024 06:12:03 +0000 Subject: [PATCH 1840/2586] Auto-release 0.0.1783 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 47039231a88d..c56910e5484d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1782 +MARKETING_VERSION = 0.0.1783 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d817e2688d0f510e068f5735edd505600b102490 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Feb 2024 12:16:29 +0000 Subject: [PATCH 1841/2586] Auto-release 0.0.1784 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c56910e5484d..84a64f1bba4f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1783 +MARKETING_VERSION = 0.0.1784 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d88f3b442a0bccd8e07996093041e8d319a188c7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Feb 2024 18:12:12 +0000 Subject: [PATCH 1842/2586] Auto-release 0.0.1785 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 84a64f1bba4f..3d441dcf20eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1784 +MARKETING_VERSION = 0.0.1785 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2b2a12a45486c00258a7b48ee440726bd0955974 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Mar 2024 00:43:35 +0000 Subject: [PATCH 1843/2586] Auto-release 0.0.1786 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3d441dcf20eb..0b9fe77758c4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1785 +MARKETING_VERSION = 0.0.1786 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e856c3da8d7c25fa00082c71f7b8f1f6f2ed3bf4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Mar 2024 06:12:46 +0000 Subject: [PATCH 1844/2586] Auto-release 0.0.1787 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0b9fe77758c4..3f92eb5f6120 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1786 +MARKETING_VERSION = 0.0.1787 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5164160116e46ee2a8a33ad9a2e5500d2b02dc30 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Mar 2024 12:16:21 +0000 Subject: [PATCH 1845/2586] Auto-release 0.0.1788 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f92eb5f6120..291c97f96f61 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1787 +MARKETING_VERSION = 0.0.1788 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1000b313020c6a04351dab2be0261f7a597a9e8b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 1 Mar 2024 18:12:07 +0000 Subject: [PATCH 1846/2586] Auto-release 0.0.1789 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 291c97f96f61..8c1f552772b7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1788 +MARKETING_VERSION = 0.0.1789 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 19591d11f6fb48a5f581f2390f2f99fd581e35ad Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Mar 2024 00:38:04 +0000 Subject: [PATCH 1847/2586] Auto-release 0.0.1790 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8c1f552772b7..4a4cdedf2e1e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1789 +MARKETING_VERSION = 0.0.1790 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3daceb12abfb2fa7158affe2ee7a63507212a67e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Mar 2024 06:12:52 +0000 Subject: [PATCH 1848/2586] Auto-release 0.0.1791 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a4cdedf2e1e..5bf6010d5ef9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1790 +MARKETING_VERSION = 0.0.1791 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f71034003723cb697ee93ef64d99cfccbaba3652 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Mar 2024 12:14:26 +0000 Subject: [PATCH 1849/2586] Auto-release 0.0.1792 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5bf6010d5ef9..dbbce5f53de8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1791 +MARKETING_VERSION = 0.0.1792 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6b350803fd928054fe1c85b4d30891d2a0408085 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 2 Mar 2024 18:11:05 +0000 Subject: [PATCH 1850/2586] Auto-release 0.0.1793 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dbbce5f53de8..50c22cda3824 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1792 +MARKETING_VERSION = 0.0.1793 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 111551250033af07f19f22c423aa67d5c200a227 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Mar 2024 00:41:24 +0000 Subject: [PATCH 1851/2586] Auto-release 0.0.1794 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 50c22cda3824..8aac8981436d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1793 +MARKETING_VERSION = 0.0.1794 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 206a38e2456020c9510c410063c8e5665c314722 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Mar 2024 06:11:48 +0000 Subject: [PATCH 1852/2586] Auto-release 0.0.1795 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8aac8981436d..0bd6d489d9c2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1794 +MARKETING_VERSION = 0.0.1795 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 962b44e193290344cee2bc11258441ec331e9f95 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Mar 2024 12:14:52 +0000 Subject: [PATCH 1853/2586] Auto-release 0.0.1796 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0bd6d489d9c2..c9523b99f32d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1795 +MARKETING_VERSION = 0.0.1796 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 052072634d9bbb0c6f6641eae027c19b31f46a59 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 3 Mar 2024 18:10:34 +0000 Subject: [PATCH 1854/2586] Auto-release 0.0.1797 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c9523b99f32d..19e5be1298de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1796 +MARKETING_VERSION = 0.0.1797 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f7a23f466222328f466c09af1f88a8c347af8fe8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Mar 2024 00:40:30 +0000 Subject: [PATCH 1855/2586] Auto-release 0.0.1798 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 19e5be1298de..c09abb43c724 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1797 +MARKETING_VERSION = 0.0.1798 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a426385cc435fb428e0a1741ce305453af66bb3e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Mar 2024 06:57:21 +0000 Subject: [PATCH 1856/2586] Auto-release 0.0.1799 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c09abb43c724..4cfc0ca26007 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1798 +MARKETING_VERSION = 0.0.1799 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0b814668580863aa83046323b1eafbe13fd976ff Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Mar 2024 12:21:50 +0000 Subject: [PATCH 1857/2586] Auto-release 0.0.1800 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4cfc0ca26007..cd9066d0cb29 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1799 +MARKETING_VERSION = 0.0.1800 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 20f0a4534b9be07a4e6377fc32b2dbf3173ce8d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 4 Mar 2024 18:11:39 +0000 Subject: [PATCH 1858/2586] Auto-release 0.0.1801 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd9066d0cb29..88080ac73fc4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1800 +MARKETING_VERSION = 0.0.1801 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8b8b28f72a1dcf012049eb150222463dfaee4402 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Mar 2024 00:39:57 +0000 Subject: [PATCH 1859/2586] Auto-release 0.0.1802 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 88080ac73fc4..c2a0b0eabd40 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1801 +MARKETING_VERSION = 0.0.1802 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e38c4a95c58d3d5bda2c5dfdb353f8870816af46 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Mar 2024 06:11:41 +0000 Subject: [PATCH 1860/2586] Auto-release 0.0.1803 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c2a0b0eabd40..1b4766fe36fb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1802 +MARKETING_VERSION = 0.0.1803 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8382a77d19c4f46975ffa4e963e67453740a7fc0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Mar 2024 12:15:47 +0000 Subject: [PATCH 1861/2586] Auto-release 0.0.1804 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1b4766fe36fb..459fdae28c44 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1803 +MARKETING_VERSION = 0.0.1804 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2d6c7f1d50bf3eafda9ce567b37ca68006d9d2a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 5 Mar 2024 18:11:24 +0000 Subject: [PATCH 1862/2586] Auto-release 0.0.1805 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 459fdae28c44..628eda328511 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1804 +MARKETING_VERSION = 0.0.1805 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f3b2a08a4028844c987d802c4a3e015ac26a9991 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Mar 2024 00:39:25 +0000 Subject: [PATCH 1863/2586] Auto-release 0.0.1806 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 628eda328511..240044028dc9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1805 +MARKETING_VERSION = 0.0.1806 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7299cb3e41fee680bdbc7595c45e75a53e3811f0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Mar 2024 06:13:13 +0000 Subject: [PATCH 1864/2586] Auto-release 0.0.1807 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 240044028dc9..116ca02d720f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1806 +MARKETING_VERSION = 0.0.1807 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d47aaa0f5640e4725c415a333adc40c7fa538529 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Mar 2024 12:17:14 +0000 Subject: [PATCH 1865/2586] Auto-release 0.0.1808 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 116ca02d720f..70b4308e08e1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1807 +MARKETING_VERSION = 0.0.1808 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0a81e32dda18fe3fbea0a6736870507f366c64ca Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 6 Mar 2024 18:13:10 +0000 Subject: [PATCH 1866/2586] Auto-release 0.0.1809 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 70b4308e08e1..f7fba62eff0d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1808 +MARKETING_VERSION = 0.0.1809 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2aac230cfe90a6b78946afa71455dfefda5ab2db Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Mar 2024 00:32:12 +0000 Subject: [PATCH 1867/2586] Auto-release 0.0.1810 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f7fba62eff0d..186fd8c46635 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1809 +MARKETING_VERSION = 0.0.1810 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0012c02d5ad1723ee894aac68c6bc60a9b5b4fae Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Mar 2024 06:12:41 +0000 Subject: [PATCH 1868/2586] Auto-release 0.0.1811 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 186fd8c46635..4ac1b2895f75 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1810 +MARKETING_VERSION = 0.0.1811 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 333fd1b5aa0590d4ac01a3e61071c3dda5dcae2d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Mar 2024 12:15:49 +0000 Subject: [PATCH 1869/2586] Auto-release 0.0.1812 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4ac1b2895f75..d1483b2e00e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1811 +MARKETING_VERSION = 0.0.1812 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6a0f011adc543a547fb9ad82edfe33c5b99c8e59 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 7 Mar 2024 18:11:52 +0000 Subject: [PATCH 1870/2586] Auto-release 0.0.1813 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d1483b2e00e9..7ce00d3a4890 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1812 +MARKETING_VERSION = 0.0.1813 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c7dc9b18252d4a3dcf7a0da1432220726ff8baf0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Mar 2024 00:39:18 +0000 Subject: [PATCH 1871/2586] Auto-release 0.0.1814 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7ce00d3a4890..21a59b616068 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1813 +MARKETING_VERSION = 0.0.1814 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 989a8208d35bc7579e97561d704dabdfc27d0825 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Mar 2024 06:11:52 +0000 Subject: [PATCH 1872/2586] Auto-release 0.0.1815 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 21a59b616068..ad9f0a5df98f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1814 +MARKETING_VERSION = 0.0.1815 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 68dbcdf0d6fd833632592f755dbbf6266b5e734f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Mar 2024 12:16:05 +0000 Subject: [PATCH 1873/2586] Auto-release 0.0.1816 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad9f0a5df98f..f2c2019e94eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1815 +MARKETING_VERSION = 0.0.1816 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e05572af93e09a5b573f925965129313e5f96ec3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 8 Mar 2024 18:11:42 +0000 Subject: [PATCH 1874/2586] Auto-release 0.0.1817 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f2c2019e94eb..f617fff9dbeb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1816 +MARKETING_VERSION = 0.0.1817 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4393cb35ce4d5f26409eb07714fa1835ad051c2e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Mar 2024 00:37:33 +0000 Subject: [PATCH 1875/2586] Auto-release 0.0.1818 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f617fff9dbeb..33fabd7ad7fa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1817 +MARKETING_VERSION = 0.0.1818 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 91db0595fc53f46ee3b0d99ce430193c900daca0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Mar 2024 06:13:08 +0000 Subject: [PATCH 1876/2586] Auto-release 0.0.1819 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 33fabd7ad7fa..216979883816 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1818 +MARKETING_VERSION = 0.0.1819 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 30f430642e193805f7a9e426e5c48ac0c367cf32 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Mar 2024 12:13:53 +0000 Subject: [PATCH 1877/2586] Auto-release 0.0.1820 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 216979883816..1330ad53a7bf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1819 +MARKETING_VERSION = 0.0.1820 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 87c29e413531f5f84a12aec4d794954ececff12a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 9 Mar 2024 18:11:03 +0000 Subject: [PATCH 1878/2586] Auto-release 0.0.1821 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1330ad53a7bf..5c84f831fe6e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1820 +MARKETING_VERSION = 0.0.1821 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bd081183370bf4cac30d679768e1f759cdd7bcc5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Mar 2024 00:42:08 +0000 Subject: [PATCH 1879/2586] Auto-release 0.0.1822 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5c84f831fe6e..8bb15f5b4b07 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1821 +MARKETING_VERSION = 0.0.1822 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a59696c63822c318f16cef475872eb5368594bce Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Mar 2024 06:11:05 +0000 Subject: [PATCH 1880/2586] Auto-release 0.0.1823 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8bb15f5b4b07..cf01ae0b2fee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1822 +MARKETING_VERSION = 0.0.1823 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e1d15f64cc2281059c867d0c7590548e681743b7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Mar 2024 12:14:05 +0000 Subject: [PATCH 1881/2586] Auto-release 0.0.1824 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf01ae0b2fee..73e06c6dede4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1823 +MARKETING_VERSION = 0.0.1824 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4110bf26388586412166f5ca5e4ca29d46e133ad Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 10 Mar 2024 18:10:12 +0000 Subject: [PATCH 1882/2586] Auto-release 0.0.1825 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 73e06c6dede4..5f8ecd5bba91 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1824 +MARKETING_VERSION = 0.0.1825 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bc8a7b0166c0fbac2e3b4f6c2d0dc096a6b9b439 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Mar 2024 00:40:21 +0000 Subject: [PATCH 1883/2586] Auto-release 0.0.1826 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5f8ecd5bba91..439c6621a95e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1825 +MARKETING_VERSION = 0.0.1826 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 065c2a974b3d666dd0687da6bf685c8befce6924 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Mar 2024 06:12:15 +0000 Subject: [PATCH 1884/2586] Auto-release 0.0.1827 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 439c6621a95e..d06d77eb3d7e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1826 +MARKETING_VERSION = 0.0.1827 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 491fa0db9e0bdf5b6cd37fa39c94692630f20c4f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Mar 2024 12:16:05 +0000 Subject: [PATCH 1885/2586] Auto-release 0.0.1828 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d06d77eb3d7e..816f0232000f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1827 +MARKETING_VERSION = 0.0.1828 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6a646b31904479ae8ba27ebef68d4f5b86a89b31 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 11 Mar 2024 18:11:47 +0000 Subject: [PATCH 1886/2586] Auto-release 0.0.1829 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 816f0232000f..796ba3b2170e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1828 +MARKETING_VERSION = 0.0.1829 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4a0355b95d97ecd5494403475b1209a6110adfd1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Mar 2024 00:38:52 +0000 Subject: [PATCH 1887/2586] Auto-release 0.0.1830 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 796ba3b2170e..bc44cd99044f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1829 +MARKETING_VERSION = 0.0.1830 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fd6a205f9b9bb4966eef29b0b8077055840a4041 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Mar 2024 06:12:41 +0000 Subject: [PATCH 1888/2586] Auto-release 0.0.1831 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bc44cd99044f..198184495974 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1830 +MARKETING_VERSION = 0.0.1831 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fe08b61e0ea727722e703831e61056a3096c1368 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Mar 2024 12:15:41 +0000 Subject: [PATCH 1889/2586] Auto-release 0.0.1832 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 198184495974..9bb38d7f659f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1831 +MARKETING_VERSION = 0.0.1832 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6e16d666e08d5414e36b3b78e5cab43f36d381e0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 12 Mar 2024 18:11:34 +0000 Subject: [PATCH 1890/2586] Auto-release 0.0.1833 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9bb38d7f659f..75acaef603ca 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1832 +MARKETING_VERSION = 0.0.1833 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a3899eee727f4cfcec42c438ec98ae99a754c9a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Mar 2024 00:39:54 +0000 Subject: [PATCH 1891/2586] Auto-release 0.0.1834 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 75acaef603ca..e723ded93fb3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1833 +MARKETING_VERSION = 0.0.1834 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ede7280b8e284392db33c9e76baf545000430d29 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Mar 2024 06:13:05 +0000 Subject: [PATCH 1892/2586] Auto-release 0.0.1835 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e723ded93fb3..5f168515fdfd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1834 +MARKETING_VERSION = 0.0.1835 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a754352c13838addd031519fc15db41a6a722a61 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Mar 2024 12:16:23 +0000 Subject: [PATCH 1893/2586] Auto-release 0.0.1836 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5f168515fdfd..06816c6eb8ce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1835 +MARKETING_VERSION = 0.0.1836 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8b6a488351ff7148ac10cffa1d89c5dba1cbf2df Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 13 Mar 2024 18:11:30 +0000 Subject: [PATCH 1894/2586] Auto-release 0.0.1837 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 06816c6eb8ce..91c3f44e5e06 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1836 +MARKETING_VERSION = 0.0.1837 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 588ab359c568b688da8d80b0cfa17ef072b5db52 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Mar 2024 00:38:50 +0000 Subject: [PATCH 1895/2586] Auto-release 0.0.1838 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 91c3f44e5e06..6760db393a8a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1837 +MARKETING_VERSION = 0.0.1838 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cd662db12bc56d27857363fdb1a4d23c666a6a86 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Mar 2024 06:12:15 +0000 Subject: [PATCH 1896/2586] Auto-release 0.0.1839 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6760db393a8a..acd0b68dffaa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1838 +MARKETING_VERSION = 0.0.1839 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ab65ab53889ae53d183c48b2a873d106de302f25 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Mar 2024 12:18:11 +0000 Subject: [PATCH 1897/2586] Auto-release 0.0.1840 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index acd0b68dffaa..675856df9f4f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1839 +MARKETING_VERSION = 0.0.1840 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fe5cdbc4602f24cc71e608d644440307f2464a3b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 14 Mar 2024 18:11:23 +0000 Subject: [PATCH 1898/2586] Auto-release 0.0.1841 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 675856df9f4f..c16ed621dba1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1840 +MARKETING_VERSION = 0.0.1841 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2a182d3015ba58e58e15afad008733ad3d374240 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Mar 2024 00:39:37 +0000 Subject: [PATCH 1899/2586] Auto-release 0.0.1842 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c16ed621dba1..158f8f33abed 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1841 +MARKETING_VERSION = 0.0.1842 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 874c57492f01be358f27711da5161a1452efd44e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Mar 2024 06:12:32 +0000 Subject: [PATCH 1900/2586] Auto-release 0.0.1843 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 158f8f33abed..66007c15b224 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1842 +MARKETING_VERSION = 0.0.1843 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bd375146a550b19940e538ceded578a9718f08c5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Mar 2024 12:15:57 +0000 Subject: [PATCH 1901/2586] Auto-release 0.0.1844 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 66007c15b224..b4d78ab416b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1843 +MARKETING_VERSION = 0.0.1844 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 46dd3d3cb53a0789969237fa033498cc588198a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 15 Mar 2024 18:12:28 +0000 Subject: [PATCH 1902/2586] Auto-release 0.0.1845 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b4d78ab416b9..62854d0a9682 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1844 +MARKETING_VERSION = 0.0.1845 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d0a0a1cf61106b1dab1ee8627893a21db45b9c8b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Mar 2024 00:38:02 +0000 Subject: [PATCH 1903/2586] Auto-release 0.0.1846 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 62854d0a9682..2215fe881cc3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1845 +MARKETING_VERSION = 0.0.1846 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 440cd0dbcff417dc0107c1566bbee42af9b216db Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Mar 2024 06:11:37 +0000 Subject: [PATCH 1904/2586] Auto-release 0.0.1847 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2215fe881cc3..4e27758898f5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1846 +MARKETING_VERSION = 0.0.1847 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0c622aa392275b99415f0a84ac73bd3f7056c050 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Mar 2024 12:16:14 +0000 Subject: [PATCH 1905/2586] Auto-release 0.0.1848 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4e27758898f5..6e870673fd86 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1847 +MARKETING_VERSION = 0.0.1848 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8e051a51142f2e4052cde721d91e4871c258bef8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 16 Mar 2024 18:11:30 +0000 Subject: [PATCH 1906/2586] Auto-release 0.0.1849 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6e870673fd86..63c8711fe1de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1848 +MARKETING_VERSION = 0.0.1849 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e532470658ba25b0d7c08087295271a2703dd872 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Mar 2024 00:42:43 +0000 Subject: [PATCH 1907/2586] Auto-release 0.0.1850 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 63c8711fe1de..6573e5baba03 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1849 +MARKETING_VERSION = 0.0.1850 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c893ef26f152fed971b2c0f450fe1c7f2b42fb25 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Mar 2024 06:11:15 +0000 Subject: [PATCH 1908/2586] Auto-release 0.0.1851 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6573e5baba03..e4a7782fcdcb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1850 +MARKETING_VERSION = 0.0.1851 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6636cb5c43ba5d596474bda76efef6ed9f1f783c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Mar 2024 12:15:04 +0000 Subject: [PATCH 1909/2586] Auto-release 0.0.1852 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e4a7782fcdcb..a87b8c9c17a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1851 +MARKETING_VERSION = 0.0.1852 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 604bd69b7c6749b8db291d097c46b827e4615050 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 17 Mar 2024 18:10:06 +0000 Subject: [PATCH 1910/2586] Auto-release 0.0.1853 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a87b8c9c17a7..4faf169ec1cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1852 +MARKETING_VERSION = 0.0.1853 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 65e261402dbb7e7c2346e5983b18cf3c11fe87af Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Mar 2024 00:40:17 +0000 Subject: [PATCH 1911/2586] Auto-release 0.0.1854 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4faf169ec1cc..c6c8fe4173cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1853 +MARKETING_VERSION = 0.0.1854 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5fc5f1b2d38726f9f34df06be4789df6a8e22e5b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Mar 2024 06:13:02 +0000 Subject: [PATCH 1912/2586] Auto-release 0.0.1855 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c6c8fe4173cc..5892b3861bac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1854 +MARKETING_VERSION = 0.0.1855 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cb08c3f7f362be44094a880de4c88f7a9efe94c0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Mar 2024 12:15:51 +0000 Subject: [PATCH 1913/2586] Auto-release 0.0.1856 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5892b3861bac..797fc79e19fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1855 +MARKETING_VERSION = 0.0.1856 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d73133d62e306fa0428a8fc88a99349af7ee8c6a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 18 Mar 2024 18:11:27 +0000 Subject: [PATCH 1914/2586] Auto-release 0.0.1857 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 797fc79e19fc..b41e6372f8cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1856 +MARKETING_VERSION = 0.0.1857 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1143d9da4420cb26679286975bc7ad55d7e1d0bb Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Mar 2024 00:40:00 +0000 Subject: [PATCH 1915/2586] Auto-release 0.0.1858 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b41e6372f8cc..001de66ae952 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1857 +MARKETING_VERSION = 0.0.1858 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e72516183abc17db72027f6895fbcec1c7e80b39 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Mar 2024 06:12:31 +0000 Subject: [PATCH 1916/2586] Auto-release 0.0.1859 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 001de66ae952..66ecacaf4eb4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1858 +MARKETING_VERSION = 0.0.1859 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d1e1fd4c7eb0090b9c45b876631935986fa59711 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Mar 2024 12:16:16 +0000 Subject: [PATCH 1917/2586] Auto-release 0.0.1860 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 66ecacaf4eb4..e303dc577935 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1859 +MARKETING_VERSION = 0.0.1860 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cd1effe39375c554207e1bc0d8ae1e581852fc03 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 19 Mar 2024 18:12:52 +0000 Subject: [PATCH 1918/2586] Auto-release 0.0.1861 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e303dc577935..5fbb9c724d82 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1860 +MARKETING_VERSION = 0.0.1861 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c3c0cdb931c68eb3e8601f851099fe7006faa6db Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Mar 2024 00:39:08 +0000 Subject: [PATCH 1919/2586] Auto-release 0.0.1862 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5fbb9c724d82..48e3b0bc0674 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1861 +MARKETING_VERSION = 0.0.1862 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 22d99ef004978d87265e67bedaf5a988e2032f3f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Mar 2024 06:12:04 +0000 Subject: [PATCH 1920/2586] Auto-release 0.0.1863 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 48e3b0bc0674..f58f01194249 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1862 +MARKETING_VERSION = 0.0.1863 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7999f29acdb34ec1e2ed49b41805dacbd8667d95 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Mar 2024 12:16:30 +0000 Subject: [PATCH 1921/2586] Auto-release 0.0.1864 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f58f01194249..d8b23669c220 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1863 +MARKETING_VERSION = 0.0.1864 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 09a0f1d5398bca356ab3f372fc2ecdf8ecc0561b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 20 Mar 2024 18:11:16 +0000 Subject: [PATCH 1922/2586] Auto-release 0.0.1865 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d8b23669c220..63d5573332b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1864 +MARKETING_VERSION = 0.0.1865 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 07c80776967bc18008bc546949c1ad0053a90a0e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Mar 2024 00:40:51 +0000 Subject: [PATCH 1923/2586] Auto-release 0.0.1866 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 63d5573332b0..4d921675a6ae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1865 +MARKETING_VERSION = 0.0.1866 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6da10c72a35e2fcbd8513bf14a20c399b00dc669 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Mar 2024 06:12:03 +0000 Subject: [PATCH 1924/2586] Auto-release 0.0.1867 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4d921675a6ae..a5a7dce05be9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1866 +MARKETING_VERSION = 0.0.1867 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f26c98c99956bed51da9ff7f600297d1343f703a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Mar 2024 12:15:54 +0000 Subject: [PATCH 1925/2586] Auto-release 0.0.1868 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a5a7dce05be9..6128567e0bda 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1867 +MARKETING_VERSION = 0.0.1868 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From af1b5624de3fd04a64b18ddfe92777cec2bf16ad Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 21 Mar 2024 18:12:06 +0000 Subject: [PATCH 1926/2586] Auto-release 0.0.1869 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6128567e0bda..1bb32458e952 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1868 +MARKETING_VERSION = 0.0.1869 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0284d50f0929839c0e6768b394b6afa7839f5e59 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Mar 2024 00:39:04 +0000 Subject: [PATCH 1927/2586] Auto-release 0.0.1870 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1bb32458e952..0f8e784ecb84 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1869 +MARKETING_VERSION = 0.0.1870 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 20d8137fd38e3ca31595faed7933c89f8e14265c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Mar 2024 06:11:57 +0000 Subject: [PATCH 1928/2586] Auto-release 0.0.1871 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0f8e784ecb84..4e77fcf9965b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1870 +MARKETING_VERSION = 0.0.1871 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8bd3d6f6f2c9f89cf15b6f6dd3bd454f6140ce38 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Mar 2024 12:16:15 +0000 Subject: [PATCH 1929/2586] Auto-release 0.0.1872 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4e77fcf9965b..4e1123a4141c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1871 +MARKETING_VERSION = 0.0.1872 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f57972311ae20f98b3bd2c2dbb4a0e4f3ef812b5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 22 Mar 2024 18:11:19 +0000 Subject: [PATCH 1930/2586] Auto-release 0.0.1873 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4e1123a4141c..dd8826eb1ff8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1872 +MARKETING_VERSION = 0.0.1873 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d4255d056b206973b8abba783f6f4c866770f91b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Mar 2024 00:38:26 +0000 Subject: [PATCH 1931/2586] Auto-release 0.0.1874 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dd8826eb1ff8..541bfd13ef55 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1873 +MARKETING_VERSION = 0.0.1874 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a31f680065b6bf6e46a9ff08aa404346af0485ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Mar 2024 06:16:04 +0000 Subject: [PATCH 1932/2586] Auto-release 0.0.1875 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 541bfd13ef55..e257ae7ec389 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1874 +MARKETING_VERSION = 0.0.1875 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4bc43aa909253517d0dc3511158d39645fb1f0dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Mar 2024 12:16:59 +0000 Subject: [PATCH 1933/2586] Auto-release 0.0.1876 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e257ae7ec389..cceec24137e1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1875 +MARKETING_VERSION = 0.0.1876 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From face6e1488093cb747fec3735798211fac79b7fb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 23 Mar 2024 18:10:20 +0000 Subject: [PATCH 1934/2586] Auto-release 0.0.1877 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cceec24137e1..1fae2560edea 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1876 +MARKETING_VERSION = 0.0.1877 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 165e67740a03775e3a1c90c28ef2ddd9a14b97f5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Mar 2024 00:44:59 +0000 Subject: [PATCH 1935/2586] Auto-release 0.0.1878 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1fae2560edea..33a8a34e03d1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1877 +MARKETING_VERSION = 0.0.1878 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 07614fbcb6bc438f161c07379c3e6f46a831895e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Mar 2024 06:11:18 +0000 Subject: [PATCH 1936/2586] Auto-release 0.0.1879 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 33a8a34e03d1..ea715dd016ba 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1878 +MARKETING_VERSION = 0.0.1879 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 967341be2a08e869f09a759f4b4ac6ed5774b6cd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Mar 2024 12:15:17 +0000 Subject: [PATCH 1937/2586] Auto-release 0.0.1880 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ea715dd016ba..ac2fb8fea252 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1879 +MARKETING_VERSION = 0.0.1880 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b08384ce9b5189f6ea81cdc0d726564b6dec0941 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 24 Mar 2024 18:12:19 +0000 Subject: [PATCH 1938/2586] Auto-release 0.0.1881 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ac2fb8fea252..cc2ee01f09d5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1880 +MARKETING_VERSION = 0.0.1881 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9584f372d819d77af73b52f9becaa5ffeb67f964 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Mar 2024 00:40:49 +0000 Subject: [PATCH 1939/2586] Auto-release 0.0.1882 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cc2ee01f09d5..6c68efd34357 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1881 +MARKETING_VERSION = 0.0.1882 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 706b6e4c194a150ab3fe95c37ced51b3c4113eb8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Mar 2024 06:13:07 +0000 Subject: [PATCH 1940/2586] Auto-release 0.0.1883 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6c68efd34357..6952e3c5aa40 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1882 +MARKETING_VERSION = 0.0.1883 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 056844c53c3e8283bdf589acb73e285bb70c36b3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Mar 2024 12:15:55 +0000 Subject: [PATCH 1941/2586] Auto-release 0.0.1884 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6952e3c5aa40..7427244e836b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1883 +MARKETING_VERSION = 0.0.1884 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a4bf058b78f7e9298c456338c691fc7f93c2ca0b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 25 Mar 2024 18:12:16 +0000 Subject: [PATCH 1942/2586] Auto-release 0.0.1885 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7427244e836b..5e9ea8b149f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1884 +MARKETING_VERSION = 0.0.1885 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9787ce4811b5345bfa7391507bf0bf7d8d2ef72d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Mar 2024 00:39:25 +0000 Subject: [PATCH 1943/2586] Auto-release 0.0.1886 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e9ea8b149f7..645260ba7295 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1885 +MARKETING_VERSION = 0.0.1886 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8f5e3ad43f662b5384280e90833b7d2187bfa5f8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Mar 2024 06:13:05 +0000 Subject: [PATCH 1944/2586] Auto-release 0.0.1887 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 645260ba7295..264611aeb430 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1886 +MARKETING_VERSION = 0.0.1887 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a9e6f55c363e484c0be48e0f75346caa11fa9ec3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Mar 2024 12:16:34 +0000 Subject: [PATCH 1945/2586] Auto-release 0.0.1888 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 264611aeb430..08a79944a226 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1887 +MARKETING_VERSION = 0.0.1888 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f0ed810b6882b2065cd51477d5f681e57ff0fb48 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 26 Mar 2024 18:12:07 +0000 Subject: [PATCH 1946/2586] Auto-release 0.0.1889 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 08a79944a226..df8f634df30a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1888 +MARKETING_VERSION = 0.0.1889 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 832bebf3ef7b2ba18dcb43cb9e4556c8e73d9e31 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Mar 2024 00:39:17 +0000 Subject: [PATCH 1947/2586] Auto-release 0.0.1890 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df8f634df30a..8f288aeeadd1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1889 +MARKETING_VERSION = 0.0.1890 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 48f2ace5a7279c50f261933cbb87ed77489700c9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Mar 2024 06:12:28 +0000 Subject: [PATCH 1948/2586] Auto-release 0.0.1891 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8f288aeeadd1..c92a565c7aa1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1890 +MARKETING_VERSION = 0.0.1891 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ecd3e5c7bd7e23e2cbdffc7cbf10851c1d8a230f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Mar 2024 12:17:24 +0000 Subject: [PATCH 1949/2586] Auto-release 0.0.1892 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c92a565c7aa1..985bdfb3784f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1891 +MARKETING_VERSION = 0.0.1892 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 989268b39e6c4a9380360bf555fde6939b303a26 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 27 Mar 2024 18:12:30 +0000 Subject: [PATCH 1950/2586] Auto-release 0.0.1893 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 985bdfb3784f..4f42fd1de411 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1892 +MARKETING_VERSION = 0.0.1893 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 463d1058fcbc3629e43b19e1074927efd5d6cfd7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Mar 2024 00:39:46 +0000 Subject: [PATCH 1951/2586] Auto-release 0.0.1894 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4f42fd1de411..6d88d4162eb0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1893 +MARKETING_VERSION = 0.0.1894 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eabed26e4b423a3d6b97088a33db3c245d818f62 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Mar 2024 06:12:20 +0000 Subject: [PATCH 1952/2586] Auto-release 0.0.1895 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6d88d4162eb0..6152c6d0f8fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1894 +MARKETING_VERSION = 0.0.1895 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 34d686489664c872d7a0e405cab1616a02b86f8a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Mar 2024 12:17:20 +0000 Subject: [PATCH 1953/2586] Auto-release 0.0.1896 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6152c6d0f8fc..f3ceed9f92e7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1895 +MARKETING_VERSION = 0.0.1896 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4101c987568c3da5b2da01be5dd1c1ac6f89b1d8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 28 Mar 2024 18:12:08 +0000 Subject: [PATCH 1954/2586] Auto-release 0.0.1897 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f3ceed9f92e7..73ece3154cf8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1896 +MARKETING_VERSION = 0.0.1897 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5a1a329088b0b0dc2eb1ac11423258bacf391a2b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Mar 2024 00:39:31 +0000 Subject: [PATCH 1955/2586] Auto-release 0.0.1898 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 73ece3154cf8..7cd14a5e6c0c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1897 +MARKETING_VERSION = 0.0.1898 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b4cbba2c26e271fd6f14c7316cf48fde638ccf8a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Mar 2024 06:12:06 +0000 Subject: [PATCH 1956/2586] Auto-release 0.0.1899 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7cd14a5e6c0c..3ec59f77b2b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1898 +MARKETING_VERSION = 0.0.1899 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 43b50575b2495d2f65429e6847ad44910088f8bf Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Mar 2024 12:16:58 +0000 Subject: [PATCH 1957/2586] Auto-release 0.0.1900 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3ec59f77b2b0..624962bbb2ec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1899 +MARKETING_VERSION = 0.0.1900 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 98fb855c0b4b50370f6601a0dab6e7ae82940d68 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 29 Mar 2024 18:11:38 +0000 Subject: [PATCH 1958/2586] Auto-release 0.0.1901 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 624962bbb2ec..4a3e9b4b00a2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1900 +MARKETING_VERSION = 0.0.1901 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 737569494672272762c4605bb01cff84ecef3142 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Mar 2024 00:38:33 +0000 Subject: [PATCH 1959/2586] Auto-release 0.0.1902 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a3e9b4b00a2..6288ae36965b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1901 +MARKETING_VERSION = 0.0.1902 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 53deb11cfb019efdd51522b778ffe2351c1251f7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Mar 2024 06:11:28 +0000 Subject: [PATCH 1960/2586] Auto-release 0.0.1903 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6288ae36965b..5d1fcc728303 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1902 +MARKETING_VERSION = 0.0.1903 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2c82955ee8c74bc490be64f9a8c3fcfb1770dd00 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Mar 2024 12:14:31 +0000 Subject: [PATCH 1961/2586] Auto-release 0.0.1904 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5d1fcc728303..a706edb4cc8a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1903 +MARKETING_VERSION = 0.0.1904 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1a12b0bf4cf2f451ed6ffb35c8da31df5d3912cd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 30 Mar 2024 18:12:15 +0000 Subject: [PATCH 1962/2586] Auto-release 0.0.1905 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a706edb4cc8a..26eb9fac5f9e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1904 +MARKETING_VERSION = 0.0.1905 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 772f543327a99858dc4b59d0a056ac9beddf584b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 31 Mar 2024 00:45:03 +0000 Subject: [PATCH 1963/2586] Auto-release 0.0.1906 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 26eb9fac5f9e..862eb38a9ca7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1905 +MARKETING_VERSION = 0.0.1906 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 82e69da77cffebc4d013c549c68a5eacd9f5d59d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 31 Mar 2024 06:11:21 +0000 Subject: [PATCH 1964/2586] Auto-release 0.0.1907 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 862eb38a9ca7..3dbc3c62cba0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1906 +MARKETING_VERSION = 0.0.1907 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0f04574672cf431a7490a0c91b12618cb5add0ab Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 31 Mar 2024 12:14:59 +0000 Subject: [PATCH 1965/2586] Auto-release 0.0.1908 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3dbc3c62cba0..04354f374267 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1907 +MARKETING_VERSION = 0.0.1908 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 36f15a9a6ca902aa07792cca9bef405360b2cf9a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 31 Mar 2024 18:10:51 +0000 Subject: [PATCH 1966/2586] Auto-release 0.0.1909 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 04354f374267..3ea17a62a7d7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1908 +MARKETING_VERSION = 0.0.1909 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dcc5c6d3cf54af34972867f96016e073185c85bc Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Apr 2024 00:43:50 +0000 Subject: [PATCH 1967/2586] Auto-release 0.0.1910 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3ea17a62a7d7..d3c178e9dcaa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1909 +MARKETING_VERSION = 0.0.1910 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 63e33dc70c61b48de94a025bd799285e7432cffc Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Apr 2024 06:12:53 +0000 Subject: [PATCH 1968/2586] Auto-release 0.0.1911 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d3c178e9dcaa..797d9d9b3866 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1910 +MARKETING_VERSION = 0.0.1911 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9558fec73ec0fa603dd86565226c3be8feac4e30 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Apr 2024 12:17:15 +0000 Subject: [PATCH 1969/2586] Auto-release 0.0.1912 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 797d9d9b3866..5318bb9403bd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1911 +MARKETING_VERSION = 0.0.1912 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 50a20cbd86628662d29f1cdaba769c40aa854869 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Apr 2024 18:11:40 +0000 Subject: [PATCH 1970/2586] Auto-release 0.0.1913 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5318bb9403bd..10ea170fab1e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1912 +MARKETING_VERSION = 0.0.1913 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3af0257abf9b14fbdb48d655337b9c46dce74859 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Apr 2024 00:40:57 +0000 Subject: [PATCH 1971/2586] Auto-release 0.0.1914 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 10ea170fab1e..f2be6893c47f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1913 +MARKETING_VERSION = 0.0.1914 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b725e2e753b08507747e6c2e1067010d527d8d0a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Apr 2024 06:12:48 +0000 Subject: [PATCH 1972/2586] Auto-release 0.0.1915 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f2be6893c47f..f5ad2ae87ed2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1914 +MARKETING_VERSION = 0.0.1915 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From afb7c934d33f6d12b8d36bfc12479cfea602d226 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Apr 2024 12:16:54 +0000 Subject: [PATCH 1973/2586] Auto-release 0.0.1916 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f5ad2ae87ed2..5614c224e6b4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1915 +MARKETING_VERSION = 0.0.1916 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bf1be4a0e00dda42095d6a191ba9e60f4b711e90 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Apr 2024 18:11:41 +0000 Subject: [PATCH 1974/2586] Auto-release 0.0.1917 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5614c224e6b4..22523a3a1a1d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1916 +MARKETING_VERSION = 0.0.1917 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bce65c5dad9b92cacafe51c9992252dfb884c840 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Apr 2024 00:39:24 +0000 Subject: [PATCH 1975/2586] Auto-release 0.0.1918 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 22523a3a1a1d..3cca70cce1fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1917 +MARKETING_VERSION = 0.0.1918 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fbd5abb1113276828a524218638f4fa4f54f45ab Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Apr 2024 06:12:12 +0000 Subject: [PATCH 1976/2586] Auto-release 0.0.1919 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3cca70cce1fc..7236bc4e20e3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1918 +MARKETING_VERSION = 0.0.1919 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 17f8507e3526928b865d90794666d2043b2e2af5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Apr 2024 12:16:12 +0000 Subject: [PATCH 1977/2586] Auto-release 0.0.1920 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7236bc4e20e3..b82f344e9258 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1919 +MARKETING_VERSION = 0.0.1920 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d5bdca3b61120e897d876b8c0804cd65e768ce3d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Apr 2024 18:13:25 +0000 Subject: [PATCH 1978/2586] Auto-release 0.0.1921 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b82f344e9258..4c6ba78f1b83 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1920 +MARKETING_VERSION = 0.0.1921 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f0220f06a139e0d5fd0c4651aeb03103fb84d1ec Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Apr 2024 00:41:07 +0000 Subject: [PATCH 1979/2586] Auto-release 0.0.1922 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c6ba78f1b83..3fd1cbad3a40 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1921 +MARKETING_VERSION = 0.0.1922 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c610c9f764c9621c111463486df0d9c7444983a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Apr 2024 06:12:17 +0000 Subject: [PATCH 1980/2586] Auto-release 0.0.1923 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3fd1cbad3a40..981d65b64031 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1922 +MARKETING_VERSION = 0.0.1923 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a21a06aa097b582f4c583011ac5c3c2119f5c134 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Apr 2024 12:17:56 +0000 Subject: [PATCH 1981/2586] Auto-release 0.0.1924 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 981d65b64031..16a7325c5bc4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1923 +MARKETING_VERSION = 0.0.1924 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 66f22c1716f39ab4c54bdc72aedf4eacd4a94317 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Apr 2024 18:12:46 +0000 Subject: [PATCH 1982/2586] Auto-release 0.0.1925 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 16a7325c5bc4..1a243dd9ac97 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1924 +MARKETING_VERSION = 0.0.1925 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e2847db7c1f8ff5ee644bf251baf5a3e2dfb1569 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Apr 2024 00:40:32 +0000 Subject: [PATCH 1983/2586] Auto-release 0.0.1926 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1a243dd9ac97..146559f85916 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1925 +MARKETING_VERSION = 0.0.1926 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8aac5172ae95284df3cf4cb73dcafd7a6bfaafdf Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Apr 2024 06:12:11 +0000 Subject: [PATCH 1984/2586] Auto-release 0.0.1927 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 146559f85916..4cd53629e50f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1926 +MARKETING_VERSION = 0.0.1927 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c18febb57053ceed57cd7da30d0b702e15a11f90 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Apr 2024 12:16:58 +0000 Subject: [PATCH 1985/2586] Auto-release 0.0.1928 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4cd53629e50f..b7f92931db1b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1927 +MARKETING_VERSION = 0.0.1928 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6f8c01345c9cbe6bb2dacedbfca53614959de8e4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Apr 2024 18:11:50 +0000 Subject: [PATCH 1986/2586] Auto-release 0.0.1929 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b7f92931db1b..b37aad5dbaf2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1928 +MARKETING_VERSION = 0.0.1929 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 183403c36b84ef4053ef2a333a9f50a98f145196 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Apr 2024 00:39:19 +0000 Subject: [PATCH 1987/2586] Auto-release 0.0.1930 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b37aad5dbaf2..bf7b572907d4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1929 +MARKETING_VERSION = 0.0.1930 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 58dcc86d23bb658d38343bab07451106ddb066a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Apr 2024 06:11:53 +0000 Subject: [PATCH 1988/2586] Auto-release 0.0.1931 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bf7b572907d4..c819eceae378 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1930 +MARKETING_VERSION = 0.0.1931 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9f8e321c96c80f26fdb1a46349be231ad51fc444 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Apr 2024 12:15:24 +0000 Subject: [PATCH 1989/2586] Auto-release 0.0.1932 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c819eceae378..b557e8357a05 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1931 +MARKETING_VERSION = 0.0.1932 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f6c792d8401b1e48248bd71cb008330ba928fbfb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Apr 2024 18:10:35 +0000 Subject: [PATCH 1990/2586] Auto-release 0.0.1933 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b557e8357a05..d4fcfa99d0cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1932 +MARKETING_VERSION = 0.0.1933 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b4970add762c135124af7cbac26654dc4116e4b6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Apr 2024 00:44:46 +0000 Subject: [PATCH 1991/2586] Auto-release 0.0.1934 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d4fcfa99d0cb..435ca1cb7e9d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1933 +MARKETING_VERSION = 0.0.1934 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 27ed2a4bce0a7b9da78b579d1d05feb42fa32b2a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Apr 2024 06:11:27 +0000 Subject: [PATCH 1992/2586] Auto-release 0.0.1935 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 435ca1cb7e9d..dd148d1911b1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1934 +MARKETING_VERSION = 0.0.1935 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 211ddf37a1c69215bdca8f0a9fa7bf2572bdea43 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Apr 2024 12:14:48 +0000 Subject: [PATCH 1993/2586] Auto-release 0.0.1936 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dd148d1911b1..40f8064454be 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1935 +MARKETING_VERSION = 0.0.1936 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b6a86b9491e58fc463dfe559f2604381616165e3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Apr 2024 18:11:07 +0000 Subject: [PATCH 1994/2586] Auto-release 0.0.1937 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 40f8064454be..88337ae10fce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1936 +MARKETING_VERSION = 0.0.1937 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From de69d126b2d3bce09223475b2b3b0effb28dbfaf Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Apr 2024 00:41:23 +0000 Subject: [PATCH 1995/2586] Auto-release 0.0.1938 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 88337ae10fce..03e9e303a96c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1937 +MARKETING_VERSION = 0.0.1938 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3488a973b9c547b689b2b665e64883450cccc074 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Apr 2024 06:13:18 +0000 Subject: [PATCH 1996/2586] Auto-release 0.0.1939 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 03e9e303a96c..b014185c1fab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1938 +MARKETING_VERSION = 0.0.1939 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5b3e71a75ec11303287946d1100b391659a41a99 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Apr 2024 12:16:31 +0000 Subject: [PATCH 1997/2586] Auto-release 0.0.1940 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b014185c1fab..a667497e8916 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1939 +MARKETING_VERSION = 0.0.1940 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 63458a835d2291c94be9d631971f7b52a4b20003 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Apr 2024 18:12:47 +0000 Subject: [PATCH 1998/2586] Auto-release 0.0.1941 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a667497e8916..bbf8ffbb5787 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1940 +MARKETING_VERSION = 0.0.1941 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8d3082bd40a455b98655108e89ab438803702549 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Apr 2024 00:41:13 +0000 Subject: [PATCH 1999/2586] Auto-release 0.0.1942 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bbf8ffbb5787..3f7fc9333aba 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1941 +MARKETING_VERSION = 0.0.1942 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d764d689f73882659662d35a82ef3c29d74295e2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Apr 2024 06:12:51 +0000 Subject: [PATCH 2000/2586] Auto-release 0.0.1943 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f7fc9333aba..719166057ce4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1942 +MARKETING_VERSION = 0.0.1943 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From de01572f0114cc10758a22f3894ad3d4971903ac Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Apr 2024 12:17:00 +0000 Subject: [PATCH 2001/2586] Auto-release 0.0.1944 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 719166057ce4..34142c0575de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1943 +MARKETING_VERSION = 0.0.1944 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ce98030b8e4714091ff145a612d5578303b700d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Apr 2024 18:11:36 +0000 Subject: [PATCH 2002/2586] Auto-release 0.0.1945 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34142c0575de..4a228f4911ea 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1944 +MARKETING_VERSION = 0.0.1945 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d762ece1c3bcb76d8289afd548a135a2ee734a54 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Apr 2024 00:39:53 +0000 Subject: [PATCH 2003/2586] Auto-release 0.0.1946 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a228f4911ea..63cd11780521 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1945 +MARKETING_VERSION = 0.0.1946 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3000e7ecdb0aa408c1fe22a8944d304ee0960393 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Apr 2024 06:13:01 +0000 Subject: [PATCH 2004/2586] Auto-release 0.0.1947 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 63cd11780521..7a265bb2c3ff 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1946 +MARKETING_VERSION = 0.0.1947 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 209e156e827d38ad4310f32a605bc4ea6342e32e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Apr 2024 12:16:24 +0000 Subject: [PATCH 2005/2586] Auto-release 0.0.1948 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7a265bb2c3ff..a9842dcb98d6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1947 +MARKETING_VERSION = 0.0.1948 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3c53e312746aff6a6b3aeb9283f6b2671607017d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Apr 2024 18:14:54 +0000 Subject: [PATCH 2006/2586] Auto-release 0.0.1949 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a9842dcb98d6..25b14c6dcf3a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1948 +MARKETING_VERSION = 0.0.1949 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 31b8f05ca8c542ca2d2de601232d240219800614 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Apr 2024 00:40:33 +0000 Subject: [PATCH 2007/2586] Auto-release 0.0.1950 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 25b14c6dcf3a..701ca2a4e3bf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1949 +MARKETING_VERSION = 0.0.1950 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8a3b8e80de18ce9900333a602733bdcf52f96bf7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Apr 2024 06:12:43 +0000 Subject: [PATCH 2008/2586] Auto-release 0.0.1951 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 701ca2a4e3bf..1f30d4e286b1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1950 +MARKETING_VERSION = 0.0.1951 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7afda53ceded3145138eb27ec8812df5ff926d51 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Apr 2024 12:16:59 +0000 Subject: [PATCH 2009/2586] Auto-release 0.0.1952 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1f30d4e286b1..b73ca4b88e47 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1951 +MARKETING_VERSION = 0.0.1952 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 803048e6f17bb6a808aeedf6acb784e268c72ae8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Apr 2024 18:11:40 +0000 Subject: [PATCH 2010/2586] Auto-release 0.0.1953 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b73ca4b88e47..8c140d14d18d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1952 +MARKETING_VERSION = 0.0.1953 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 50c96defeee457d6f08fba325a7af3ede471b42b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Apr 2024 00:40:31 +0000 Subject: [PATCH 2011/2586] Auto-release 0.0.1954 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8c140d14d18d..c69127721591 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1953 +MARKETING_VERSION = 0.0.1954 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 574a183db206478c36a8cb9da0cf598585343ba4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Apr 2024 06:12:51 +0000 Subject: [PATCH 2012/2586] Auto-release 0.0.1955 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c69127721591..8ef81429106f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1954 +MARKETING_VERSION = 0.0.1955 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3febc01bf5019c7e2e2fa243445bf35deb5c661e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Apr 2024 12:16:38 +0000 Subject: [PATCH 2013/2586] Auto-release 0.0.1956 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8ef81429106f..582cb4dc5ca8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1955 +MARKETING_VERSION = 0.0.1956 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 04d653ebccd3f28f0354b0408b893a2caeaeb550 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Apr 2024 18:10:09 +0000 Subject: [PATCH 2014/2586] Auto-release 0.0.1957 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 582cb4dc5ca8..f28195345d82 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1956 +MARKETING_VERSION = 0.0.1957 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3ed2f53258215f7535aa81f922947ad00b94cfc3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Apr 2024 00:34:06 +0000 Subject: [PATCH 2015/2586] Auto-release 0.0.1958 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f28195345d82..9fc923bf19ce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1957 +MARKETING_VERSION = 0.0.1958 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2048218d8a8357e0f8eadaaf1004692cd7cf1f13 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Apr 2024 06:09:55 +0000 Subject: [PATCH 2016/2586] Auto-release 0.0.1959 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9fc923bf19ce..26570bf23618 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1958 +MARKETING_VERSION = 0.0.1959 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 06faf24b63bcee9d6c6aefd3157cc9f2703671d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Apr 2024 12:13:24 +0000 Subject: [PATCH 2017/2586] Auto-release 0.0.1960 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 26570bf23618..ec689ce5033b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1959 +MARKETING_VERSION = 0.0.1960 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 351a210a11e564bbe44e2a0a05329ce58ebe5f23 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Apr 2024 18:09:51 +0000 Subject: [PATCH 2018/2586] Auto-release 0.0.1961 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ec689ce5033b..a2b835a95566 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1960 +MARKETING_VERSION = 0.0.1961 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cdc26dd33c1f30991493c76da69eb9dd22856b9d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Apr 2024 00:46:50 +0000 Subject: [PATCH 2019/2586] Auto-release 0.0.1962 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a2b835a95566..15de53a5342c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1961 +MARKETING_VERSION = 0.0.1962 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3957a54433583467bf6c8897b6d8d0037e314574 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Apr 2024 07:51:22 +0000 Subject: [PATCH 2020/2586] Auto-release 0.0.1963 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 15de53a5342c..0fcedcd4ba25 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1962 +MARKETING_VERSION = 0.0.1963 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 12c013f01c0ad7e9543a1330056babbefe9286de Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Apr 2024 14:38:48 +0000 Subject: [PATCH 2021/2586] Auto-release 0.0.1964 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0fcedcd4ba25..35710edc39d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1963 +MARKETING_VERSION = 0.0.1964 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0969139fa8ce1d70c75a22c01d237e2fdcff8762 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Apr 2024 22:53:22 +0000 Subject: [PATCH 2022/2586] Auto-release 0.0.1965 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 35710edc39d0..c3098fe4c332 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1964 +MARKETING_VERSION = 0.0.1965 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d05bbc2929898668a41cbc5acd6a72244ea7d24b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Apr 2024 03:08:29 +0000 Subject: [PATCH 2023/2586] Auto-release 0.0.1966 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c3098fe4c332..0708867622c4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1965 +MARKETING_VERSION = 0.0.1966 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1b5875f33103941304e824488cf961d40768d69d Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Apr 2024 06:13:23 +0000 Subject: [PATCH 2024/2586] Auto-release 0.0.1967 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0708867622c4..f7512de34371 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1966 +MARKETING_VERSION = 0.0.1967 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a6578fffa5d298674ec5c19ab55284662459d5a5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Apr 2024 12:18:37 +0000 Subject: [PATCH 2025/2586] Auto-release 0.0.1968 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f7512de34371..17b4d9742891 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1967 +MARKETING_VERSION = 0.0.1968 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7fd5322ea9d131b4733d17cedeb417ce146889eb Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Apr 2024 18:12:02 +0000 Subject: [PATCH 2026/2586] Auto-release 0.0.1969 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 17b4d9742891..776964f54a6d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1968 +MARKETING_VERSION = 0.0.1969 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0ee8001a2122db75174b3b30e57d01f5a66f418f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Apr 2024 00:39:45 +0000 Subject: [PATCH 2027/2586] Auto-release 0.0.1970 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 776964f54a6d..c36db5aa00a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1969 +MARKETING_VERSION = 0.0.1970 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3fccf30506387798cd26b1d89e81ac33eb47dff1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Apr 2024 06:11:53 +0000 Subject: [PATCH 2028/2586] Auto-release 0.0.1971 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c36db5aa00a7..cf90abec3cd3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1970 +MARKETING_VERSION = 0.0.1971 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c8ee29526e19d0301a91f481c5c3c4b0eeaaeb8e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Apr 2024 12:16:14 +0000 Subject: [PATCH 2029/2586] Auto-release 0.0.1972 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf90abec3cd3..420033a8ef5f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1971 +MARKETING_VERSION = 0.0.1972 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a87df3ab2bfdc568bccbf7d93c147743aface970 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Apr 2024 18:12:02 +0000 Subject: [PATCH 2030/2586] Auto-release 0.0.1973 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 420033a8ef5f..23d5e4efcc3d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1972 +MARKETING_VERSION = 0.0.1973 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8450b9dc12420a65e8e35a9cdc73564462b0e9fa Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Apr 2024 00:40:48 +0000 Subject: [PATCH 2031/2586] Auto-release 0.0.1974 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 23d5e4efcc3d..49219f5d743c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1973 +MARKETING_VERSION = 0.0.1974 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 997d904ef9f1deabfed3be8cbd27893bdbd75276 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Apr 2024 06:14:57 +0000 Subject: [PATCH 2032/2586] Auto-release 0.0.1975 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 49219f5d743c..851f17404f06 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1974 +MARKETING_VERSION = 0.0.1975 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bcd3adb8fd9df6d66486c56b19f3d990d30def3c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Apr 2024 12:16:33 +0000 Subject: [PATCH 2033/2586] Auto-release 0.0.1976 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 851f17404f06..f762a89697d7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1975 +MARKETING_VERSION = 0.0.1976 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6bd50cad16210539b33a14de217ce1df32bf6f86 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Apr 2024 18:12:20 +0000 Subject: [PATCH 2034/2586] Auto-release 0.0.1977 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f762a89697d7..65fc2d60f38c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1976 +MARKETING_VERSION = 0.0.1977 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d8248b1812951a695c969d44593334a70bbf251b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Apr 2024 00:39:54 +0000 Subject: [PATCH 2035/2586] Auto-release 0.0.1978 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 65fc2d60f38c..7fb255b4da5e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1977 +MARKETING_VERSION = 0.0.1978 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 29ea6969982417f7f7a4810401cffae3a6fec6c8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Apr 2024 06:12:39 +0000 Subject: [PATCH 2036/2586] Auto-release 0.0.1979 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7fb255b4da5e..cb5f5d8bd9c7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1978 +MARKETING_VERSION = 0.0.1979 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f03907f7226ca3a3409442ad6f9e6a08b7c5e296 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Apr 2024 12:15:55 +0000 Subject: [PATCH 2037/2586] Auto-release 0.0.1980 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cb5f5d8bd9c7..8a0819e5214c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1979 +MARKETING_VERSION = 0.0.1980 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3ddd41c093927df45540ad2505d99a3bf7dfb14a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Apr 2024 18:12:19 +0000 Subject: [PATCH 2038/2586] Auto-release 0.0.1981 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8a0819e5214c..7c9c857cab07 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1980 +MARKETING_VERSION = 0.0.1981 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e8a25822330601e48f7798543e610c79ccd4e4ca Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Apr 2024 00:40:16 +0000 Subject: [PATCH 2039/2586] Auto-release 0.0.1982 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7c9c857cab07..aab7c474ee52 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1981 +MARKETING_VERSION = 0.0.1982 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 93b7ad74b7ef8aa9a66fb6331c2b135f3f3317a4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Apr 2024 06:13:25 +0000 Subject: [PATCH 2040/2586] Auto-release 0.0.1983 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aab7c474ee52..d3a0366ebe8d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1982 +MARKETING_VERSION = 0.0.1983 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 448043c6982e457a7636b6b965e694e654ef9253 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Apr 2024 12:16:39 +0000 Subject: [PATCH 2041/2586] Auto-release 0.0.1984 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d3a0366ebe8d..194d1a22ce57 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1983 +MARKETING_VERSION = 0.0.1984 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f376d0dab511ce6eb277ca8affa0dff4ed0b6dcf Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Apr 2024 18:11:37 +0000 Subject: [PATCH 2042/2586] Auto-release 0.0.1985 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 194d1a22ce57..d4fd918d976c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1984 +MARKETING_VERSION = 0.0.1985 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e044c321abd470568024df0829e9e75c467516d5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Apr 2024 00:40:44 +0000 Subject: [PATCH 2043/2586] Auto-release 0.0.1986 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d4fd918d976c..c990ebcf946a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1985 +MARKETING_VERSION = 0.0.1986 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 76b595694ce027ebb6466768743e6aefcccc0431 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Apr 2024 06:11:24 +0000 Subject: [PATCH 2044/2586] Auto-release 0.0.1987 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c990ebcf946a..9ff15e9ee71b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1986 +MARKETING_VERSION = 0.0.1987 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 955b58f808951d297ec6cfb43a2b05567201cfaf Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Apr 2024 12:16:13 +0000 Subject: [PATCH 2045/2586] Auto-release 0.0.1988 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9ff15e9ee71b..275e40461bbc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1987 +MARKETING_VERSION = 0.0.1988 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0d57540f35966e5ed1c358bba8bd2d0341659c34 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Apr 2024 18:12:17 +0000 Subject: [PATCH 2046/2586] Auto-release 0.0.1989 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 275e40461bbc..f0793b4a878f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1988 +MARKETING_VERSION = 0.0.1989 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 357feebbe413b46cd53c36aeeb2597cb6e20c29d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Apr 2024 00:43:41 +0000 Subject: [PATCH 2047/2586] Auto-release 0.0.1990 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f0793b4a878f..b1d020cccecd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1989 +MARKETING_VERSION = 0.0.1990 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1ce6b843a6449676e2ac922e107ec4f6009d9021 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Apr 2024 06:13:17 +0000 Subject: [PATCH 2048/2586] Auto-release 0.0.1991 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b1d020cccecd..7bb9bbc2939d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1990 +MARKETING_VERSION = 0.0.1991 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e4fd4cea2dae224a440afc2397cb450350e07d6e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Apr 2024 12:16:01 +0000 Subject: [PATCH 2049/2586] Auto-release 0.0.1992 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7bb9bbc2939d..1ca349850994 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1991 +MARKETING_VERSION = 0.0.1992 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 39773d3d0e3071775406bb2a61589d16b6a580c8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Apr 2024 18:12:22 +0000 Subject: [PATCH 2050/2586] Auto-release 0.0.1993 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ca349850994..1e7d55e2d8d4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1992 +MARKETING_VERSION = 0.0.1993 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 634e9133ef16cd935760826c02e3a984a8d49d46 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Apr 2024 00:41:59 +0000 Subject: [PATCH 2051/2586] Auto-release 0.0.1994 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1e7d55e2d8d4..ea408a96a6fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1993 +MARKETING_VERSION = 0.0.1994 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e251f734173bf422dce4b55f3ae821bf63fcac0f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Apr 2024 06:14:13 +0000 Subject: [PATCH 2052/2586] Auto-release 0.0.1995 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ea408a96a6fc..875c566df77a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1994 +MARKETING_VERSION = 0.0.1995 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 41c054c7bc7d4b7adbf1f328a6b8c56fccaf3293 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Apr 2024 12:17:37 +0000 Subject: [PATCH 2053/2586] Auto-release 0.0.1996 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 875c566df77a..3175345a033a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1995 +MARKETING_VERSION = 0.0.1996 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 30af9740b2d45de5185569b6af1c8ba8898c9832 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Apr 2024 18:11:02 +0000 Subject: [PATCH 2054/2586] Auto-release 0.0.1997 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3175345a033a..81df6e800c01 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1996 +MARKETING_VERSION = 0.0.1997 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 73ddbc3dba26b5784a3e9be01d74bfcf1b92d705 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Apr 2024 00:40:44 +0000 Subject: [PATCH 2055/2586] Auto-release 0.0.1998 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 81df6e800c01..e88773b65fa6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1997 +MARKETING_VERSION = 0.0.1998 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 78e31530bc59902036415dc5d89a3d9c81926a0f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Apr 2024 06:13:16 +0000 Subject: [PATCH 2056/2586] Auto-release 0.0.1999 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e88773b65fa6..999791777b0a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1998 +MARKETING_VERSION = 0.0.1999 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0d7d51c11ceab525095768fd9288a31f9e5f75a9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Apr 2024 12:17:47 +0000 Subject: [PATCH 2057/2586] Auto-release 0.0.2000 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 999791777b0a..2c303ce1b458 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.1999 +MARKETING_VERSION = 0.0.2000 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7594658cb32f949f76ae982c1dcaef6ac89486d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Apr 2024 18:12:03 +0000 Subject: [PATCH 2058/2586] Auto-release 0.0.2001 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2c303ce1b458..a94c3f6b58cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2000 +MARKETING_VERSION = 0.0.2001 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 010d3aa9d05695c5c1b9625756f811fd9a6b0c2a Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Apr 2024 00:41:16 +0000 Subject: [PATCH 2059/2586] Auto-release 0.0.2002 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a94c3f6b58cb..22982dabdb80 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2001 +MARKETING_VERSION = 0.0.2002 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 13fff08efbd3b5ec8fdf014dd70f2e88d29fadb7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Apr 2024 06:13:32 +0000 Subject: [PATCH 2060/2586] Auto-release 0.0.2003 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 22982dabdb80..d8f4df43c2d7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2002 +MARKETING_VERSION = 0.0.2003 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6ba4babdf2732259c52510c36334082789963d7b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Apr 2024 12:19:12 +0000 Subject: [PATCH 2061/2586] Auto-release 0.0.2004 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d8f4df43c2d7..31029c233c68 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2003 +MARKETING_VERSION = 0.0.2004 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2afca109126167c0c245460592fb944e84303e31 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Apr 2024 18:11:33 +0000 Subject: [PATCH 2062/2586] Auto-release 0.0.2005 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 31029c233c68..09fe20c095e4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2004 +MARKETING_VERSION = 0.0.2005 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a85b5a414473a7ffb6189c75b1f954c51e87e70c Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Apr 2024 00:42:59 +0000 Subject: [PATCH 2063/2586] Auto-release 0.0.2006 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 09fe20c095e4..514f56b19698 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2005 +MARKETING_VERSION = 0.0.2006 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6051e0bc846c693f4f5b0cab6c1d2772500741bb Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Apr 2024 06:12:44 +0000 Subject: [PATCH 2064/2586] Auto-release 0.0.2007 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 514f56b19698..7397f1a75458 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2006 +MARKETING_VERSION = 0.0.2007 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 642edce825ee58733342472dbc0e9f955e702f87 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Apr 2024 12:14:23 +0000 Subject: [PATCH 2065/2586] Auto-release 0.0.2008 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7397f1a75458..944e33a713d9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2007 +MARKETING_VERSION = 0.0.2008 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3532d88f4f60bd441ce532c1e2bb23cac2e3aeb4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Apr 2024 18:12:19 +0000 Subject: [PATCH 2066/2586] Auto-release 0.0.2009 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 944e33a713d9..c36670c0980c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2008 +MARKETING_VERSION = 0.0.2009 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 500df539db3910e51a2eef137b09bab6ab12bc35 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Apr 2024 00:40:46 +0000 Subject: [PATCH 2067/2586] Auto-release 0.0.2010 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c36670c0980c..27c88b874ad2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2009 +MARKETING_VERSION = 0.0.2010 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fc82d3d3e2550cc3bc05b1ee3828fb657dc20a96 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Apr 2024 06:13:57 +0000 Subject: [PATCH 2068/2586] Auto-release 0.0.2011 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 27c88b874ad2..6808d83de29b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2010 +MARKETING_VERSION = 0.0.2011 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 40c28eaf3c11cba1b85023de9531453153c44c10 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Apr 2024 12:16:45 +0000 Subject: [PATCH 2069/2586] Auto-release 0.0.2012 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6808d83de29b..41ddb8600a2a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2011 +MARKETING_VERSION = 0.0.2012 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 950a72d02bd04091d83f4943a872ebcfd747487a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Apr 2024 18:12:03 +0000 Subject: [PATCH 2070/2586] Auto-release 0.0.2013 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 41ddb8600a2a..c6bb35b5eba4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2012 +MARKETING_VERSION = 0.0.2013 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d129a794383ba403835f6b02878d0cc9847b5ab1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Apr 2024 00:40:39 +0000 Subject: [PATCH 2071/2586] Auto-release 0.0.2014 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c6bb35b5eba4..9ff0cc21dcff 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2013 +MARKETING_VERSION = 0.0.2014 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 24bbf76ac72c2baa73e8a3fb36f4dc08587e7f91 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Apr 2024 06:13:01 +0000 Subject: [PATCH 2072/2586] Auto-release 0.0.2015 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9ff0cc21dcff..61634f3add9b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2014 +MARKETING_VERSION = 0.0.2015 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 50a5ed9822541a8225c46591dcd00851aa8135e4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Apr 2024 12:15:38 +0000 Subject: [PATCH 2073/2586] Auto-release 0.0.2016 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 61634f3add9b..fb9ce3b5e563 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2015 +MARKETING_VERSION = 0.0.2016 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2aab8b530dd26736f9b0e8092e7040a6e56e9527 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Apr 2024 18:10:45 +0000 Subject: [PATCH 2074/2586] Auto-release 0.0.2017 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb9ce3b5e563..e6713c39cb9b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2016 +MARKETING_VERSION = 0.0.2017 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 947a0e45214129f7d3a31ae12ce628b943de5f37 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Apr 2024 00:44:18 +0000 Subject: [PATCH 2075/2586] Auto-release 0.0.2018 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e6713c39cb9b..b6a56b7f1f67 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2017 +MARKETING_VERSION = 0.0.2018 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 856a4c9de6831eb6f020d95d7ad3dbb79e755beb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Apr 2024 06:11:55 +0000 Subject: [PATCH 2076/2586] Auto-release 0.0.2019 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6a56b7f1f67..b729fa076f1c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2018 +MARKETING_VERSION = 0.0.2019 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 05a312e445e5998f5a0d40da6452b20bbe37b0dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Apr 2024 12:16:21 +0000 Subject: [PATCH 2077/2586] Auto-release 0.0.2020 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b729fa076f1c..3f6610bd49de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2019 +MARKETING_VERSION = 0.0.2020 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8e92fdf8553cca9234e29a04809df630f804e8ee Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Apr 2024 18:10:39 +0000 Subject: [PATCH 2078/2586] Auto-release 0.0.2021 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f6610bd49de..dbb913a3100e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2020 +MARKETING_VERSION = 0.0.2021 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c8b19dc6fea929b281813a3025deadc43c455d86 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Apr 2024 00:41:39 +0000 Subject: [PATCH 2079/2586] Auto-release 0.0.2022 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dbb913a3100e..62f48ee06255 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2021 +MARKETING_VERSION = 0.0.2022 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0b878a0b8b87e6ac3d0cab4770a384fb3738eb65 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Apr 2024 06:12:53 +0000 Subject: [PATCH 2080/2586] Auto-release 0.0.2023 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 62f48ee06255..9da45b8c7de3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2022 +MARKETING_VERSION = 0.0.2023 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a7b7436a99c7eba19e1001cd8510a64fcf5beb8b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Apr 2024 12:17:21 +0000 Subject: [PATCH 2081/2586] Auto-release 0.0.2024 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9da45b8c7de3..1f52c1c9d119 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2023 +MARKETING_VERSION = 0.0.2024 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ebba31c45fb002e68a6fe5fd0299ae74e7b4af3e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Apr 2024 18:11:54 +0000 Subject: [PATCH 2082/2586] Auto-release 0.0.2025 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1f52c1c9d119..d76b97beab81 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2024 +MARKETING_VERSION = 0.0.2025 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 34eeb19ea5a35614a9e91e4981af065b7444bc82 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Apr 2024 00:40:14 +0000 Subject: [PATCH 2083/2586] Auto-release 0.0.2026 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d76b97beab81..5220ca922e36 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2025 +MARKETING_VERSION = 0.0.2026 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 627b617d090928d7351b56bcda80dc9572c16164 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Apr 2024 06:12:56 +0000 Subject: [PATCH 2084/2586] Auto-release 0.0.2027 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5220ca922e36..80b9618e070b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2026 +MARKETING_VERSION = 0.0.2027 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 491e5919819de3011c93a9d1d98eee9a26f05f52 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Apr 2024 12:16:00 +0000 Subject: [PATCH 2085/2586] Auto-release 0.0.2028 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 80b9618e070b..810ca77cb34c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2027 +MARKETING_VERSION = 0.0.2028 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6f7de153702917e34c0172e0b15209ab74278692 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Apr 2024 18:13:15 +0000 Subject: [PATCH 2086/2586] Auto-release 0.0.2029 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 810ca77cb34c..4614cf84bc1c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2028 +MARKETING_VERSION = 0.0.2029 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d790d8c96b8e4ae4ac99f9ad2250bdd7dab7a856 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 May 2024 00:44:04 +0000 Subject: [PATCH 2087/2586] Auto-release 0.0.2030 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4614cf84bc1c..8de4a9b86e7c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2029 +MARKETING_VERSION = 0.0.2030 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a851a594880ea35ea2818910812eef0808f3788f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 May 2024 06:13:47 +0000 Subject: [PATCH 2088/2586] Auto-release 0.0.2031 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8de4a9b86e7c..4231aebf1551 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2030 +MARKETING_VERSION = 0.0.2031 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5139938569f404239400c087ea8ffd9c697479ae Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 May 2024 12:17:23 +0000 Subject: [PATCH 2089/2586] Auto-release 0.0.2032 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4231aebf1551..2d2c057e419d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2031 +MARKETING_VERSION = 0.0.2032 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f93781b18b1e89672129d778f34a35243e9c55db Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 1 May 2024 18:12:37 +0000 Subject: [PATCH 2090/2586] Auto-release 0.0.2033 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d2c057e419d..297764f3c213 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2032 +MARKETING_VERSION = 0.0.2033 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 125ac88403f5a53f1e727dfa7a6a6e455a860ec0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 May 2024 00:40:41 +0000 Subject: [PATCH 2091/2586] Auto-release 0.0.2034 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 297764f3c213..d25d3f00573d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2033 +MARKETING_VERSION = 0.0.2034 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a211d2195b621065ccb5fee90b146747360e8dae Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 May 2024 06:12:59 +0000 Subject: [PATCH 2092/2586] Auto-release 0.0.2035 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d25d3f00573d..a83aee5afb3b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2034 +MARKETING_VERSION = 0.0.2035 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 76eb1ee38e81bc164c954eaa89170d751ce65ccc Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 May 2024 12:17:09 +0000 Subject: [PATCH 2093/2586] Auto-release 0.0.2036 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a83aee5afb3b..aaeb9d578d58 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2035 +MARKETING_VERSION = 0.0.2036 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From db7359d19c14d5f3db2730543e1b3d8b448595d7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 2 May 2024 18:11:40 +0000 Subject: [PATCH 2094/2586] Auto-release 0.0.2037 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index aaeb9d578d58..27f2e6604904 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2036 +MARKETING_VERSION = 0.0.2037 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 03cece3ea4189ff1c0140a4f26e38112ff229cfa Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 May 2024 00:43:06 +0000 Subject: [PATCH 2095/2586] Auto-release 0.0.2038 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 27f2e6604904..f00855a95389 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2037 +MARKETING_VERSION = 0.0.2038 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6c655b64be4487e1f056308419ca676e8c09c5a4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 May 2024 06:13:00 +0000 Subject: [PATCH 2096/2586] Auto-release 0.0.2039 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f00855a95389..3f717e49edd5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2038 +MARKETING_VERSION = 0.0.2039 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f136f3e244b46b6e416519fce72f350fe07f3af4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 May 2024 12:16:08 +0000 Subject: [PATCH 2097/2586] Auto-release 0.0.2040 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f717e49edd5..1715e41ef619 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2039 +MARKETING_VERSION = 0.0.2040 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 237a4e66c7efd47fd96bb61f32bc19bb743da169 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 3 May 2024 18:12:00 +0000 Subject: [PATCH 2098/2586] Auto-release 0.0.2041 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1715e41ef619..b7eed91e7456 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2040 +MARKETING_VERSION = 0.0.2041 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bf4329b6d3d5ca20ad8531c593471878aa80e713 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 May 2024 00:40:38 +0000 Subject: [PATCH 2099/2586] Auto-release 0.0.2042 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b7eed91e7456..9ded40415cf4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2041 +MARKETING_VERSION = 0.0.2042 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6801c61988cc2e820a3c9252a9e1023225addbae Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 May 2024 06:11:42 +0000 Subject: [PATCH 2100/2586] Auto-release 0.0.2043 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9ded40415cf4..8d0f34f6bd0c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2042 +MARKETING_VERSION = 0.0.2043 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bc5b538f73ba275a34e17c2104d639fe8380501b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 May 2024 12:16:03 +0000 Subject: [PATCH 2101/2586] Auto-release 0.0.2044 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8d0f34f6bd0c..02e2f88938ff 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2043 +MARKETING_VERSION = 0.0.2044 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 602e185bef9d0520e60d28a809c2b47b50fbcac6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 4 May 2024 18:10:44 +0000 Subject: [PATCH 2102/2586] Auto-release 0.0.2045 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 02e2f88938ff..542a282be636 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2044 +MARKETING_VERSION = 0.0.2045 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 937f39d5ce87797552c40dec301d309cfcb929af Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 May 2024 00:44:17 +0000 Subject: [PATCH 2103/2586] Auto-release 0.0.2046 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 542a282be636..3db2ae2f0730 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2045 +MARKETING_VERSION = 0.0.2046 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a60a3731df17414397fc2e62ce87c6dc90a50417 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 May 2024 06:12:20 +0000 Subject: [PATCH 2104/2586] Auto-release 0.0.2047 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3db2ae2f0730..8b98fd4817d3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2046 +MARKETING_VERSION = 0.0.2047 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 15be0c0975ad460a088cf73de4cd69c27125e6c9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 May 2024 12:15:44 +0000 Subject: [PATCH 2105/2586] Auto-release 0.0.2048 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8b98fd4817d3..0e0d594b674d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2047 +MARKETING_VERSION = 0.0.2048 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From acfdfe0b0575d651ef5f13ac2cd2bc5f50c50f16 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 5 May 2024 18:11:14 +0000 Subject: [PATCH 2106/2586] Auto-release 0.0.2049 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0e0d594b674d..c5daac12e54c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2048 +MARKETING_VERSION = 0.0.2049 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cf766988f9eabc27b95f22f580b714a67610de37 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 May 2024 00:42:18 +0000 Subject: [PATCH 2107/2586] Auto-release 0.0.2050 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c5daac12e54c..cc879f1a9507 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2049 +MARKETING_VERSION = 0.0.2050 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3e72118c160ab69831746744fb0783240955f416 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 May 2024 06:13:24 +0000 Subject: [PATCH 2108/2586] Auto-release 0.0.2051 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cc879f1a9507..eb520445da62 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2050 +MARKETING_VERSION = 0.0.2051 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3f5da459dc2b3061ede9ce107d18dbdc677014c5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 May 2024 12:17:06 +0000 Subject: [PATCH 2109/2586] Auto-release 0.0.2052 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eb520445da62..28a37e322d81 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2051 +MARKETING_VERSION = 0.0.2052 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e4718556c52282b9c031c25a425d4c8786dc8d2b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 6 May 2024 18:14:37 +0000 Subject: [PATCH 2110/2586] Auto-release 0.0.2053 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 28a37e322d81..180cb3a99ab7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2052 +MARKETING_VERSION = 0.0.2053 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 38728e94c102ea4dde2414eedfbf2a279ff96fcf Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 May 2024 00:41:53 +0000 Subject: [PATCH 2111/2586] Auto-release 0.0.2054 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 180cb3a99ab7..90fbc35b3e8e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2053 +MARKETING_VERSION = 0.0.2054 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From afc4248ab6f91103ad3c3eae19258a38edda0999 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 May 2024 06:13:23 +0000 Subject: [PATCH 2112/2586] Auto-release 0.0.2055 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 90fbc35b3e8e..e748a95c6410 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2054 +MARKETING_VERSION = 0.0.2055 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6d33f91d2109a07548418a14f9c5270815be6766 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 May 2024 12:16:46 +0000 Subject: [PATCH 2113/2586] Auto-release 0.0.2056 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e748a95c6410..180e5cac1f5a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2055 +MARKETING_VERSION = 0.0.2056 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 42eb8fc2b94988f39d82880e103062421b12ba5d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 7 May 2024 18:12:52 +0000 Subject: [PATCH 2114/2586] Auto-release 0.0.2057 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 180e5cac1f5a..b6d7ed3934a7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2056 +MARKETING_VERSION = 0.0.2057 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b5cedf2944751ef8dbdc58f9717d896ccc88e8d2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 May 2024 00:35:08 +0000 Subject: [PATCH 2115/2586] Auto-release 0.0.2058 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6d7ed3934a7..8038c1d6e08e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2057 +MARKETING_VERSION = 0.0.2058 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8753a8ee1b63ab6cd6705711f3633c66079520fb Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 May 2024 06:11:58 +0000 Subject: [PATCH 2116/2586] Auto-release 0.0.2059 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8038c1d6e08e..1ae1bc552a37 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2058 +MARKETING_VERSION = 0.0.2059 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 03ab683ccda453cbe89b7598e9c72cd836766e82 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 May 2024 12:17:28 +0000 Subject: [PATCH 2117/2586] Auto-release 0.0.2060 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ae1bc552a37..8d78f1ccf96e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2059 +MARKETING_VERSION = 0.0.2060 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 32a0b4e403d13d19509396ad0700b532b8849ac0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 8 May 2024 18:13:12 +0000 Subject: [PATCH 2118/2586] Auto-release 0.0.2061 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8d78f1ccf96e..192be3ce37dd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2060 +MARKETING_VERSION = 0.0.2061 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 72b34b24bde83ab6bd8b042026ac34c1fc287629 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 May 2024 00:41:52 +0000 Subject: [PATCH 2119/2586] Auto-release 0.0.2062 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 192be3ce37dd..342dfbe8ace1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2061 +MARKETING_VERSION = 0.0.2062 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 912566bc83c157d51c9e0d8e39ba17b46431a7b8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 May 2024 06:13:29 +0000 Subject: [PATCH 2120/2586] Auto-release 0.0.2063 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 342dfbe8ace1..5b3f5de2b8d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2062 +MARKETING_VERSION = 0.0.2063 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 95c9fac3d26e206c1c2f28388f1ad281abde201d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 May 2024 12:16:43 +0000 Subject: [PATCH 2121/2586] Auto-release 0.0.2064 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5b3f5de2b8d0..9abc902b1383 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2063 +MARKETING_VERSION = 0.0.2064 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8d354ef115506634afcd1b2589a495b020d62c47 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 9 May 2024 18:11:36 +0000 Subject: [PATCH 2122/2586] Auto-release 0.0.2065 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9abc902b1383..b33d609bb502 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2064 +MARKETING_VERSION = 0.0.2065 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c4571a0414935b8f632afa08684803127d6db56f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 May 2024 00:41:20 +0000 Subject: [PATCH 2123/2586] Auto-release 0.0.2066 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b33d609bb502..37fe7f3fdf04 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2065 +MARKETING_VERSION = 0.0.2066 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b00ca9a6015a6a6b1275fea312881d05f96bbfc4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 May 2024 06:12:56 +0000 Subject: [PATCH 2124/2586] Auto-release 0.0.2067 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 37fe7f3fdf04..043160c0386d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2066 +MARKETING_VERSION = 0.0.2067 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f2419938fa99ad52c6062235f1a25d0e6e850741 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 May 2024 12:16:33 +0000 Subject: [PATCH 2125/2586] Auto-release 0.0.2068 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 043160c0386d..dd31acd3561f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2067 +MARKETING_VERSION = 0.0.2068 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e21766aa0de35189b799f98901faad9a43a035a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 10 May 2024 18:12:29 +0000 Subject: [PATCH 2126/2586] Auto-release 0.0.2069 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dd31acd3561f..c9c989534267 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2068 +MARKETING_VERSION = 0.0.2069 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f6d8d6455b5af17b3cb58b784fb90aff8beb3ece Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 May 2024 00:40:57 +0000 Subject: [PATCH 2127/2586] Auto-release 0.0.2070 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c9c989534267..e872ff1a3ae2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2069 +MARKETING_VERSION = 0.0.2070 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9985feea13c02ea6ea7ff853440fc32a138a48cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 May 2024 06:11:56 +0000 Subject: [PATCH 2128/2586] Auto-release 0.0.2071 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e872ff1a3ae2..52cc6efed15f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2070 +MARKETING_VERSION = 0.0.2071 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c10f62615d7a7d1de114cc273624c6dc58258e16 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 May 2024 12:15:30 +0000 Subject: [PATCH 2129/2586] Auto-release 0.0.2072 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 52cc6efed15f..669f2f5ce1e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2071 +MARKETING_VERSION = 0.0.2072 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 110c68eea80bd3d119c8d6a4fa9b703f3ca2f5b0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 11 May 2024 18:11:43 +0000 Subject: [PATCH 2130/2586] Auto-release 0.0.2073 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 669f2f5ce1e5..2e36a3f45da5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2072 +MARKETING_VERSION = 0.0.2073 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8ffd04efa5464d5a9571ef1f6b307eb96740a98f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 May 2024 00:45:23 +0000 Subject: [PATCH 2131/2586] Auto-release 0.0.2074 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2e36a3f45da5..6ea2aad8f541 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2073 +MARKETING_VERSION = 0.0.2074 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 924d550bdd891a460a7f2fd01cff122e7653db68 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 May 2024 06:12:58 +0000 Subject: [PATCH 2132/2586] Auto-release 0.0.2075 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6ea2aad8f541..09781e92559f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2074 +MARKETING_VERSION = 0.0.2075 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 71b4ca0864bb8c666f058d671c724c873693068b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 May 2024 12:17:31 +0000 Subject: [PATCH 2133/2586] Auto-release 0.0.2076 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 09781e92559f..8031de9b16a6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2075 +MARKETING_VERSION = 0.0.2076 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ffa5f15206e496cb5914548649aaa7b769b44ade Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 12 May 2024 18:13:11 +0000 Subject: [PATCH 2134/2586] Auto-release 0.0.2077 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8031de9b16a6..00ccae1b1e85 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2076 +MARKETING_VERSION = 0.0.2077 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3105d8c212ba822e015cdf243287c11752f0a7e6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 May 2024 00:43:33 +0000 Subject: [PATCH 2135/2586] Auto-release 0.0.2078 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 00ccae1b1e85..8e9341f45c71 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2077 +MARKETING_VERSION = 0.0.2078 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c0f37fb96816015517c70858c6b27484f4ec7649 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 May 2024 06:13:53 +0000 Subject: [PATCH 2136/2586] Auto-release 0.0.2079 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8e9341f45c71..e6fa63175e9f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2078 +MARKETING_VERSION = 0.0.2079 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b420585c8d27148cd476aec097529bbba7698b7f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 May 2024 12:17:48 +0000 Subject: [PATCH 2137/2586] Auto-release 0.0.2080 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e6fa63175e9f..e0c060f554ec 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2079 +MARKETING_VERSION = 0.0.2080 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bec55b205914c44a7117330bc7b552ada7bd1507 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 13 May 2024 18:11:18 +0000 Subject: [PATCH 2138/2586] Auto-release 0.0.2081 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e0c060f554ec..eba2699e65e4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2080 +MARKETING_VERSION = 0.0.2081 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aed51f776d03d2575ac01c0694849be3e101d10b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 May 2024 00:41:40 +0000 Subject: [PATCH 2139/2586] Auto-release 0.0.2082 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eba2699e65e4..44d79d904fe6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2081 +MARKETING_VERSION = 0.0.2082 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 44c27b2a1e7e680768eda5a99c34e94117dd2e6d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 May 2024 06:15:03 +0000 Subject: [PATCH 2140/2586] Auto-release 0.0.2083 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 44d79d904fe6..16ad4732f1ba 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2082 +MARKETING_VERSION = 0.0.2083 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 532f309dfb1a79cc5233afaa5e5362fc132d0a3a Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 May 2024 12:18:02 +0000 Subject: [PATCH 2141/2586] Auto-release 0.0.2084 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 16ad4732f1ba..a02295a2ab6c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2083 +MARKETING_VERSION = 0.0.2084 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From be319884c27b9643a9e468f17891fa27c07bb6a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 14 May 2024 18:12:26 +0000 Subject: [PATCH 2142/2586] Auto-release 0.0.2085 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a02295a2ab6c..d428bea8eb29 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2084 +MARKETING_VERSION = 0.0.2085 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a508eb5a72dbd02e81ac34f2ebee40c022f49b8c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 May 2024 00:41:56 +0000 Subject: [PATCH 2143/2586] Auto-release 0.0.2086 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d428bea8eb29..8edc9e55fba3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2085 +MARKETING_VERSION = 0.0.2086 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 676019ffcfc86e376ab6ef35c60c73ba0e0283e7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 May 2024 06:13:14 +0000 Subject: [PATCH 2144/2586] Auto-release 0.0.2087 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8edc9e55fba3..e61ce1a06351 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2086 +MARKETING_VERSION = 0.0.2087 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dc2bf8dcde7eff6cc95d5bafac08215d90214ba3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 May 2024 12:18:58 +0000 Subject: [PATCH 2145/2586] Auto-release 0.0.2088 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e61ce1a06351..5f6741e0da87 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2087 +MARKETING_VERSION = 0.0.2088 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1bfad397d5a94358f271ead94e91baca1d3df70f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 15 May 2024 18:12:13 +0000 Subject: [PATCH 2146/2586] Auto-release 0.0.2089 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5f6741e0da87..e642711edfd4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2088 +MARKETING_VERSION = 0.0.2089 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 01e1941319a4f064c53551d2d5310029c923efb5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 May 2024 00:41:44 +0000 Subject: [PATCH 2147/2586] Auto-release 0.0.2090 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e642711edfd4..1b70b6787070 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2089 +MARKETING_VERSION = 0.0.2090 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3d509c3552b76024afda1a7b32a40fd1cce64ce7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 May 2024 06:11:48 +0000 Subject: [PATCH 2148/2586] Auto-release 0.0.2091 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1b70b6787070..c8b545a6b5c1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2090 +MARKETING_VERSION = 0.0.2091 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8e0ae537ca42c7948a67d04af1765d4a18977644 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 May 2024 12:18:52 +0000 Subject: [PATCH 2149/2586] Auto-release 0.0.2092 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c8b545a6b5c1..f687b932c426 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2091 +MARKETING_VERSION = 0.0.2092 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8b526bc6d10137c987e8012661c4772b568d9b3f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 16 May 2024 18:12:53 +0000 Subject: [PATCH 2150/2586] Auto-release 0.0.2093 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f687b932c426..c06141ba65f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2092 +MARKETING_VERSION = 0.0.2093 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4ab52b0baabd2451d29478a45475525a7f46f92e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 May 2024 00:42:39 +0000 Subject: [PATCH 2151/2586] Auto-release 0.0.2094 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c06141ba65f7..26868cea8374 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2093 +MARKETING_VERSION = 0.0.2094 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7754946ca805040b633a5f177103ee2c3aaa4c9f Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 May 2024 06:13:25 +0000 Subject: [PATCH 2152/2586] Auto-release 0.0.2095 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 26868cea8374..94bd23ce6a9a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2094 +MARKETING_VERSION = 0.0.2095 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 99c7bde7802f3d519a1f703abd4677b3663e53a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 May 2024 12:16:49 +0000 Subject: [PATCH 2153/2586] Auto-release 0.0.2096 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 94bd23ce6a9a..604896ec0a7f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2095 +MARKETING_VERSION = 0.0.2096 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7d0c4211c4ef07fe90f5d428b37bcb315367a999 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 17 May 2024 18:12:30 +0000 Subject: [PATCH 2154/2586] Auto-release 0.0.2097 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 604896ec0a7f..b2b35bc4d346 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2096 +MARKETING_VERSION = 0.0.2097 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 11ff239e7fa12fe2a9696a15d9eb6df140957bb1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 May 2024 00:41:53 +0000 Subject: [PATCH 2155/2586] Auto-release 0.0.2098 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b2b35bc4d346..cf5d887d019c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2097 +MARKETING_VERSION = 0.0.2098 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5c39083b33fa5b0e766e9f6f7f432405020d42fe Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 May 2024 06:12:28 +0000 Subject: [PATCH 2156/2586] Auto-release 0.0.2099 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf5d887d019c..a69b176d1272 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2098 +MARKETING_VERSION = 0.0.2099 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 065738ddf629518d9ffef2c4ec6a15abbcb66324 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 May 2024 12:18:15 +0000 Subject: [PATCH 2157/2586] Auto-release 0.0.2100 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a69b176d1272..96d09007b086 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2099 +MARKETING_VERSION = 0.0.2100 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e2e355c90d99da20f1cc7317dfe361c6df51c38f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 18 May 2024 18:12:30 +0000 Subject: [PATCH 2158/2586] Auto-release 0.0.2101 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 96d09007b086..b3d252ff43c0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2100 +MARKETING_VERSION = 0.0.2101 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 95858123022fff7bb42976085520b24dfb8b19a0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 May 2024 00:46:42 +0000 Subject: [PATCH 2159/2586] Auto-release 0.0.2102 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b3d252ff43c0..3e3cf87a8863 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2101 +MARKETING_VERSION = 0.0.2102 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1aca87e2a60a8a1ce56eb0fec97b41f65ff7dba6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 May 2024 06:12:32 +0000 Subject: [PATCH 2160/2586] Auto-release 0.0.2103 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e3cf87a8863..fb26cb934ab7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2102 +MARKETING_VERSION = 0.0.2103 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9263e80897bbdb9261f84803158382317555f660 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 May 2024 12:16:24 +0000 Subject: [PATCH 2161/2586] Auto-release 0.0.2104 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb26cb934ab7..83e92d65a0a3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2103 +MARKETING_VERSION = 0.0.2104 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8aa1bac716e9f46ddf8270cc66bb940396316307 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 19 May 2024 18:12:23 +0000 Subject: [PATCH 2162/2586] Auto-release 0.0.2105 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 83e92d65a0a3..bb21a4bcf4f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2104 +MARKETING_VERSION = 0.0.2105 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e3edf810aa6f6a00ec6623d663203736da128b38 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 May 2024 00:42:48 +0000 Subject: [PATCH 2163/2586] Auto-release 0.0.2106 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bb21a4bcf4f1..cfe7e3793c88 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2105 +MARKETING_VERSION = 0.0.2106 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6fee09512b753c600049d0c2ac099b2605a1a5dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 May 2024 06:13:49 +0000 Subject: [PATCH 2164/2586] Auto-release 0.0.2107 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cfe7e3793c88..a08d3c2943ac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2106 +MARKETING_VERSION = 0.0.2107 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7fe59dcec0e66b035a2aa0c13b8f0404bb3d8191 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 May 2024 12:19:31 +0000 Subject: [PATCH 2165/2586] Auto-release 0.0.2108 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a08d3c2943ac..3949ae06b150 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2107 +MARKETING_VERSION = 0.0.2108 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 662204c397196f43995a28c74f88d54b0974809f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 20 May 2024 18:12:44 +0000 Subject: [PATCH 2166/2586] Auto-release 0.0.2109 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3949ae06b150..39365ad2728e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2108 +MARKETING_VERSION = 0.0.2109 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ea52a77b0e1c67cc6303397bed3de661f0324a94 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 May 2024 00:42:22 +0000 Subject: [PATCH 2167/2586] Auto-release 0.0.2110 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 39365ad2728e..f1c65576ad19 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2109 +MARKETING_VERSION = 0.0.2110 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 78c3c369847e4979102a959474142ae75f3a9a5b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 May 2024 06:14:23 +0000 Subject: [PATCH 2168/2586] Auto-release 0.0.2111 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f1c65576ad19..40190e7cb1de 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2110 +MARKETING_VERSION = 0.0.2111 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1f9c21957bf1b232e9655e76f9c7313b5fc70542 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 May 2024 12:17:32 +0000 Subject: [PATCH 2169/2586] Auto-release 0.0.2112 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 40190e7cb1de..7709fdecc3b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2111 +MARKETING_VERSION = 0.0.2112 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6e8de54187dcc872f9c12ceee13aa15001ed56c8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 21 May 2024 18:13:06 +0000 Subject: [PATCH 2170/2586] Auto-release 0.0.2113 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7709fdecc3b9..4f4b30103114 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2112 +MARKETING_VERSION = 0.0.2113 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1e808212519c32defdc237838d40541ccc30588e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 May 2024 00:42:16 +0000 Subject: [PATCH 2171/2586] Auto-release 0.0.2114 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4f4b30103114..e98853da4dc8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2113 +MARKETING_VERSION = 0.0.2114 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a05eea785bb0df2783c66110ba2a1c2bf588ba90 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 May 2024 06:13:48 +0000 Subject: [PATCH 2172/2586] Auto-release 0.0.2115 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e98853da4dc8..58eff21b819e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2114 +MARKETING_VERSION = 0.0.2115 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eb40bf3f31c5e86398ff06c145d2aa0a2db4dc25 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 May 2024 12:18:38 +0000 Subject: [PATCH 2173/2586] Auto-release 0.0.2116 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 58eff21b819e..40a89f558801 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2115 +MARKETING_VERSION = 0.0.2116 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 755c8754ecdf81822a4531fc79b6993040503826 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 22 May 2024 18:13:51 +0000 Subject: [PATCH 2174/2586] Auto-release 0.0.2117 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 40a89f558801..37862dc3928b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2116 +MARKETING_VERSION = 0.0.2117 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3b933bb42e496c234a3694b2338644e0eb391057 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 May 2024 00:42:11 +0000 Subject: [PATCH 2175/2586] Auto-release 0.0.2118 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 37862dc3928b..1838ea91c3a8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2117 +MARKETING_VERSION = 0.0.2118 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 66818446b2489e0c0f2687232014486526e2ac0f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 May 2024 06:14:32 +0000 Subject: [PATCH 2176/2586] Auto-release 0.0.2119 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1838ea91c3a8..666be6afe003 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2118 +MARKETING_VERSION = 0.0.2119 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fd33f0f78ae2e27086d7ea9c81daf978934d241e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 May 2024 12:17:54 +0000 Subject: [PATCH 2177/2586] Auto-release 0.0.2120 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 666be6afe003..3de53cddde02 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2119 +MARKETING_VERSION = 0.0.2120 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d2a9bfff57ac6fd6c938bdf3988120cbe12227bc Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 23 May 2024 18:12:54 +0000 Subject: [PATCH 2178/2586] Auto-release 0.0.2121 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3de53cddde02..f6c145d414ee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2120 +MARKETING_VERSION = 0.0.2121 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4c53d97617456e26688cd0726d818aff7babe953 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 May 2024 00:42:29 +0000 Subject: [PATCH 2179/2586] Auto-release 0.0.2122 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f6c145d414ee..681a1a0309cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2121 +MARKETING_VERSION = 0.0.2122 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4e8b9d733e757331df745c3044146d72a5a36a16 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 May 2024 06:14:15 +0000 Subject: [PATCH 2180/2586] Auto-release 0.0.2123 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 681a1a0309cb..e2d274615226 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2122 +MARKETING_VERSION = 0.0.2123 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c9509737feb99aecd7d265ec5f653821b958d139 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 May 2024 12:16:48 +0000 Subject: [PATCH 2181/2586] Auto-release 0.0.2124 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e2d274615226..662c9e390b07 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2123 +MARKETING_VERSION = 0.0.2124 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 451ab1124b59442631514287a3621269c8fed902 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 24 May 2024 18:13:04 +0000 Subject: [PATCH 2182/2586] Auto-release 0.0.2125 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 662c9e390b07..8611dcd1334f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2124 +MARKETING_VERSION = 0.0.2125 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3198da04e076635ebb58631b68c5176ba7632ec0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 May 2024 00:41:34 +0000 Subject: [PATCH 2183/2586] Auto-release 0.0.2126 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8611dcd1334f..c727bb345029 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2125 +MARKETING_VERSION = 0.0.2126 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bcde0bb23af24733af242d3e183c963d55bbea53 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 May 2024 06:13:45 +0000 Subject: [PATCH 2184/2586] Auto-release 0.0.2127 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c727bb345029..630ec9471801 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2126 +MARKETING_VERSION = 0.0.2127 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 83090e94a6b1ef11c0cf306a5b38f3b1f9bd8680 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 May 2024 12:16:22 +0000 Subject: [PATCH 2185/2586] Auto-release 0.0.2128 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 630ec9471801..d10ba2a2070c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2127 +MARKETING_VERSION = 0.0.2128 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3034d3109e952bd1ee4feba6ac67cdfae4b60f56 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 25 May 2024 18:11:58 +0000 Subject: [PATCH 2186/2586] Auto-release 0.0.2129 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d10ba2a2070c..c210d7fea575 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2128 +MARKETING_VERSION = 0.0.2129 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a4f6fb1d920b9df3e22fc82bfe1b6e3638a8e985 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 May 2024 00:46:50 +0000 Subject: [PATCH 2187/2586] Auto-release 0.0.2130 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c210d7fea575..92e76ee94b9e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2129 +MARKETING_VERSION = 0.0.2130 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dfed55869c7686c05c54376cd0e742119220e0ed Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 May 2024 06:12:28 +0000 Subject: [PATCH 2188/2586] Auto-release 0.0.2131 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 92e76ee94b9e..c827575b9277 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2130 +MARKETING_VERSION = 0.0.2131 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8adaef8e0eb8d859c2b4ad956f329bc264c98d9f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 May 2024 12:15:59 +0000 Subject: [PATCH 2189/2586] Auto-release 0.0.2132 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c827575b9277..3c4d366bb1db 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2131 +MARKETING_VERSION = 0.0.2132 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7f51b94a2c5be67e991c5b4a1e46be255f30855c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 26 May 2024 18:12:20 +0000 Subject: [PATCH 2190/2586] Auto-release 0.0.2133 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3c4d366bb1db..f6e191a4d428 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2132 +MARKETING_VERSION = 0.0.2133 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e6b651adcde2b728282236227b2110c25fabba3f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 May 2024 00:43:31 +0000 Subject: [PATCH 2191/2586] Auto-release 0.0.2134 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f6e191a4d428..d63dd2645aa5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2133 +MARKETING_VERSION = 0.0.2134 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1fb1a831a39b9594d7a45c632986fef7cfb4ea86 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 May 2024 06:14:37 +0000 Subject: [PATCH 2192/2586] Auto-release 0.0.2135 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d63dd2645aa5..7e3d03a79348 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2134 +MARKETING_VERSION = 0.0.2135 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 31f285da8f7e3760ea2abcce789927777a55b771 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 May 2024 12:17:50 +0000 Subject: [PATCH 2193/2586] Auto-release 0.0.2136 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7e3d03a79348..84400b9bef40 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2135 +MARKETING_VERSION = 0.0.2136 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cd70eedab5505fc7bda546116f89d952ce27888b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 27 May 2024 18:12:58 +0000 Subject: [PATCH 2194/2586] Auto-release 0.0.2137 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 84400b9bef40..d4b8740207ef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2136 +MARKETING_VERSION = 0.0.2137 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eca394febd24025e54035303ae206cf5234a806b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 May 2024 00:42:32 +0000 Subject: [PATCH 2195/2586] Auto-release 0.0.2138 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d4b8740207ef..b82a85f644b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2137 +MARKETING_VERSION = 0.0.2138 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bfb14312d98436dfc691f1e95fcc066aee67242f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 May 2024 06:13:55 +0000 Subject: [PATCH 2196/2586] Auto-release 0.0.2139 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b82a85f644b0..71900c8d1042 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2138 +MARKETING_VERSION = 0.0.2139 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8473ebb9bff3e215a3d2113c6748fedf308385d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 May 2024 12:17:59 +0000 Subject: [PATCH 2197/2586] Auto-release 0.0.2140 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 71900c8d1042..912096cb599f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2139 +MARKETING_VERSION = 0.0.2140 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 81249ab9cf72e7f33a009242186e9b56a26e7557 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 28 May 2024 18:11:59 +0000 Subject: [PATCH 2198/2586] Auto-release 0.0.2141 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 912096cb599f..bc1725462761 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2140 +MARKETING_VERSION = 0.0.2141 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 05f698d32b4663b8d0b9e3e10469130c68322f33 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 May 2024 00:45:56 +0000 Subject: [PATCH 2199/2586] Auto-release 0.0.2142 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bc1725462761..f67d21370fc7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2141 +MARKETING_VERSION = 0.0.2142 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5cc9691aaa6f0b046a6d96c7fd288763bd7ef769 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 May 2024 06:14:29 +0000 Subject: [PATCH 2200/2586] Auto-release 0.0.2143 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f67d21370fc7..5308734d889f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2142 +MARKETING_VERSION = 0.0.2143 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b2908f05e5ee1f92710dff8629977516a8591c64 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 May 2024 12:18:37 +0000 Subject: [PATCH 2201/2586] Auto-release 0.0.2144 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5308734d889f..b5f8de25399a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2143 +MARKETING_VERSION = 0.0.2144 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6d93f6df80e05e85675e797297eaf4b4d97ed899 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 29 May 2024 18:12:39 +0000 Subject: [PATCH 2202/2586] Auto-release 0.0.2145 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b5f8de25399a..158d5db7dbb9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2144 +MARKETING_VERSION = 0.0.2145 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b6264d6f76aa0b219c17c95797ef7fbf64649ade Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 May 2024 00:43:42 +0000 Subject: [PATCH 2203/2586] Auto-release 0.0.2146 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 158d5db7dbb9..83dcde38c2e9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2145 +MARKETING_VERSION = 0.0.2146 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 719411d5953a73f31b96ceca9922d108a1818175 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 May 2024 06:13:22 +0000 Subject: [PATCH 2204/2586] Auto-release 0.0.2147 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 83dcde38c2e9..7a8f7b329313 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2146 +MARKETING_VERSION = 0.0.2147 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 617bea59963217053dc764e965a710ef72333c59 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 May 2024 12:17:56 +0000 Subject: [PATCH 2205/2586] Auto-release 0.0.2148 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7a8f7b329313..e6d3fb041d61 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2147 +MARKETING_VERSION = 0.0.2148 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 78f77cc9b02568a9fa3e78f158c5fc7e18e03812 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 30 May 2024 18:14:37 +0000 Subject: [PATCH 2206/2586] Auto-release 0.0.2149 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e6d3fb041d61..2cc867cc1ed0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2148 +MARKETING_VERSION = 0.0.2149 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0140acce0f58122d7c93e14aae43ceb0465bb748 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 31 May 2024 00:45:13 +0000 Subject: [PATCH 2207/2586] Auto-release 0.0.2150 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2cc867cc1ed0..48cf87a51fe2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2149 +MARKETING_VERSION = 0.0.2150 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From efc51480120411246a66f22d70beb957d29bb71a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 31 May 2024 06:14:09 +0000 Subject: [PATCH 2208/2586] Auto-release 0.0.2151 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 48cf87a51fe2..47087aa1e85b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2150 +MARKETING_VERSION = 0.0.2151 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 96eb06439a4059a662c263f0c2857b50ece8e6c1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 31 May 2024 12:17:40 +0000 Subject: [PATCH 2209/2586] Auto-release 0.0.2152 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 47087aa1e85b..ea07e46762e3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2151 +MARKETING_VERSION = 0.0.2152 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 15c8bc723ead63fe7cad3e2b9020e5c1c06585b8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 31 May 2024 18:13:06 +0000 Subject: [PATCH 2210/2586] Auto-release 0.0.2153 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ea07e46762e3..c2b6b946a1d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2152 +MARKETING_VERSION = 0.0.2153 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 672a371c3b238c1c623f552c4672ef37b1ea5abb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Jun 2024 00:45:57 +0000 Subject: [PATCH 2211/2586] Auto-release 0.0.2154 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c2b6b946a1d0..579ac5240b2f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2153 +MARKETING_VERSION = 0.0.2154 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 929065f8ee6013f0cb6000277665b09ea23fe4e6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Jun 2024 06:13:19 +0000 Subject: [PATCH 2212/2586] Auto-release 0.0.2155 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 579ac5240b2f..eb4f4b089208 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2154 +MARKETING_VERSION = 0.0.2155 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8969605e2469ef503ecd5e1219340f009163d183 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Jun 2024 12:16:45 +0000 Subject: [PATCH 2213/2586] Auto-release 0.0.2156 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eb4f4b089208..8e8345df0cad 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2155 +MARKETING_VERSION = 0.0.2156 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b7eeaafd105ca236b336e060527f454a0a03bbf0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 1 Jun 2024 18:12:36 +0000 Subject: [PATCH 2214/2586] Auto-release 0.0.2157 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8e8345df0cad..e64404f6ee95 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2156 +MARKETING_VERSION = 0.0.2157 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b19990878d98dc0250747c3ae0ecd04c8e850125 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Jun 2024 00:46:05 +0000 Subject: [PATCH 2215/2586] Auto-release 0.0.2158 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e64404f6ee95..f8f674daf758 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2157 +MARKETING_VERSION = 0.0.2158 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 942226ea675c2be9053015668fffd919f15c9aa1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Jun 2024 06:13:51 +0000 Subject: [PATCH 2216/2586] Auto-release 0.0.2159 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f8f674daf758..3d93bcf66bbf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2158 +MARKETING_VERSION = 0.0.2159 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 94b7389292502a555650b8a64aca656d2b40210b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Jun 2024 12:16:22 +0000 Subject: [PATCH 2217/2586] Auto-release 0.0.2160 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3d93bcf66bbf..ab90cdb8f30f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2159 +MARKETING_VERSION = 0.0.2160 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2a71acf888e0011e97ca2c2f32b3b938d0fcdc18 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 2 Jun 2024 18:12:51 +0000 Subject: [PATCH 2218/2586] Auto-release 0.0.2161 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ab90cdb8f30f..0bcfabbff4f3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2160 +MARKETING_VERSION = 0.0.2161 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0a212429b7b204d3645d44e0ed21ed31403ed6be Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Jun 2024 00:43:45 +0000 Subject: [PATCH 2219/2586] Auto-release 0.0.2162 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0bcfabbff4f3..2d34dee991db 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2161 +MARKETING_VERSION = 0.0.2162 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e0256e9d3531ec40d5f6e9ff10f12919beacd4c4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Jun 2024 06:14:13 +0000 Subject: [PATCH 2220/2586] Auto-release 0.0.2163 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2d34dee991db..265717757619 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2162 +MARKETING_VERSION = 0.0.2163 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 51832ac4ae6c7734ae0c8ffccc8c3d5c02df86ea Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Jun 2024 12:18:47 +0000 Subject: [PATCH 2221/2586] Auto-release 0.0.2164 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 265717757619..bc6d2d93f095 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2163 +MARKETING_VERSION = 0.0.2164 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2c4a81bb824267a50d7b8e5fc01d49b7faeedfab Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 3 Jun 2024 18:13:42 +0000 Subject: [PATCH 2222/2586] Auto-release 0.0.2165 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bc6d2d93f095..b34345973417 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2164 +MARKETING_VERSION = 0.0.2165 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e4bccb4dd2d4873cf3330e1b39c2a5f2ad6cb212 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Jun 2024 00:43:24 +0000 Subject: [PATCH 2223/2586] Auto-release 0.0.2166 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b34345973417..edc0a2ca5779 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2165 +MARKETING_VERSION = 0.0.2166 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3915eba91b7a4b6a22e90b4c5ea31365ff2ded44 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Jun 2024 06:13:50 +0000 Subject: [PATCH 2224/2586] Auto-release 0.0.2167 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index edc0a2ca5779..1b1b686c6382 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2166 +MARKETING_VERSION = 0.0.2167 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eb57aaf999229471f91f2100303be2ff8b2e2522 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Jun 2024 12:17:34 +0000 Subject: [PATCH 2225/2586] Auto-release 0.0.2168 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1b1b686c6382..a3feba4d6a84 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2167 +MARKETING_VERSION = 0.0.2168 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c7d25b5ee9018c284ff0db17e182a84848cd8013 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 4 Jun 2024 18:13:26 +0000 Subject: [PATCH 2226/2586] Auto-release 0.0.2169 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a3feba4d6a84..d79b4b238774 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2168 +MARKETING_VERSION = 0.0.2169 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 84092c161ffc831a26b154284e29bdc6d5d17440 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Jun 2024 00:43:17 +0000 Subject: [PATCH 2227/2586] Auto-release 0.0.2170 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d79b4b238774..086724129ccd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2169 +MARKETING_VERSION = 0.0.2170 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c0bdd0199ebdcdd7d992b72f705cf70d68aa1429 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Jun 2024 06:14:11 +0000 Subject: [PATCH 2228/2586] Auto-release 0.0.2171 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 086724129ccd..53da88692880 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2170 +MARKETING_VERSION = 0.0.2171 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5a95709379694a1f1cdb465badc843a7ab67b607 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Jun 2024 12:18:24 +0000 Subject: [PATCH 2229/2586] Auto-release 0.0.2172 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 53da88692880..a428cf9dbeab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2171 +MARKETING_VERSION = 0.0.2172 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 53dc79057792d1805dd4224cc33c406a42f20dbd Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 5 Jun 2024 18:12:56 +0000 Subject: [PATCH 2230/2586] Auto-release 0.0.2173 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a428cf9dbeab..042d639cebc9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2172 +MARKETING_VERSION = 0.0.2173 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9a66c0d87908f998c42c4922f085fb5ece7ad334 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Jun 2024 00:42:54 +0000 Subject: [PATCH 2231/2586] Auto-release 0.0.2174 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 042d639cebc9..6a870b4ab7aa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2173 +MARKETING_VERSION = 0.0.2174 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6bec4c271540329188b5a66b6bd19a9337c6e872 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Jun 2024 06:14:17 +0000 Subject: [PATCH 2232/2586] Auto-release 0.0.2175 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6a870b4ab7aa..a65d473409bf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2174 +MARKETING_VERSION = 0.0.2175 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4fca47d70b9d3fafcd673cbd39144bae0c5caa30 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Jun 2024 12:18:10 +0000 Subject: [PATCH 2233/2586] Auto-release 0.0.2176 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a65d473409bf..c644f753aff4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2175 +MARKETING_VERSION = 0.0.2176 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2a746cb3555ce861e620e8a49ac0b743da55bab0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 6 Jun 2024 18:12:49 +0000 Subject: [PATCH 2234/2586] Auto-release 0.0.2177 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c644f753aff4..2386609dfab5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2176 +MARKETING_VERSION = 0.0.2177 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7e87dbb6207d8964691b5df6d85b6a79f70d82e0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jun 2024 00:44:14 +0000 Subject: [PATCH 2235/2586] Auto-release 0.0.2178 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2386609dfab5..9829a26c7754 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2177 +MARKETING_VERSION = 0.0.2178 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 63fcdd261858c5799f79193553a81eb88c36f98c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jun 2024 06:15:26 +0000 Subject: [PATCH 2236/2586] Auto-release 0.0.2179 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9829a26c7754..34212d812cf6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2178 +MARKETING_VERSION = 0.0.2179 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 828c9e43e66635807168266af79d7b9c04e4cd79 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jun 2024 12:19:38 +0000 Subject: [PATCH 2237/2586] Auto-release 0.0.2180 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34212d812cf6..bb26be06dfd7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2179 +MARKETING_VERSION = 0.0.2180 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d85c77837c92860ff67261a97f75725e8d325971 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 7 Jun 2024 18:14:17 +0000 Subject: [PATCH 2238/2586] Auto-release 0.0.2181 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bb26be06dfd7..75b22b5780be 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2180 +MARKETING_VERSION = 0.0.2181 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 83ab2e7de3bd84385d0f18d5182cc841c608001d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Jun 2024 00:43:37 +0000 Subject: [PATCH 2239/2586] Auto-release 0.0.2182 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 75b22b5780be..d053ba4430a0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2181 +MARKETING_VERSION = 0.0.2182 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 636cc53301fbf9be59006489ee5af0bf5fb40615 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Jun 2024 06:12:45 +0000 Subject: [PATCH 2240/2586] Auto-release 0.0.2183 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d053ba4430a0..bcae2f63f9d4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2182 +MARKETING_VERSION = 0.0.2183 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 40898941935f0a16f01a66f04b1dcf603c02a7e3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Jun 2024 12:16:12 +0000 Subject: [PATCH 2241/2586] Auto-release 0.0.2184 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bcae2f63f9d4..89ef6b083e02 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2183 +MARKETING_VERSION = 0.0.2184 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b944b75054630653f0c27152884f4f95ea222e2d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 8 Jun 2024 18:11:56 +0000 Subject: [PATCH 2242/2586] Auto-release 0.0.2185 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 89ef6b083e02..7a6520a08c9e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2184 +MARKETING_VERSION = 0.0.2185 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 00a08a31adc5162bd4149aaf4f706b13abb57af0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Jun 2024 00:48:36 +0000 Subject: [PATCH 2243/2586] Auto-release 0.0.2186 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7a6520a08c9e..40b721cbc409 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2185 +MARKETING_VERSION = 0.0.2186 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fce481d955e6c99fbc234adcdbba65f2aa0b898b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Jun 2024 06:13:09 +0000 Subject: [PATCH 2244/2586] Auto-release 0.0.2187 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 40b721cbc409..db28c0a4c6f5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2186 +MARKETING_VERSION = 0.0.2187 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c305ce8f64433346f5356c892cee1688f105cacb Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Jun 2024 12:17:09 +0000 Subject: [PATCH 2245/2586] Auto-release 0.0.2188 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index db28c0a4c6f5..0b836240ee58 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2187 +MARKETING_VERSION = 0.0.2188 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bdfeef2c24395b017c13ac9d8f9db91ea7f4115f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 9 Jun 2024 18:12:25 +0000 Subject: [PATCH 2246/2586] Auto-release 0.0.2189 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0b836240ee58..a09ff374c784 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2188 +MARKETING_VERSION = 0.0.2189 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fb9528c80afb19f2bfaf1442474ffc98a93218e2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Jun 2024 00:44:57 +0000 Subject: [PATCH 2247/2586] Auto-release 0.0.2190 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a09ff374c784..9021cfcaf9ce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2189 +MARKETING_VERSION = 0.0.2190 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7d7ecc4fe3122a55e2a56e61d6673192751e9f30 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Jun 2024 06:15:26 +0000 Subject: [PATCH 2248/2586] Auto-release 0.0.2191 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9021cfcaf9ce..00daee8e8197 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2190 +MARKETING_VERSION = 0.0.2191 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6e7cac6c8ad78a6a69c8b4d3f17f69c16aafee19 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Jun 2024 12:18:43 +0000 Subject: [PATCH 2249/2586] Auto-release 0.0.2192 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 00daee8e8197..44b65c9cdc0e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2191 +MARKETING_VERSION = 0.0.2192 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9a2f95f9252c5c1fdcefae10252f888a5ec3c841 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 10 Jun 2024 18:13:34 +0000 Subject: [PATCH 2250/2586] Auto-release 0.0.2193 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 44b65c9cdc0e..fb575e945677 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2192 +MARKETING_VERSION = 0.0.2193 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9fb809e4350985bcbb7d7701e9ebe7004c7e2e2f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Jun 2024 00:43:46 +0000 Subject: [PATCH 2251/2586] Auto-release 0.0.2194 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fb575e945677..25f58f8930d4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2193 +MARKETING_VERSION = 0.0.2194 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b878605c8518133f4a5a6b34f85a5191b5c6a706 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Jun 2024 06:14:00 +0000 Subject: [PATCH 2252/2586] Auto-release 0.0.2195 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 25f58f8930d4..11a18c9a77c7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2194 +MARKETING_VERSION = 0.0.2195 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 07339ee5b6f8b9250561cfb9f7913d50903b1d0f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Jun 2024 12:18:56 +0000 Subject: [PATCH 2253/2586] Auto-release 0.0.2196 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 11a18c9a77c7..3ba444b7a2c4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2195 +MARKETING_VERSION = 0.0.2196 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1af012c5f6c8f03333424fadcdc9f461bd65451b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 11 Jun 2024 18:14:12 +0000 Subject: [PATCH 2254/2586] Auto-release 0.0.2197 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3ba444b7a2c4..d32bd80ccdc3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2196 +MARKETING_VERSION = 0.0.2197 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 546b24dea516bed2a942424bb00d2dfd5abce369 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Jun 2024 00:44:13 +0000 Subject: [PATCH 2255/2586] Auto-release 0.0.2198 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d32bd80ccdc3..c48cbebb2b66 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2197 +MARKETING_VERSION = 0.0.2198 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eaf32f7c0c4a17581df6e91fb850e3bd979e4380 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Jun 2024 06:13:48 +0000 Subject: [PATCH 2256/2586] Auto-release 0.0.2199 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c48cbebb2b66..15ee9a2ff728 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2198 +MARKETING_VERSION = 0.0.2199 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5a1ff2696e8214b73723be9bc456f261b3b17336 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Jun 2024 12:19:02 +0000 Subject: [PATCH 2257/2586] Auto-release 0.0.2200 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 15ee9a2ff728..2cb3b1b02711 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2199 +MARKETING_VERSION = 0.0.2200 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8fe35967b2f6bc1e307d37a383ba42ad3401fdee Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 12 Jun 2024 18:13:48 +0000 Subject: [PATCH 2258/2586] Auto-release 0.0.2201 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2cb3b1b02711..abff05d9bae6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2200 +MARKETING_VERSION = 0.0.2201 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7146d9fb5e8f9395a2fc3e2d463ab28314d9411d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Jun 2024 00:43:42 +0000 Subject: [PATCH 2259/2586] Auto-release 0.0.2202 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index abff05d9bae6..3427e73b03b5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2201 +MARKETING_VERSION = 0.0.2202 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 70508443b7df9b447da07a75b8a2aabf8a7d58d4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Jun 2024 06:14:15 +0000 Subject: [PATCH 2260/2586] Auto-release 0.0.2203 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3427e73b03b5..07793c267f16 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2202 +MARKETING_VERSION = 0.0.2203 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3e26b7450521d76fdd276658535cdbbfb56d7cb8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Jun 2024 12:18:49 +0000 Subject: [PATCH 2261/2586] Auto-release 0.0.2204 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 07793c267f16..c02d512de661 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2203 +MARKETING_VERSION = 0.0.2204 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 49806d02a3eb9c70f375ecfb91550a4487b91cd5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 13 Jun 2024 18:13:01 +0000 Subject: [PATCH 2262/2586] Auto-release 0.0.2205 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c02d512de661..892e526f76b1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2204 +MARKETING_VERSION = 0.0.2205 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 05d47ba775bee37eb0dd0ccc1a6801cfffbbfed5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Jun 2024 00:43:56 +0000 Subject: [PATCH 2263/2586] Auto-release 0.0.2206 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 892e526f76b1..f53a8d11cf04 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2205 +MARKETING_VERSION = 0.0.2206 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 58ccd45d9d7172fd3aa38bcd36f5a839286b639b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Jun 2024 06:14:40 +0000 Subject: [PATCH 2264/2586] Auto-release 0.0.2207 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f53a8d11cf04..e4ae8e6ff245 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2206 +MARKETING_VERSION = 0.0.2207 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fc0bbe3f1a24b1098c362655864fa4cc3f3232e0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Jun 2024 12:18:15 +0000 Subject: [PATCH 2265/2586] Auto-release 0.0.2208 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e4ae8e6ff245..77a12e951713 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2207 +MARKETING_VERSION = 0.0.2208 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 303ea59017431967d95faef31102471cdf017d5a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 14 Jun 2024 18:13:50 +0000 Subject: [PATCH 2266/2586] Auto-release 0.0.2209 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 77a12e951713..1b8dc53162e5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2208 +MARKETING_VERSION = 0.0.2209 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b402e446503f64e655eb3968ea71289d8943c0ad Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Jun 2024 00:43:01 +0000 Subject: [PATCH 2267/2586] Auto-release 0.0.2210 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1b8dc53162e5..bfeb4c452ef6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2209 +MARKETING_VERSION = 0.0.2210 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cdfca6e1c82709067b514a58f1c1a87a833b5da2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Jun 2024 06:12:55 +0000 Subject: [PATCH 2268/2586] Auto-release 0.0.2211 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bfeb4c452ef6..baa39546702b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2210 +MARKETING_VERSION = 0.0.2211 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b5ac02671b1ccc32e54eb5f41917cf8021b8782e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Jun 2024 12:17:02 +0000 Subject: [PATCH 2269/2586] Auto-release 0.0.2212 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index baa39546702b..3524dd849508 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2211 +MARKETING_VERSION = 0.0.2212 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f1acc2eeaa5e1198341d14e73bd7b43120415c08 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 15 Jun 2024 18:13:21 +0000 Subject: [PATCH 2270/2586] Auto-release 0.0.2213 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3524dd849508..786744ad416e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2212 +MARKETING_VERSION = 0.0.2213 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5ac9e2945e6d90c44e99a5e1f52e5d6820962dff Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Jun 2024 00:47:56 +0000 Subject: [PATCH 2271/2586] Auto-release 0.0.2214 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 786744ad416e..d8ddcddebd1e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2213 +MARKETING_VERSION = 0.0.2214 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5d14f451c83fae3004657adbe0aca85cd81614a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Jun 2024 06:13:42 +0000 Subject: [PATCH 2272/2586] Auto-release 0.0.2215 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d8ddcddebd1e..1c2b0061bd2a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2214 +MARKETING_VERSION = 0.0.2215 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From edd0e479c983be29182c009d7760141079563558 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Jun 2024 12:16:53 +0000 Subject: [PATCH 2273/2586] Auto-release 0.0.2216 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1c2b0061bd2a..5e8d8776267a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2215 +MARKETING_VERSION = 0.0.2216 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 82fb656fc67e8f3684e7d6f31d526557f9480e50 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 16 Jun 2024 18:12:03 +0000 Subject: [PATCH 2274/2586] Auto-release 0.0.2217 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e8d8776267a..95abbe62376d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2216 +MARKETING_VERSION = 0.0.2217 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f6d1236b661497a4cea230902f630b51de11a47b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Jun 2024 00:46:44 +0000 Subject: [PATCH 2275/2586] Auto-release 0.0.2218 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 95abbe62376d..909bcbf97b7f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2217 +MARKETING_VERSION = 0.0.2218 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 62493ca3a38e19520e133522f82b51c655ff81fe Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Jun 2024 06:14:54 +0000 Subject: [PATCH 2276/2586] Auto-release 0.0.2219 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 909bcbf97b7f..d8a3e9dffc31 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2218 +MARKETING_VERSION = 0.0.2219 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 416589d8ede62b8de15f1d579d3af485a9d2a0b0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Jun 2024 12:18:54 +0000 Subject: [PATCH 2277/2586] Auto-release 0.0.2220 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d8a3e9dffc31..75b4b3c9c353 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2219 +MARKETING_VERSION = 0.0.2220 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ec81245bde638fec786ecb3d3d51f137d50f43e0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 17 Jun 2024 18:13:31 +0000 Subject: [PATCH 2278/2586] Auto-release 0.0.2221 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 75b4b3c9c353..e2421e68b2af 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2220 +MARKETING_VERSION = 0.0.2221 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f0b1732ec9e15c351a0931fea152c5f648090df7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Jun 2024 00:44:36 +0000 Subject: [PATCH 2279/2586] Auto-release 0.0.2222 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e2421e68b2af..583de51c0da5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2221 +MARKETING_VERSION = 0.0.2222 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 44b03c77dc4532bec37c675363e938c566ca6047 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Jun 2024 06:14:08 +0000 Subject: [PATCH 2280/2586] Auto-release 0.0.2223 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 583de51c0da5..2bc7e0073eb5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2222 +MARKETING_VERSION = 0.0.2223 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cc88ca0655eac160e15de059c56ad013dfb9774b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Jun 2024 12:18:26 +0000 Subject: [PATCH 2281/2586] Auto-release 0.0.2224 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2bc7e0073eb5..6708b9ba0af8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2223 +MARKETING_VERSION = 0.0.2224 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0e3b2f9eff3b6998b845b4cd89c449e460671cb4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 18 Jun 2024 18:14:25 +0000 Subject: [PATCH 2282/2586] Auto-release 0.0.2225 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6708b9ba0af8..4f391e4b519d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2224 +MARKETING_VERSION = 0.0.2225 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3f8e15c3a369e0bc4d3a5c8c7d397ba9bf7ddc62 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Jun 2024 00:44:26 +0000 Subject: [PATCH 2283/2586] Auto-release 0.0.2226 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4f391e4b519d..e430b749bdb5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2225 +MARKETING_VERSION = 0.0.2226 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 53d72e7323011658278b81bf3e64fefc2c12dc60 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Jun 2024 06:14:20 +0000 Subject: [PATCH 2284/2586] Auto-release 0.0.2227 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e430b749bdb5..2af39d733399 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2226 +MARKETING_VERSION = 0.0.2227 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2d6c151d2bdf6cd81dafb4422f4ed7d7e266a58b Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Jun 2024 12:18:24 +0000 Subject: [PATCH 2285/2586] Auto-release 0.0.2228 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2af39d733399..e663147e016f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2227 +MARKETING_VERSION = 0.0.2228 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b37a2e49a80563cfbe5cbb68b83580c44148aeda Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 19 Jun 2024 18:12:20 +0000 Subject: [PATCH 2286/2586] Auto-release 0.0.2229 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e663147e016f..b8973fdd41b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2228 +MARKETING_VERSION = 0.0.2229 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f941ee11aa855f8cf66fe63b5048036e27722375 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Jun 2024 00:43:03 +0000 Subject: [PATCH 2287/2586] Auto-release 0.0.2230 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b8973fdd41b9..d16d33710d65 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2229 +MARKETING_VERSION = 0.0.2230 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 48e76b02aaf2eee908927faf725bebdd64976125 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Jun 2024 06:14:38 +0000 Subject: [PATCH 2288/2586] Auto-release 0.0.2231 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d16d33710d65..495b70bb3f7d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2230 +MARKETING_VERSION = 0.0.2231 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f6ef489d592e9fcb6cf7ef13c1ac0afd5d846610 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Jun 2024 12:18:21 +0000 Subject: [PATCH 2289/2586] Auto-release 0.0.2232 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 495b70bb3f7d..fc39908aa867 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2231 +MARKETING_VERSION = 0.0.2232 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 59071f0879a62af2d615edd3102f5d82460eb6c4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 20 Jun 2024 18:14:27 +0000 Subject: [PATCH 2290/2586] Auto-release 0.0.2233 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fc39908aa867..51fc9aebcbbf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2232 +MARKETING_VERSION = 0.0.2233 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9134dd0e90c8aa069ea928852afa1685b8d93e6b Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Jun 2024 00:43:14 +0000 Subject: [PATCH 2291/2586] Auto-release 0.0.2234 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 51fc9aebcbbf..479839242786 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2233 +MARKETING_VERSION = 0.0.2234 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 84b51f89c5fe9aa99d72d65e0eebc2c7d1cb6a75 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Jun 2024 06:14:29 +0000 Subject: [PATCH 2292/2586] Auto-release 0.0.2235 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 479839242786..ff61a0395f47 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2234 +MARKETING_VERSION = 0.0.2235 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From da68e937c224f9a397fce420e79f86ebdcccc068 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Jun 2024 12:17:25 +0000 Subject: [PATCH 2293/2586] Auto-release 0.0.2236 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ff61a0395f47..e495a1af213d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2235 +MARKETING_VERSION = 0.0.2236 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b4605acfab66fc183ce2cf15996e3731bf816bdb Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 21 Jun 2024 18:14:17 +0000 Subject: [PATCH 2294/2586] Auto-release 0.0.2237 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e495a1af213d..dfdf2209c8d8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2236 +MARKETING_VERSION = 0.0.2237 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b81e2605de94a66bc1f1369b1cb1f15480fed25e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Jun 2024 00:43:36 +0000 Subject: [PATCH 2295/2586] Auto-release 0.0.2238 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dfdf2209c8d8..cd905103bac5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2237 +MARKETING_VERSION = 0.0.2238 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7426466cfc5977568fdb4e263a2b227ec2e372c3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Jun 2024 06:14:43 +0000 Subject: [PATCH 2296/2586] Auto-release 0.0.2239 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd905103bac5..d3195966760c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2238 +MARKETING_VERSION = 0.0.2239 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2358cefcd1c62562cf347e5e0a3bf89f2d10263e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Jun 2024 12:16:29 +0000 Subject: [PATCH 2297/2586] Auto-release 0.0.2240 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d3195966760c..6c1d95d3c97f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2239 +MARKETING_VERSION = 0.0.2240 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a64756306243a68aece150a8bf423ad13d0bcbf6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 22 Jun 2024 18:12:40 +0000 Subject: [PATCH 2298/2586] Auto-release 0.0.2241 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6c1d95d3c97f..094044d632f5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2240 +MARKETING_VERSION = 0.0.2241 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 04eacee3bf29e2f8a14e0b891a6b0db53f78b65a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Jun 2024 00:47:48 +0000 Subject: [PATCH 2299/2586] Auto-release 0.0.2242 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 094044d632f5..50d4a8d67a96 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2241 +MARKETING_VERSION = 0.0.2242 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 95bf905750836da392cfed34d9f93c6725e9de3c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Jun 2024 06:13:57 +0000 Subject: [PATCH 2300/2586] Auto-release 0.0.2243 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 50d4a8d67a96..0ecfdf56f956 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2242 +MARKETING_VERSION = 0.0.2243 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a907f33aa21e4a147a38ae1a5f4503afcf132d25 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Jun 2024 12:17:12 +0000 Subject: [PATCH 2301/2586] Auto-release 0.0.2244 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0ecfdf56f956..13d739619942 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2243 +MARKETING_VERSION = 0.0.2244 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f6a9a8a1f12a82fb1b01a68ca38f2f8e2a482ca9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 23 Jun 2024 18:12:16 +0000 Subject: [PATCH 2302/2586] Auto-release 0.0.2245 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 13d739619942..b072d3daff00 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2244 +MARKETING_VERSION = 0.0.2245 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b8b8b1b16b38310062cae6354a2e77ccca715875 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Jun 2024 00:45:15 +0000 Subject: [PATCH 2303/2586] Auto-release 0.0.2246 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b072d3daff00..a52ba4236512 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2245 +MARKETING_VERSION = 0.0.2246 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 68ac1d7e6f13c39c6f6c294fa932123b3083b7c3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Jun 2024 06:14:34 +0000 Subject: [PATCH 2304/2586] Auto-release 0.0.2247 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a52ba4236512..e86cf203bc40 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2246 +MARKETING_VERSION = 0.0.2247 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8401aca3dc80d33462060c6917092e3bbaa70ef4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Jun 2024 12:18:34 +0000 Subject: [PATCH 2305/2586] Auto-release 0.0.2248 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e86cf203bc40..151683be8f94 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2247 +MARKETING_VERSION = 0.0.2248 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aac9c0e5f2ee5b47cb5584e1a097656c09cf224a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 24 Jun 2024 18:13:37 +0000 Subject: [PATCH 2306/2586] Auto-release 0.0.2249 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 151683be8f94..05d9ca91c343 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2248 +MARKETING_VERSION = 0.0.2249 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e4a6163552b90edd99fe501936507bc02fac3f53 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Jun 2024 00:43:49 +0000 Subject: [PATCH 2307/2586] Auto-release 0.0.2250 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 05d9ca91c343..1ad3de6fb9f3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2249 +MARKETING_VERSION = 0.0.2250 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d836477a8226750ce725362723d26672e5caf042 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Jun 2024 06:14:27 +0000 Subject: [PATCH 2308/2586] Auto-release 0.0.2251 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1ad3de6fb9f3..b7591365f5d9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2250 +MARKETING_VERSION = 0.0.2251 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9ec8b6f796e32b319358a2aafec27a0da498deb4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Jun 2024 12:18:15 +0000 Subject: [PATCH 2309/2586] Auto-release 0.0.2252 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b7591365f5d9..6c871f772bf0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2251 +MARKETING_VERSION = 0.0.2252 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f0cb09ee45d6b19ffb81f0910399231f4a7306ea Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 25 Jun 2024 18:14:16 +0000 Subject: [PATCH 2310/2586] Auto-release 0.0.2253 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6c871f772bf0..fc7ce4cce700 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2252 +MARKETING_VERSION = 0.0.2253 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2c222472d91cb9783c21854642787006663e920e Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Jun 2024 00:43:29 +0000 Subject: [PATCH 2311/2586] Auto-release 0.0.2254 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fc7ce4cce700..4c7a9e4fd989 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2253 +MARKETING_VERSION = 0.0.2254 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a72077588efb0967f55d746ffd71efd6138d61c7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Jun 2024 06:14:07 +0000 Subject: [PATCH 2312/2586] Auto-release 0.0.2255 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c7a9e4fd989..788b68ada343 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2254 +MARKETING_VERSION = 0.0.2255 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f6d7e78ef06a11b56ce31b923f72a1b475bcfaa8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Jun 2024 12:19:29 +0000 Subject: [PATCH 2313/2586] Auto-release 0.0.2256 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 788b68ada343..9b7095662a81 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2255 +MARKETING_VERSION = 0.0.2256 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ee05a5e68dbcba3c5dee239d337bfb55145f76a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 26 Jun 2024 18:13:20 +0000 Subject: [PATCH 2314/2586] Auto-release 0.0.2257 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9b7095662a81..59f62bfd0d50 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2256 +MARKETING_VERSION = 0.0.2257 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2e346908162c60b20aad208433eb77f652502224 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Jun 2024 00:44:10 +0000 Subject: [PATCH 2315/2586] Auto-release 0.0.2258 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 59f62bfd0d50..dac7736aae5d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2257 +MARKETING_VERSION = 0.0.2258 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5de25c08a286636df9bcb1330c306979789152c3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Jun 2024 06:14:18 +0000 Subject: [PATCH 2316/2586] Auto-release 0.0.2259 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dac7736aae5d..3a726d4a6d16 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2258 +MARKETING_VERSION = 0.0.2259 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3232dbd2bcf0606282904e818f08f92f4c56a26d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Jun 2024 12:18:34 +0000 Subject: [PATCH 2317/2586] Auto-release 0.0.2260 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3a726d4a6d16..b12b519387a2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2259 +MARKETING_VERSION = 0.0.2260 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ac2cf0ec110bfa1a5aea6c66987be2bb43476204 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 27 Jun 2024 18:11:47 +0000 Subject: [PATCH 2318/2586] Auto-release 0.0.2261 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b12b519387a2..fbf58da2e5f6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2260 +MARKETING_VERSION = 0.0.2261 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 34d2c784fcc3aa31b99dfc876d95cfc42f36a151 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Jun 2024 00:44:56 +0000 Subject: [PATCH 2319/2586] Auto-release 0.0.2262 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fbf58da2e5f6..758c71b1a6ad 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2261 +MARKETING_VERSION = 0.0.2262 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3cc62263465a87157512567201cd5ee7256d7e63 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Jun 2024 06:14:17 +0000 Subject: [PATCH 2320/2586] Auto-release 0.0.2263 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 758c71b1a6ad..41db59f9a3f2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2262 +MARKETING_VERSION = 0.0.2263 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dc51c15275b6eeaf311c51744e3e65859898ae32 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Jun 2024 12:19:19 +0000 Subject: [PATCH 2321/2586] Auto-release 0.0.2264 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 41db59f9a3f2..ab4f5c56ef29 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2263 +MARKETING_VERSION = 0.0.2264 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a066683606b928b0da31637dac9c3219721d643e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 28 Jun 2024 18:13:06 +0000 Subject: [PATCH 2322/2586] Auto-release 0.0.2265 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ab4f5c56ef29..11fb0f65dd88 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2264 +MARKETING_VERSION = 0.0.2265 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 70a103ae627fefefb7e05361e8536ae926f270e6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Jun 2024 00:43:11 +0000 Subject: [PATCH 2323/2586] Auto-release 0.0.2266 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 11fb0f65dd88..9f8f7e4f37e4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2265 +MARKETING_VERSION = 0.0.2266 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b3751a24cb0f5e956b0b1caa06273688cd98331e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Jun 2024 06:12:51 +0000 Subject: [PATCH 2324/2586] Auto-release 0.0.2267 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9f8f7e4f37e4..f8cbabfba505 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2266 +MARKETING_VERSION = 0.0.2267 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 35eb0d0ed7708c92016862b4902f13d354ef950c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Jun 2024 12:18:11 +0000 Subject: [PATCH 2325/2586] Auto-release 0.0.2268 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f8cbabfba505..a2f70add7393 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2267 +MARKETING_VERSION = 0.0.2268 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cf934302d4e508e2484308b073e202610d429245 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 29 Jun 2024 18:12:00 +0000 Subject: [PATCH 2326/2586] Auto-release 0.0.2269 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a2f70add7393..d5d3b6524e56 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2268 +MARKETING_VERSION = 0.0.2269 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b809738cd5e8ee31e0b83114065bbc42d649c99e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Jun 2024 00:49:17 +0000 Subject: [PATCH 2327/2586] Auto-release 0.0.2270 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d5d3b6524e56..544bf461653e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2269 +MARKETING_VERSION = 0.0.2270 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1800c456a495cf97361e7af68803c496a47df52f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Jun 2024 06:13:19 +0000 Subject: [PATCH 2328/2586] Auto-release 0.0.2271 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 544bf461653e..32974e779dae 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2270 +MARKETING_VERSION = 0.0.2271 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a59a93676cece389be2160fe334aa8ee10ad227d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Jun 2024 12:17:38 +0000 Subject: [PATCH 2329/2586] Auto-release 0.0.2272 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 32974e779dae..dab2c7fcec78 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2271 +MARKETING_VERSION = 0.0.2272 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 94797c6b29b7ae42f8cfc5959d3d49338c1634af Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 30 Jun 2024 18:13:17 +0000 Subject: [PATCH 2330/2586] Auto-release 0.0.2273 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dab2c7fcec78..078c686f264c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2272 +MARKETING_VERSION = 0.0.2273 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f8905760877943c0707eab8c12ac3a835be2b027 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Jul 2024 00:51:31 +0000 Subject: [PATCH 2331/2586] Auto-release 0.0.2274 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 078c686f264c..635aac3104bb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2273 +MARKETING_VERSION = 0.0.2274 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 50379921fa12fa012f0664fda7421e2cf975a1dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Jul 2024 06:15:52 +0000 Subject: [PATCH 2332/2586] Auto-release 0.0.2275 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 635aac3104bb..e2ff69646766 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2274 +MARKETING_VERSION = 0.0.2275 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cbaf605e1817e16dcfccb7d32e258f6b35fc55b0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Jul 2024 12:19:49 +0000 Subject: [PATCH 2333/2586] Auto-release 0.0.2276 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e2ff69646766..3586dfc67f42 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2275 +MARKETING_VERSION = 0.0.2276 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From be39e29bb7a6bc04479fe852169a461bcffceb4a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 1 Jul 2024 18:13:41 +0000 Subject: [PATCH 2334/2586] Auto-release 0.0.2277 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3586dfc67f42..a12bebf99eef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2276 +MARKETING_VERSION = 0.0.2277 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3469cf05c75cb61c5ed25e75cb8f494fd14a23d7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Jul 2024 00:44:25 +0000 Subject: [PATCH 2335/2586] Auto-release 0.0.2278 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a12bebf99eef..e2419d7b1374 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2277 +MARKETING_VERSION = 0.0.2278 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 60d20b27bdec469d27d3f153ace9665de606179f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Jul 2024 06:16:06 +0000 Subject: [PATCH 2336/2586] Auto-release 0.0.2279 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e2419d7b1374..8ff3a638a950 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2278 +MARKETING_VERSION = 0.0.2279 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4253151f1c99127bc5a42a0b448e315d0570fb04 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Jul 2024 12:19:34 +0000 Subject: [PATCH 2337/2586] Auto-release 0.0.2280 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8ff3a638a950..f62ef6beb92c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2279 +MARKETING_VERSION = 0.0.2280 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d52ea5904f54de34c4045fe59be420f7d548d674 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 2 Jul 2024 18:13:24 +0000 Subject: [PATCH 2338/2586] Auto-release 0.0.2281 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f62ef6beb92c..009930d48da3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2280 +MARKETING_VERSION = 0.0.2281 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4a3f30d5a57115474169b934f87738f8c13626da Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Jul 2024 00:44:41 +0000 Subject: [PATCH 2339/2586] Auto-release 0.0.2282 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 009930d48da3..6149045919ef 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2281 +MARKETING_VERSION = 0.0.2282 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 12adeca69d38ee17a5e3057ffe27bbca67207946 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Jul 2024 06:15:35 +0000 Subject: [PATCH 2340/2586] Auto-release 0.0.2283 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6149045919ef..e621aa34775e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2282 +MARKETING_VERSION = 0.0.2283 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ea36a4ea5bd2f7c96610e50896751f9668358975 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Jul 2024 12:19:11 +0000 Subject: [PATCH 2341/2586] Auto-release 0.0.2284 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e621aa34775e..e0fd0d6b94e1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2283 +MARKETING_VERSION = 0.0.2284 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f10924ba2bd3252231ba2decf8bb9ed44478fd1f Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 3 Jul 2024 18:13:10 +0000 Subject: [PATCH 2342/2586] Auto-release 0.0.2285 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e0fd0d6b94e1..9464d1dd622c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2284 +MARKETING_VERSION = 0.0.2285 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 75ce5359172331672ba65a79b422e181b2c9c00a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Jul 2024 00:44:27 +0000 Subject: [PATCH 2343/2586] Auto-release 0.0.2286 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9464d1dd622c..1930260ba52e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2285 +MARKETING_VERSION = 0.0.2286 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 39d956e10b2f50f56a4b7673b396e5a6b3cc111b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Jul 2024 06:14:52 +0000 Subject: [PATCH 2344/2586] Auto-release 0.0.2287 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1930260ba52e..148d42de7d9b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2286 +MARKETING_VERSION = 0.0.2287 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 09cd59482951f612cab435daa21e20b417b48319 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Jul 2024 12:18:58 +0000 Subject: [PATCH 2345/2586] Auto-release 0.0.2288 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 148d42de7d9b..38582a318ec9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2287 +MARKETING_VERSION = 0.0.2288 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 96909c00b4c0ae5cf81321704366e325748bd3a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 4 Jul 2024 18:13:19 +0000 Subject: [PATCH 2346/2586] Auto-release 0.0.2289 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 38582a318ec9..6e5339dc301f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2288 +MARKETING_VERSION = 0.0.2289 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c512a227b36a7dce7093c260d60859e66c4d7fab Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Jul 2024 00:44:16 +0000 Subject: [PATCH 2347/2586] Auto-release 0.0.2290 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6e5339dc301f..8a33883b38d0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2289 +MARKETING_VERSION = 0.0.2290 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 339a7e46cd040ae8ffc6d95590b77423c60d2a40 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Jul 2024 06:15:19 +0000 Subject: [PATCH 2348/2586] Auto-release 0.0.2291 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8a33883b38d0..92a3e9c51d4c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2290 +MARKETING_VERSION = 0.0.2291 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 44466d9e2c3bb58cb4922062b8925b208c94fb96 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Jul 2024 12:17:55 +0000 Subject: [PATCH 2349/2586] Auto-release 0.0.2292 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 92a3e9c51d4c..064e40d76a52 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2291 +MARKETING_VERSION = 0.0.2292 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2ac3147bddc8b52970fe76dab6a2da4c2b368a95 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 5 Jul 2024 18:14:27 +0000 Subject: [PATCH 2350/2586] Auto-release 0.0.2293 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 064e40d76a52..4f7accdc8c12 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2292 +MARKETING_VERSION = 0.0.2293 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c7da0a9c0f52554789e2c90a14945e98264e4974 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Jul 2024 00:43:21 +0000 Subject: [PATCH 2351/2586] Auto-release 0.0.2294 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4f7accdc8c12..efb33448e8a1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2293 +MARKETING_VERSION = 0.0.2294 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From de7dfd7b03b06d2c9d453ff878e624a5a492d9cf Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Jul 2024 06:13:04 +0000 Subject: [PATCH 2352/2586] Auto-release 0.0.2295 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index efb33448e8a1..a089c778701f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2294 +MARKETING_VERSION = 0.0.2295 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 96ada9c6aed3c59e092c36ad045edcbc92a2ee24 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Jul 2024 12:16:30 +0000 Subject: [PATCH 2353/2586] Auto-release 0.0.2296 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a089c778701f..f3d4f60190dc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2295 +MARKETING_VERSION = 0.0.2296 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7ecec29f899403a08d5c3df887b06d6a73697d12 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 6 Jul 2024 18:12:45 +0000 Subject: [PATCH 2354/2586] Auto-release 0.0.2297 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f3d4f60190dc..e314533b9596 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2296 +MARKETING_VERSION = 0.0.2297 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0613de35011b5a0bec9e7df60f12f01947c03910 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Jul 2024 00:49:45 +0000 Subject: [PATCH 2355/2586] Auto-release 0.0.2298 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e314533b9596..a73f82945bb1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2297 +MARKETING_VERSION = 0.0.2298 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e521540326fcd0deb84eb3a39eca8e255f6ab6f3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Jul 2024 06:13:46 +0000 Subject: [PATCH 2356/2586] Auto-release 0.0.2299 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a73f82945bb1..165166c0694b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2298 +MARKETING_VERSION = 0.0.2299 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bdfe4573945d0da36fbda7c7eaaa4d2072c75f05 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Jul 2024 12:16:43 +0000 Subject: [PATCH 2357/2586] Auto-release 0.0.2300 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 165166c0694b..5ef2dfc994ab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2299 +MARKETING_VERSION = 0.0.2300 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6c3ea1518a00bd6333ac6da4b4e2d854b0a236b6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 7 Jul 2024 18:12:36 +0000 Subject: [PATCH 2358/2586] Auto-release 0.0.2301 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5ef2dfc994ab..90186eba9714 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2300 +MARKETING_VERSION = 0.0.2301 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d7839a9e877bee17e7923175b77663f468cfe5e1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Jul 2024 00:46:03 +0000 Subject: [PATCH 2359/2586] Auto-release 0.0.2302 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 90186eba9714..becc47c09333 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2301 +MARKETING_VERSION = 0.0.2302 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f6000ba578ddf8c508f7d6118494d612ab76f9c2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Jul 2024 06:15:18 +0000 Subject: [PATCH 2360/2586] Auto-release 0.0.2303 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index becc47c09333..29a3219efcb7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2302 +MARKETING_VERSION = 0.0.2303 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 90046f69acb8132d68a4c4e8022805b20419b11a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Jul 2024 12:19:18 +0000 Subject: [PATCH 2361/2586] Auto-release 0.0.2304 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 29a3219efcb7..ca73e3932209 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2303 +MARKETING_VERSION = 0.0.2304 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2d490f9cd3dbdde09cf465b645205aead7c8e755 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 8 Jul 2024 18:13:37 +0000 Subject: [PATCH 2362/2586] Auto-release 0.0.2305 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ca73e3932209..ca989effd4fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2304 +MARKETING_VERSION = 0.0.2305 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 81f7d51de7f728b331e76b9f2c46f614f784483c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Jul 2024 00:44:46 +0000 Subject: [PATCH 2363/2586] Auto-release 0.0.2306 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ca989effd4fc..05f15bf15739 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2305 +MARKETING_VERSION = 0.0.2306 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4186124af6d15f3e5748a9bde9c9b150ffc0ef8e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Jul 2024 06:14:33 +0000 Subject: [PATCH 2364/2586] Auto-release 0.0.2307 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 05f15bf15739..b58ec2675aa3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2306 +MARKETING_VERSION = 0.0.2307 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From da0d74e24c56d52998daa7b440775d4087f5e7f3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Jul 2024 12:19:47 +0000 Subject: [PATCH 2365/2586] Auto-release 0.0.2308 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b58ec2675aa3..39ec9e181911 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2307 +MARKETING_VERSION = 0.0.2308 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1be2ba2e5304f55fbaf774f44d3b11f6de10e126 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 9 Jul 2024 18:13:54 +0000 Subject: [PATCH 2366/2586] Auto-release 0.0.2309 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 39ec9e181911..95010128b9fe 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2308 +MARKETING_VERSION = 0.0.2309 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5c4d1e145c5ab7b0492208316ad8bd78877748b5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Jul 2024 00:45:24 +0000 Subject: [PATCH 2367/2586] Auto-release 0.0.2310 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 95010128b9fe..857a3d38a418 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2309 +MARKETING_VERSION = 0.0.2310 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a7a3984f7807594e3119148eed428e0ed8c3e6fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Jul 2024 06:14:10 +0000 Subject: [PATCH 2368/2586] Auto-release 0.0.2311 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 857a3d38a418..5dbcd81479cb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2310 +MARKETING_VERSION = 0.0.2311 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3f2adb51584c19c232aef303860cda0a188126fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Jul 2024 12:20:45 +0000 Subject: [PATCH 2369/2586] Auto-release 0.0.2312 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5dbcd81479cb..dee964d6046b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2311 +MARKETING_VERSION = 0.0.2312 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6437a2316370653ad68a143dc0ea1900ae7354a3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 10 Jul 2024 18:15:48 +0000 Subject: [PATCH 2370/2586] Auto-release 0.0.2313 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dee964d6046b..21863687d0a3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2312 +MARKETING_VERSION = 0.0.2313 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7075328d3fe80487fddef2f2889941e1b1eefb66 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Jul 2024 00:45:44 +0000 Subject: [PATCH 2371/2586] Auto-release 0.0.2314 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 21863687d0a3..039cbf598f79 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2313 +MARKETING_VERSION = 0.0.2314 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 680b0a4ebf99d2d03d01c202cbcfe4e5f8f06b24 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Jul 2024 06:14:57 +0000 Subject: [PATCH 2372/2586] Auto-release 0.0.2315 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 039cbf598f79..7440cbcdf366 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2314 +MARKETING_VERSION = 0.0.2315 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 25dd386b0809d34736ffa6734e84c4c84387a36f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Jul 2024 12:18:56 +0000 Subject: [PATCH 2373/2586] Auto-release 0.0.2316 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7440cbcdf366..ae6da7bfe360 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2315 +MARKETING_VERSION = 0.0.2316 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1348f5c0c8605d1d6b40736ca39575fa3e636d99 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 11 Jul 2024 18:13:25 +0000 Subject: [PATCH 2374/2586] Auto-release 0.0.2317 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ae6da7bfe360..6560a2933b54 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2316 +MARKETING_VERSION = 0.0.2317 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ac30e55af797d2edef6a489c70126c94d13bc850 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Jul 2024 00:44:55 +0000 Subject: [PATCH 2375/2586] Auto-release 0.0.2318 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6560a2933b54..f6f10c82c1c9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2317 +MARKETING_VERSION = 0.0.2318 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c6628ce527d5bf00b7fd1d2a9ca48ecd2433863d Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Jul 2024 06:14:32 +0000 Subject: [PATCH 2376/2586] Auto-release 0.0.2319 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f6f10c82c1c9..888c2e9836a5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2318 +MARKETING_VERSION = 0.0.2319 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 87082e88417baf04f363aba2f9e92b431e78d2e8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Jul 2024 12:19:27 +0000 Subject: [PATCH 2377/2586] Auto-release 0.0.2320 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 888c2e9836a5..23d3a81754b4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2319 +MARKETING_VERSION = 0.0.2320 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d6ce7b3bf29921f933f1a6d8e9a5ea4d7120be57 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 12 Jul 2024 18:13:51 +0000 Subject: [PATCH 2378/2586] Auto-release 0.0.2321 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 23d3a81754b4..cb9bd4597fb0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2320 +MARKETING_VERSION = 0.0.2321 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a8d7db2460864885f8454d314b84015a493fed3b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Jul 2024 00:45:22 +0000 Subject: [PATCH 2379/2586] Auto-release 0.0.2322 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cb9bd4597fb0..87ce45a81d3b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2321 +MARKETING_VERSION = 0.0.2322 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3c42e15c11ca22d5dc0b08f4530f970d738fbab3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Jul 2024 06:14:04 +0000 Subject: [PATCH 2380/2586] Auto-release 0.0.2323 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 87ce45a81d3b..43f174b35f0a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2322 +MARKETING_VERSION = 0.0.2323 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 56ab7793abe43c8c668ba693b5e49ad3f7ef238b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Jul 2024 12:16:42 +0000 Subject: [PATCH 2381/2586] Auto-release 0.0.2324 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 43f174b35f0a..e08f796df1eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2323 +MARKETING_VERSION = 0.0.2324 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1514cc7a63c4764a0ebcab2ad7b475dbda941b84 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 13 Jul 2024 18:12:23 +0000 Subject: [PATCH 2382/2586] Auto-release 0.0.2325 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e08f796df1eb..ad8f89814ee9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2324 +MARKETING_VERSION = 0.0.2325 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a75e2b8280afee2ba7d1bc432b65cca785da9289 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Jul 2024 00:50:39 +0000 Subject: [PATCH 2383/2586] Auto-release 0.0.2326 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ad8f89814ee9..34eb38066b5c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2325 +MARKETING_VERSION = 0.0.2326 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1b525defdeeedd5ed116204c8315a386b7fb32c0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Jul 2024 06:15:41 +0000 Subject: [PATCH 2384/2586] Auto-release 0.0.2327 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 34eb38066b5c..d30dc35bf67c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2326 +MARKETING_VERSION = 0.0.2327 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 228bf3888c4e865138d3eada2a3edd5b5052f8c8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Jul 2024 12:27:48 +0000 Subject: [PATCH 2385/2586] Auto-release 0.0.2328 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d30dc35bf67c..94ae776385e3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2327 +MARKETING_VERSION = 0.0.2328 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 210e6b39a44830e1789528f0a8d8fbf00929f98c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 14 Jul 2024 18:20:52 +0000 Subject: [PATCH 2386/2586] Auto-release 0.0.2329 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 94ae776385e3..63e5395b8b40 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2328 +MARKETING_VERSION = 0.0.2329 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 72bb1148c6fce5fffd5384deca71fbe83d167f48 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Jul 2024 00:47:01 +0000 Subject: [PATCH 2387/2586] Auto-release 0.0.2330 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 63e5395b8b40..340909e434af 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2329 +MARKETING_VERSION = 0.0.2330 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e2a22060f53343b8fd07297929348ea6b9d73b0e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Jul 2024 06:16:16 +0000 Subject: [PATCH 2388/2586] Auto-release 0.0.2331 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 340909e434af..9de19117b73f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2330 +MARKETING_VERSION = 0.0.2331 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7fa59c9fee528317f7b8267f428683d777bc337a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Jul 2024 12:19:25 +0000 Subject: [PATCH 2389/2586] Auto-release 0.0.2332 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9de19117b73f..46bff9fc3110 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2331 +MARKETING_VERSION = 0.0.2332 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6f3e12931a64ab93c0e32c6dad3374cad01ee338 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 15 Jul 2024 18:13:43 +0000 Subject: [PATCH 2390/2586] Auto-release 0.0.2333 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 46bff9fc3110..8cea9805d9ab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2332 +MARKETING_VERSION = 0.0.2333 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dcd05684d546eeee282c539a51ede5e5673b94d0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Jul 2024 00:45:55 +0000 Subject: [PATCH 2391/2586] Auto-release 0.0.2334 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8cea9805d9ab..d97639f824fe 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2333 +MARKETING_VERSION = 0.0.2334 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 20cdc4385725798b0d4682636e0ef0e78b8b890f Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Jul 2024 06:15:07 +0000 Subject: [PATCH 2392/2586] Auto-release 0.0.2335 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d97639f824fe..5ebf21d38ca0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2334 +MARKETING_VERSION = 0.0.2335 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 495f45115a3535fb4cf673c0b40bb4b546b8e459 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Jul 2024 12:20:21 +0000 Subject: [PATCH 2393/2586] Auto-release 0.0.2336 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5ebf21d38ca0..9f2ce256038a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2335 +MARKETING_VERSION = 0.0.2336 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 155a7714f22e8b66fc24b2ad9d593f856b5a37c1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 16 Jul 2024 18:13:36 +0000 Subject: [PATCH 2394/2586] Auto-release 0.0.2337 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9f2ce256038a..dda66b472a13 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2336 +MARKETING_VERSION = 0.0.2337 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3d1084320c9cddf13f782ef51353ed1df4aeb780 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Jul 2024 00:45:47 +0000 Subject: [PATCH 2395/2586] Auto-release 0.0.2338 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dda66b472a13..8d128b419dce 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2337 +MARKETING_VERSION = 0.0.2338 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7e6e0ae86c687190bc447fd7b6b39278feda380d Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Jul 2024 06:14:49 +0000 Subject: [PATCH 2396/2586] Auto-release 0.0.2339 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8d128b419dce..9afb36a0e7b9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2338 +MARKETING_VERSION = 0.0.2339 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 17673672f45d0e73956f319b89a44a79b054e78c Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Jul 2024 12:18:43 +0000 Subject: [PATCH 2397/2586] Auto-release 0.0.2340 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9afb36a0e7b9..6dc1f2b635b6 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2339 +MARKETING_VERSION = 0.0.2340 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 673e0a99af78caa23d00bf0545ee1ffddad4bd63 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 17 Jul 2024 18:13:54 +0000 Subject: [PATCH 2398/2586] Auto-release 0.0.2341 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6dc1f2b635b6..66ea36cc86e1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2340 +MARKETING_VERSION = 0.0.2341 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c2ae8b545b45a8dadc294a2e39b844a535f16330 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Jul 2024 00:44:53 +0000 Subject: [PATCH 2399/2586] Auto-release 0.0.2342 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 66ea36cc86e1..ab93c44eff85 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2341 +MARKETING_VERSION = 0.0.2342 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ef3564f7e66460359ba819f215c182cefe20338e Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Jul 2024 06:14:46 +0000 Subject: [PATCH 2400/2586] Auto-release 0.0.2343 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ab93c44eff85..ff360c86660a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2342 +MARKETING_VERSION = 0.0.2343 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7a0b768248a8ab19fb419df4a0d11c215f681d8b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Jul 2024 12:19:30 +0000 Subject: [PATCH 2401/2586] Auto-release 0.0.2344 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ff360c86660a..20f560fc20f1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2343 +MARKETING_VERSION = 0.0.2344 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 224d497a321484b115ad356802737c8681b8ad78 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 18 Jul 2024 18:14:23 +0000 Subject: [PATCH 2402/2586] Auto-release 0.0.2345 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 20f560fc20f1..0071b93a7f8e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2344 +MARKETING_VERSION = 0.0.2345 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From be2dac58aef8cb9bdf172647584b915fe9792329 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Jul 2024 00:45:08 +0000 Subject: [PATCH 2403/2586] Auto-release 0.0.2346 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0071b93a7f8e..b1cd01089da5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2345 +MARKETING_VERSION = 0.0.2346 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ee7a61c11a7e534187790e573613794a52bdc92e Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Jul 2024 06:14:24 +0000 Subject: [PATCH 2404/2586] Auto-release 0.0.2347 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b1cd01089da5..6e9148671018 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2346 +MARKETING_VERSION = 0.0.2347 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f9939ae44516f9514c98027c2d1e846fb92a68a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Jul 2024 12:18:31 +0000 Subject: [PATCH 2405/2586] Auto-release 0.0.2348 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6e9148671018..16bf39f754b7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2347 +MARKETING_VERSION = 0.0.2348 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4dceec65a526b0bfd913b901ffe611b7d4d79a24 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 19 Jul 2024 18:13:40 +0000 Subject: [PATCH 2406/2586] Auto-release 0.0.2349 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 16bf39f754b7..45e3efa7add2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2348 +MARKETING_VERSION = 0.0.2349 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eaa8cfa73641ec60abb32d893c0640d18c029c2d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Jul 2024 00:44:32 +0000 Subject: [PATCH 2407/2586] Auto-release 0.0.2350 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 45e3efa7add2..801f25eb95b4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2349 +MARKETING_VERSION = 0.0.2350 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0281c6de67a8c73257bfc1a89514546a2f8bd70e Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Jul 2024 06:15:11 +0000 Subject: [PATCH 2408/2586] Auto-release 0.0.2351 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 801f25eb95b4..3f7c14c01d37 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2350 +MARKETING_VERSION = 0.0.2351 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6b3ea873c8074eaa116115506eaf7bb89731888c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Jul 2024 12:16:25 +0000 Subject: [PATCH 2409/2586] Auto-release 0.0.2352 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f7c14c01d37..4d7fb5cd03d2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2351 +MARKETING_VERSION = 0.0.2352 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 99ccaaf203bad03bf230099b86066c0cb64e6f5d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 20 Jul 2024 18:13:17 +0000 Subject: [PATCH 2410/2586] Auto-release 0.0.2353 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4d7fb5cd03d2..4aa5b577956f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2352 +MARKETING_VERSION = 0.0.2353 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 12cb75b019fef57e5f2c4b74aea10096f5a5249a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Jul 2024 00:50:27 +0000 Subject: [PATCH 2411/2586] Auto-release 0.0.2354 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4aa5b577956f..adfbcbc040cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2353 +MARKETING_VERSION = 0.0.2354 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 08b36b52c245168a57aff0b5d9dc1f737223821d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Jul 2024 06:13:20 +0000 Subject: [PATCH 2412/2586] Auto-release 0.0.2355 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index adfbcbc040cc..ab479ad406f2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2354 +MARKETING_VERSION = 0.0.2355 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 40f662aa041a138b93f753c92160c29481961b20 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Jul 2024 12:17:51 +0000 Subject: [PATCH 2413/2586] Auto-release 0.0.2356 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ab479ad406f2..d90dc4e6821a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2355 +MARKETING_VERSION = 0.0.2356 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9a5e3d5df26c24591ca1c149b32a28d5d30fdcd4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 21 Jul 2024 18:12:24 +0000 Subject: [PATCH 2414/2586] Auto-release 0.0.2357 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d90dc4e6821a..7da505c624ad 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2356 +MARKETING_VERSION = 0.0.2357 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ea6bf8583e648d6066778ca88cd0705c1387ca6a Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Jul 2024 00:47:50 +0000 Subject: [PATCH 2415/2586] Auto-release 0.0.2358 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7da505c624ad..ba6d79a94d9b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2357 +MARKETING_VERSION = 0.0.2358 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 688633c947235080a0d6ec929003d548945dee29 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Jul 2024 06:14:47 +0000 Subject: [PATCH 2416/2586] Auto-release 0.0.2359 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ba6d79a94d9b..81b416b7508d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2358 +MARKETING_VERSION = 0.0.2359 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 355b72be3b6fcd4e29082fbfa1aa0fe513da81a9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Jul 2024 12:19:20 +0000 Subject: [PATCH 2417/2586] Auto-release 0.0.2360 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 81b416b7508d..3a9347dd33fd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2359 +MARKETING_VERSION = 0.0.2360 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6f024ef258196d8f6cc093dadd564a3ee500247c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 22 Jul 2024 18:13:40 +0000 Subject: [PATCH 2418/2586] Auto-release 0.0.2361 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3a9347dd33fd..c2c9d0ed6463 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2360 +MARKETING_VERSION = 0.0.2361 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f4065905cf24c649cb4cd908614c67da28f7efeb Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Jul 2024 00:46:10 +0000 Subject: [PATCH 2419/2586] Auto-release 0.0.2362 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c2c9d0ed6463..e597e7f3ccde 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2361 +MARKETING_VERSION = 0.0.2362 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 28eb035790a9c7907898022d594a1d063682edec Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Jul 2024 06:14:39 +0000 Subject: [PATCH 2420/2586] Auto-release 0.0.2363 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e597e7f3ccde..b52f50fa32db 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2362 +MARKETING_VERSION = 0.0.2363 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 47b533d96aa4724903358757dbf7dd5c3802700e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Jul 2024 12:19:13 +0000 Subject: [PATCH 2421/2586] Auto-release 0.0.2364 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b52f50fa32db..b6e9fb29922e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2363 +MARKETING_VERSION = 0.0.2364 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 419cfa8829c4a17ee676695e88224a3bb6e11b6b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 23 Jul 2024 18:14:23 +0000 Subject: [PATCH 2422/2586] Auto-release 0.0.2365 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b6e9fb29922e..2c88aec32dc1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2364 +MARKETING_VERSION = 0.0.2365 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 29ec2b666b5a4bd3e0864fed2594400a444cb2f3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Jul 2024 00:47:38 +0000 Subject: [PATCH 2423/2586] Auto-release 0.0.2366 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2c88aec32dc1..7e1eec39999e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2365 +MARKETING_VERSION = 0.0.2366 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2581413f9211b977e7e04ada9bbd454e3729b824 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Jul 2024 06:14:52 +0000 Subject: [PATCH 2424/2586] Auto-release 0.0.2367 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7e1eec39999e..e57ec1876296 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2366 +MARKETING_VERSION = 0.0.2367 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 064d7b1e6370485bcd5313f2b2c3ff22419741fb Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Jul 2024 12:18:41 +0000 Subject: [PATCH 2425/2586] Auto-release 0.0.2368 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e57ec1876296..226e3ab12d67 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2367 +MARKETING_VERSION = 0.0.2368 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 80e474bfb3de1b6cb962dcc6c5a5b6b302c85f51 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 24 Jul 2024 18:14:12 +0000 Subject: [PATCH 2426/2586] Auto-release 0.0.2369 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 226e3ab12d67..cf36041dadad 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2368 +MARKETING_VERSION = 0.0.2369 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e08658ef67ebda8455548d42daf794b58a973611 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Jul 2024 00:45:34 +0000 Subject: [PATCH 2427/2586] Auto-release 0.0.2370 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cf36041dadad..4ef492a33da4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2369 +MARKETING_VERSION = 0.0.2370 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1d081bbfd57453b68b64b87556c0d82ea3e4b29d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Jul 2024 06:15:00 +0000 Subject: [PATCH 2428/2586] Auto-release 0.0.2371 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4ef492a33da4..4c0ec157f10f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2370 +MARKETING_VERSION = 0.0.2371 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5b5591fb5c901c406146ab76b5849d00c8a73de2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Jul 2024 12:18:48 +0000 Subject: [PATCH 2429/2586] Auto-release 0.0.2372 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c0ec157f10f..7bd729b6d410 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2371 +MARKETING_VERSION = 0.0.2372 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 376249bbf62f1f549c1870824ccb7d4cd7fc3e93 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 25 Jul 2024 18:13:31 +0000 Subject: [PATCH 2430/2586] Auto-release 0.0.2373 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7bd729b6d410..d67c8fef7c2a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2372 +MARKETING_VERSION = 0.0.2373 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 40b25e013886343100da2a4017a06a025c412f6a Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Jul 2024 00:44:58 +0000 Subject: [PATCH 2431/2586] Auto-release 0.0.2374 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d67c8fef7c2a..379a86727f82 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2373 +MARKETING_VERSION = 0.0.2374 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9a4882820458621a45b6cc65f11932f0289c7c68 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Jul 2024 06:15:00 +0000 Subject: [PATCH 2432/2586] Auto-release 0.0.2375 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 379a86727f82..7e21bc54de3c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2374 +MARKETING_VERSION = 0.0.2375 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9f963e24ff4f1a88ac4d45aa81cc751e8e21a340 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Jul 2024 12:18:15 +0000 Subject: [PATCH 2433/2586] Auto-release 0.0.2376 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7e21bc54de3c..7fadf65458d8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2375 +MARKETING_VERSION = 0.0.2376 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c8beebd7f8a9149c7f9a0c7a21cba7b3292842bc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 26 Jul 2024 18:14:29 +0000 Subject: [PATCH 2434/2586] Auto-release 0.0.2377 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7fadf65458d8..6c2198415159 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2376 +MARKETING_VERSION = 0.0.2377 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9bafb7a76029108973c33336a34953cafb13456a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Jul 2024 00:45:07 +0000 Subject: [PATCH 2435/2586] Auto-release 0.0.2378 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6c2198415159..b08feb5022bf 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2377 +MARKETING_VERSION = 0.0.2378 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 48b468c72122982ee5d2f33140a4f118bb09dc6d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Jul 2024 06:13:16 +0000 Subject: [PATCH 2436/2586] Auto-release 0.0.2379 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b08feb5022bf..1785ba8499c2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2378 +MARKETING_VERSION = 0.0.2379 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1c314afffacf7578c05242264f86564d0fde0078 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Jul 2024 12:19:07 +0000 Subject: [PATCH 2437/2586] Auto-release 0.0.2380 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1785ba8499c2..7ded148d5365 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2379 +MARKETING_VERSION = 0.0.2380 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 09ecd6bd57e90a56b319de56a8a04d2f831f06de Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 27 Jul 2024 18:14:10 +0000 Subject: [PATCH 2438/2586] Auto-release 0.0.2381 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7ded148d5365..4b092d929000 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2380 +MARKETING_VERSION = 0.0.2381 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ab8765c93b42e8b9f0f3521637d92934a649854b Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Jul 2024 00:51:04 +0000 Subject: [PATCH 2439/2586] Auto-release 0.0.2382 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4b092d929000..84d3c6209a45 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2381 +MARKETING_VERSION = 0.0.2382 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2e7bcd2ad940195849827f57c52ef7632273e8b5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Jul 2024 06:13:23 +0000 Subject: [PATCH 2440/2586] Auto-release 0.0.2383 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 84d3c6209a45..85574a92ef3d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2382 +MARKETING_VERSION = 0.0.2383 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From de50150f2510a8d65f2aa3d13151064931c80aa7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Jul 2024 12:17:12 +0000 Subject: [PATCH 2441/2586] Auto-release 0.0.2384 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 85574a92ef3d..afc6b1cd7a54 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2383 +MARKETING_VERSION = 0.0.2384 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6d57cf06864cc55b508a7601976cbcd3e02ea418 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 28 Jul 2024 18:15:06 +0000 Subject: [PATCH 2442/2586] Auto-release 0.0.2385 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index afc6b1cd7a54..f7d7091ebd60 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2384 +MARKETING_VERSION = 0.0.2385 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 504b2f8d4397d437d2c44d83cf44712040e3505f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Jul 2024 00:47:38 +0000 Subject: [PATCH 2443/2586] Auto-release 0.0.2386 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f7d7091ebd60..b42b3be80633 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2385 +MARKETING_VERSION = 0.0.2386 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 54a558516def6ebe9268ac26e9442e39945b8036 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Jul 2024 06:15:13 +0000 Subject: [PATCH 2444/2586] Auto-release 0.0.2387 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b42b3be80633..67f14c25764b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2386 +MARKETING_VERSION = 0.0.2387 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b5cb62686e40d3b27adb8f0e4fe26a6137c3b83e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Jul 2024 12:19:46 +0000 Subject: [PATCH 2445/2586] Auto-release 0.0.2388 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 67f14c25764b..d1345c26efa4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2387 +MARKETING_VERSION = 0.0.2388 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 65a97ce9e8762c129647ff1f31a6a6c07c0beac3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 29 Jul 2024 18:13:48 +0000 Subject: [PATCH 2446/2586] Auto-release 0.0.2389 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d1345c26efa4..e762e6f45cb7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2388 +MARKETING_VERSION = 0.0.2389 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5c82bdeaa818797c116eba50f1d8ab65c871626b Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Jul 2024 00:45:53 +0000 Subject: [PATCH 2447/2586] Auto-release 0.0.2390 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e762e6f45cb7..4d0fe09e9460 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2389 +MARKETING_VERSION = 0.0.2390 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 647c6bdd8b30d7725f33513fa998a1a00817a0e2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Jul 2024 06:15:01 +0000 Subject: [PATCH 2448/2586] Auto-release 0.0.2391 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4d0fe09e9460..4bfb00be9034 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2390 +MARKETING_VERSION = 0.0.2391 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eac26e9dc873f77352bfea5ed0474bff5b6d32c8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Jul 2024 12:19:29 +0000 Subject: [PATCH 2449/2586] Auto-release 0.0.2392 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4bfb00be9034..86aa0b24daf7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2391 +MARKETING_VERSION = 0.0.2392 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9dffef5b31b5c744729fd23dd7d04abb07c34a4c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 30 Jul 2024 18:13:46 +0000 Subject: [PATCH 2450/2586] Auto-release 0.0.2393 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 86aa0b24daf7..5e063d8ad7fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2392 +MARKETING_VERSION = 0.0.2393 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a7b91c9c7e3d2eb99bd5b6a5903d1e8b52d743a1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 Jul 2024 00:39:42 +0000 Subject: [PATCH 2451/2586] Auto-release 0.0.2394 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e063d8ad7fc..f33065cc5c68 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2393 +MARKETING_VERSION = 0.0.2394 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 21206925317be4f6e00305938851767c621d63d3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 Jul 2024 06:12:46 +0000 Subject: [PATCH 2452/2586] Auto-release 0.0.2395 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f33065cc5c68..cd9d22b976ea 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2394 +MARKETING_VERSION = 0.0.2395 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fbf88daa9f422aad624886cbf9d1868fbd4449f4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 Jul 2024 12:19:19 +0000 Subject: [PATCH 2453/2586] Auto-release 0.0.2396 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cd9d22b976ea..31a70032cf35 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2395 +MARKETING_VERSION = 0.0.2396 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c5160b1635c4debbc2a36e913365060e3f1b7075 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 31 Jul 2024 18:14:24 +0000 Subject: [PATCH 2454/2586] Auto-release 0.0.2397 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 31a70032cf35..122bf0d1f8b2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2396 +MARKETING_VERSION = 0.0.2397 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 844dd89e1636e96460703e10eb221892fe834123 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Aug 2024 00:51:29 +0000 Subject: [PATCH 2455/2586] Auto-release 0.0.2398 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 122bf0d1f8b2..ab194fbeb884 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2397 +MARKETING_VERSION = 0.0.2398 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 54f06c307be1a11fbf9fbff71333c078646f8cee Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Aug 2024 06:15:24 +0000 Subject: [PATCH 2456/2586] Auto-release 0.0.2399 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ab194fbeb884..b0df515c434a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2398 +MARKETING_VERSION = 0.0.2399 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bb42af46cbb5801891fcad03ba480001dae70a2d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Aug 2024 12:19:09 +0000 Subject: [PATCH 2457/2586] Auto-release 0.0.2400 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b0df515c434a..7e00393b1e13 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2399 +MARKETING_VERSION = 0.0.2400 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b82329ee0bb48d363d507a0779353b455348e51b Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 1 Aug 2024 18:14:27 +0000 Subject: [PATCH 2458/2586] Auto-release 0.0.2401 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7e00393b1e13..df7f123e3b5a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2400 +MARKETING_VERSION = 0.0.2401 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 81825c79fd46335a869df790df02fd6c390c2423 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Aug 2024 00:45:51 +0000 Subject: [PATCH 2459/2586] Auto-release 0.0.2402 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index df7f123e3b5a..7a89d32691ac 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2401 +MARKETING_VERSION = 0.0.2402 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a76e9d097ec9aca07b7250774db88abaa5c4e1f4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Aug 2024 06:16:38 +0000 Subject: [PATCH 2460/2586] Auto-release 0.0.2403 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7a89d32691ac..93f481e9719a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2402 +MARKETING_VERSION = 0.0.2403 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f26d80eec8bae99da9b89fa654816e913090d541 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Aug 2024 12:18:41 +0000 Subject: [PATCH 2461/2586] Auto-release 0.0.2404 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 93f481e9719a..eab8ea426ea2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2403 +MARKETING_VERSION = 0.0.2404 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 822a457f4ff3b19742fdba6d4194a2ef86af3059 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 2 Aug 2024 18:14:27 +0000 Subject: [PATCH 2462/2586] Auto-release 0.0.2405 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eab8ea426ea2..3879d657a8c4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2404 +MARKETING_VERSION = 0.0.2405 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e22e981f67766bdc4f5a51af25b0df48e12b4f56 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Aug 2024 00:45:11 +0000 Subject: [PATCH 2463/2586] Auto-release 0.0.2406 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3879d657a8c4..8c269ffae451 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2405 +MARKETING_VERSION = 0.0.2406 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 04bf3740cb11e4b5e219c72c2fb9edabf2712eea Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Aug 2024 06:14:36 +0000 Subject: [PATCH 2464/2586] Auto-release 0.0.2407 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8c269ffae451..3619efdb2eb2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2406 +MARKETING_VERSION = 0.0.2407 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 96692c4e0dd120f8d9fe22611b3d53584a1fdcb7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Aug 2024 12:16:53 +0000 Subject: [PATCH 2465/2586] Auto-release 0.0.2408 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3619efdb2eb2..5e15cc822451 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2407 +MARKETING_VERSION = 0.0.2408 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c32efcdb324154b88183a8d8efde77ffc36afd84 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 3 Aug 2024 18:13:33 +0000 Subject: [PATCH 2466/2586] Auto-release 0.0.2409 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e15cc822451..88a2d2d2ad58 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2408 +MARKETING_VERSION = 0.0.2409 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 61a369e1f8f46cc782b5ffa5e29c0ae2497afc32 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Aug 2024 00:51:08 +0000 Subject: [PATCH 2467/2586] Auto-release 0.0.2410 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 88a2d2d2ad58..991c25b0c207 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2409 +MARKETING_VERSION = 0.0.2410 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6b6ae0b47eafcfd26d8d450007003294bd981372 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Aug 2024 06:14:19 +0000 Subject: [PATCH 2468/2586] Auto-release 0.0.2411 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 991c25b0c207..0eb6de686997 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2410 +MARKETING_VERSION = 0.0.2411 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a3b05b8b094f72646d6a061cfbcfd38e5920e202 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Aug 2024 12:17:20 +0000 Subject: [PATCH 2469/2586] Auto-release 0.0.2412 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0eb6de686997..b27b4170c3eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2411 +MARKETING_VERSION = 0.0.2412 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fff4348f008d4f841ddc41b474b2d3607e1ef959 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 4 Aug 2024 18:12:37 +0000 Subject: [PATCH 2470/2586] Auto-release 0.0.2413 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b27b4170c3eb..f75261ba6d38 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2412 +MARKETING_VERSION = 0.0.2413 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 85e8f5cb45ca44730db97711fe382c3a526addc8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Aug 2024 00:48:20 +0000 Subject: [PATCH 2471/2586] Auto-release 0.0.2414 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f75261ba6d38..1d1f4d8363b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2413 +MARKETING_VERSION = 0.0.2414 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b259a210a0475006d4e6bf3f8cab0d2fb220778f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Aug 2024 06:15:36 +0000 Subject: [PATCH 2472/2586] Auto-release 0.0.2415 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1d1f4d8363b0..c00800b27f65 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2414 +MARKETING_VERSION = 0.0.2415 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e27bab07e531a7b14ed5fb8a39183685de2417dd Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Aug 2024 12:20:03 +0000 Subject: [PATCH 2473/2586] Auto-release 0.0.2416 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c00800b27f65..f5cbd011a0e7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2415 +MARKETING_VERSION = 0.0.2416 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bc6ca49b56e87a9c61adab091cf182ea3c7dab6e Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 5 Aug 2024 18:14:56 +0000 Subject: [PATCH 2474/2586] Auto-release 0.0.2417 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f5cbd011a0e7..655d712be606 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2416 +MARKETING_VERSION = 0.0.2417 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b3d57b243e08445f1144aedb2316c20331db04e2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Aug 2024 00:46:18 +0000 Subject: [PATCH 2475/2586] Auto-release 0.0.2418 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 655d712be606..cb88355cbe76 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2417 +MARKETING_VERSION = 0.0.2418 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 6413386ea690700525e69d8b25e367a6f3d12b95 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Aug 2024 06:16:15 +0000 Subject: [PATCH 2476/2586] Auto-release 0.0.2419 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cb88355cbe76..a133c854d0b1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2418 +MARKETING_VERSION = 0.0.2419 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7c3470fc6f2930b945929f939b92d0de7a0b7703 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Aug 2024 12:19:35 +0000 Subject: [PATCH 2477/2586] Auto-release 0.0.2420 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a133c854d0b1..b2502864b4ee 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2419 +MARKETING_VERSION = 0.0.2420 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1b845d64d2eface3d643bb2f2a3e53f0d526a05d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 6 Aug 2024 18:15:11 +0000 Subject: [PATCH 2478/2586] Auto-release 0.0.2421 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b2502864b4ee..99803ad6bd9a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2420 +MARKETING_VERSION = 0.0.2421 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3fbe3ef47f7f875c5774cbbd2d4a81b21371bbcf Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Aug 2024 00:46:56 +0000 Subject: [PATCH 2479/2586] Auto-release 0.0.2422 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 99803ad6bd9a..3f11b891bead 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2421 +MARKETING_VERSION = 0.0.2422 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 33c020c1f41cb8b0d788418bd6f2d68907dcea30 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Aug 2024 06:14:56 +0000 Subject: [PATCH 2480/2586] Auto-release 0.0.2423 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f11b891bead..a2b1d2d6cdfc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2422 +MARKETING_VERSION = 0.0.2423 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 56121db2077419afec5d9cc68127f80dcbf72570 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Aug 2024 12:21:02 +0000 Subject: [PATCH 2481/2586] Auto-release 0.0.2424 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a2b1d2d6cdfc..4358c556d091 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2423 +MARKETING_VERSION = 0.0.2424 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c9fb4c1c6a4a50d93321dbcdbc6ff7952eaf60ca Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 7 Aug 2024 18:13:58 +0000 Subject: [PATCH 2482/2586] Auto-release 0.0.2425 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4358c556d091..0db3175a31a0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2424 +MARKETING_VERSION = 0.0.2425 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 631611ff10d5967ef03235fdd103b89535899f2f Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Aug 2024 00:46:50 +0000 Subject: [PATCH 2483/2586] Auto-release 0.0.2426 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0db3175a31a0..373158097339 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2425 +MARKETING_VERSION = 0.0.2426 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 99f75add5e575f83dabd8eb8295e41ccfe81c707 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Aug 2024 06:15:52 +0000 Subject: [PATCH 2484/2586] Auto-release 0.0.2427 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 373158097339..b3114073a228 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2426 +MARKETING_VERSION = 0.0.2427 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4e55ab9336e4d2d364fc903d0f0de65127aaf519 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Aug 2024 12:19:06 +0000 Subject: [PATCH 2485/2586] Auto-release 0.0.2428 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b3114073a228..305424c410b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2427 +MARKETING_VERSION = 0.0.2428 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2a654a5abbcc40ebdd974541a6bef4b18ed27480 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 8 Aug 2024 18:16:09 +0000 Subject: [PATCH 2486/2586] Auto-release 0.0.2429 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 305424c410b0..41098003a1d1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2428 +MARKETING_VERSION = 0.0.2429 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 95a9ce7fb6dedd37ad2f58e0582515d5faac9190 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Aug 2024 00:47:35 +0000 Subject: [PATCH 2487/2586] Auto-release 0.0.2430 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 41098003a1d1..95ab86e25925 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2429 +MARKETING_VERSION = 0.0.2430 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c7d24a34e650d7eaec38081bb1f86389a282fd45 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Aug 2024 06:15:35 +0000 Subject: [PATCH 2488/2586] Auto-release 0.0.2431 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 95ab86e25925..cff8ca500ccc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2430 +MARKETING_VERSION = 0.0.2431 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8be220e81fab9ed99da53bdad119254aa7cc51cc Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Aug 2024 12:19:28 +0000 Subject: [PATCH 2489/2586] Auto-release 0.0.2432 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cff8ca500ccc..98c36e98cdd9 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2431 +MARKETING_VERSION = 0.0.2432 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cdd71ead0789d3dea99024fecb72aa8d06edbc1c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 9 Aug 2024 18:13:58 +0000 Subject: [PATCH 2490/2586] Auto-release 0.0.2433 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 98c36e98cdd9..a86650ba4c08 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2432 +MARKETING_VERSION = 0.0.2433 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4a2826891cc36a506055194fe6b6fd63b839ae6d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Aug 2024 00:46:46 +0000 Subject: [PATCH 2491/2586] Auto-release 0.0.2434 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a86650ba4c08..c093ccd09214 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2433 +MARKETING_VERSION = 0.0.2434 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d66d8f6c8d4d1e799399f2129d7becdc1d33903d Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Aug 2024 06:13:56 +0000 Subject: [PATCH 2492/2586] Auto-release 0.0.2435 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c093ccd09214..012f49edebd2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2434 +MARKETING_VERSION = 0.0.2435 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fda1658462040b5aa809fef6dbc7885dd538300f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Aug 2024 12:18:04 +0000 Subject: [PATCH 2493/2586] Auto-release 0.0.2436 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 012f49edebd2..996cb2fcd9ab 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2435 +MARKETING_VERSION = 0.0.2436 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a70c3cf0729cf2c0848a5ed3b806dda8a71ad308 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 10 Aug 2024 18:12:57 +0000 Subject: [PATCH 2494/2586] Auto-release 0.0.2437 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 996cb2fcd9ab..6f8524924fe5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2436 +MARKETING_VERSION = 0.0.2437 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e4b71e30b6f0e31c2378415734fc85144398153c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Aug 2024 00:51:42 +0000 Subject: [PATCH 2495/2586] Auto-release 0.0.2438 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6f8524924fe5..9efc654cc267 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2437 +MARKETING_VERSION = 0.0.2438 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4205a26104145cff6234bd84a5eee48d7fedefa5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Aug 2024 06:15:12 +0000 Subject: [PATCH 2496/2586] Auto-release 0.0.2439 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9efc654cc267..e3738b178b87 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2438 +MARKETING_VERSION = 0.0.2439 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 98bbe5faed9d64d0808bcc32883691e70f5b8f95 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Aug 2024 12:17:57 +0000 Subject: [PATCH 2497/2586] Auto-release 0.0.2440 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e3738b178b87..05c67ce31349 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2439 +MARKETING_VERSION = 0.0.2440 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a5a930cae3a73a4e8b762fd51a3d4bf7173bf72c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 11 Aug 2024 18:15:00 +0000 Subject: [PATCH 2498/2586] Auto-release 0.0.2441 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 05c67ce31349..f7e480e8b4f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2440 +MARKETING_VERSION = 0.0.2441 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 73826c6e4f439225847bd1dcc7bede43cd67cc4c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Aug 2024 00:48:23 +0000 Subject: [PATCH 2499/2586] Auto-release 0.0.2442 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f7e480e8b4f7..dfbf2f28b911 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2441 +MARKETING_VERSION = 0.0.2442 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f1d86a39a33315b35d4a2118188df951f762caea Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Aug 2024 06:15:25 +0000 Subject: [PATCH 2500/2586] Auto-release 0.0.2443 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dfbf2f28b911..4c0e0a2d477b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2442 +MARKETING_VERSION = 0.0.2443 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3442df6f64c87f786403b8112df39e53cbf082e5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Aug 2024 12:21:09 +0000 Subject: [PATCH 2501/2586] Auto-release 0.0.2444 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4c0e0a2d477b..074564300aea 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2443 +MARKETING_VERSION = 0.0.2444 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From cc8c24427484af7c7d8fbed7bd39e137101a1959 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 12 Aug 2024 18:15:09 +0000 Subject: [PATCH 2502/2586] Auto-release 0.0.2445 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 074564300aea..c88e8a9cf7c5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2444 +MARKETING_VERSION = 0.0.2445 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a325861555d741660f6212afe5d6c64e474f787d Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Aug 2024 00:47:37 +0000 Subject: [PATCH 2503/2586] Auto-release 0.0.2446 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c88e8a9cf7c5..c7f64a8b782f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2445 +MARKETING_VERSION = 0.0.2446 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9c504c81d9b52d1b4339fe29b5fba654da5c813c Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Aug 2024 06:15:37 +0000 Subject: [PATCH 2504/2586] Auto-release 0.0.2447 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c7f64a8b782f..e17a9a9030d4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2446 +MARKETING_VERSION = 0.0.2447 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f636933990c416c98ece83b3392f182c6c6c2bc3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Aug 2024 12:20:00 +0000 Subject: [PATCH 2505/2586] Auto-release 0.0.2448 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e17a9a9030d4..e0b32c384899 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2447 +MARKETING_VERSION = 0.0.2448 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1a237b16f37f257822cf7d4699f221f8fbbdcfcb Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 13 Aug 2024 18:14:56 +0000 Subject: [PATCH 2506/2586] Auto-release 0.0.2449 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e0b32c384899..dff0188153be 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2448 +MARKETING_VERSION = 0.0.2449 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 11d2dd2e767c27641d293116c58d746f9012ceda Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Aug 2024 00:47:10 +0000 Subject: [PATCH 2507/2586] Auto-release 0.0.2450 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index dff0188153be..f3b4ad100f4e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2449 +MARKETING_VERSION = 0.0.2450 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 05e15c82e34d97b3418b33d948af4d2727a60549 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Aug 2024 06:14:45 +0000 Subject: [PATCH 2508/2586] Auto-release 0.0.2451 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f3b4ad100f4e..58b2d9687254 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2450 +MARKETING_VERSION = 0.0.2451 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 09f48fa225a812a3e8086e0ca372d24b6b55fbea Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Aug 2024 12:19:36 +0000 Subject: [PATCH 2509/2586] Auto-release 0.0.2452 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 58b2d9687254..13c5b77a9789 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2451 +MARKETING_VERSION = 0.0.2452 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0a1596828bc901059cea80194772e5ab6bea2097 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 14 Aug 2024 18:13:53 +0000 Subject: [PATCH 2510/2586] Auto-release 0.0.2453 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 13c5b77a9789..91c6a73f449d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2452 +MARKETING_VERSION = 0.0.2453 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 55c2dadc04c3734b26fe22d18917e9891964a4f1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Aug 2024 00:44:58 +0000 Subject: [PATCH 2511/2586] Auto-release 0.0.2454 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 91c6a73f449d..67aa040f3c48 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2453 +MARKETING_VERSION = 0.0.2454 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 144270a05fe32e4b89008d8e95802d76236ca73a Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Aug 2024 06:15:01 +0000 Subject: [PATCH 2512/2586] Auto-release 0.0.2455 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 67aa040f3c48..bddfd8756002 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2454 +MARKETING_VERSION = 0.0.2455 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 0a4c32a73621e5cded398be32a69f143c296b435 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Aug 2024 12:19:43 +0000 Subject: [PATCH 2513/2586] Auto-release 0.0.2456 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bddfd8756002..d85165895d1c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2455 +MARKETING_VERSION = 0.0.2456 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4fee87fc427f9b378023c70cbcd7ec8dfa08c365 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 15 Aug 2024 18:14:38 +0000 Subject: [PATCH 2514/2586] Auto-release 0.0.2457 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d85165895d1c..529b9aa336a1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2456 +MARKETING_VERSION = 0.0.2457 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 084ff89a69ca35eeaf59b3f9c7e9adae463b78d7 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Aug 2024 00:46:20 +0000 Subject: [PATCH 2515/2586] Auto-release 0.0.2458 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 529b9aa336a1..12a6726f766c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2457 +MARKETING_VERSION = 0.0.2458 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 30316622fe43e752d75034a557c2b70c226c9dd3 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Aug 2024 06:14:36 +0000 Subject: [PATCH 2516/2586] Auto-release 0.0.2459 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 12a6726f766c..709b349f23d4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2458 +MARKETING_VERSION = 0.0.2459 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 13357aae906fa57344d76b3b36e2c3f2ea79039c Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Aug 2024 12:19:38 +0000 Subject: [PATCH 2517/2586] Auto-release 0.0.2460 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 709b349f23d4..59f2c2f433c0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2459 +MARKETING_VERSION = 0.0.2460 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From bae1fb3d41a90e532287c6ff1110379538493685 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 16 Aug 2024 18:14:51 +0000 Subject: [PATCH 2518/2586] Auto-release 0.0.2461 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 59f2c2f433c0..1e0c169b91c8 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2460 +MARKETING_VERSION = 0.0.2461 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 220f133ca635e023912cd7c7779c87ea36aee4fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Aug 2024 00:44:57 +0000 Subject: [PATCH 2519/2586] Auto-release 0.0.2462 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1e0c169b91c8..8494310dc600 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2461 +MARKETING_VERSION = 0.0.2462 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f73c8d8b30ce35fdb59089d7e09ff92d32a7dde8 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Aug 2024 06:13:49 +0000 Subject: [PATCH 2520/2586] Auto-release 0.0.2463 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8494310dc600..399a287c24eb 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2462 +MARKETING_VERSION = 0.0.2463 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 869ae42f24656441e81e6474e13d1e36eafabac5 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Aug 2024 12:16:40 +0000 Subject: [PATCH 2521/2586] Auto-release 0.0.2464 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 399a287c24eb..2036cef40028 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2463 +MARKETING_VERSION = 0.0.2464 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a922ef5629c2c4fe1530064cf8cd3d03e6941d52 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 17 Aug 2024 18:13:16 +0000 Subject: [PATCH 2522/2586] Auto-release 0.0.2465 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 2036cef40028..202d32410b0c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2464 +MARKETING_VERSION = 0.0.2465 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3f7caa7e1c8908af35f7fe6ed883d2237b657629 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Aug 2024 00:52:10 +0000 Subject: [PATCH 2523/2586] Auto-release 0.0.2466 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 202d32410b0c..66df77795f5c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2465 +MARKETING_VERSION = 0.0.2466 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f7c0740fb2250b81e38b193cd4d3012db2230dfd Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Aug 2024 06:14:23 +0000 Subject: [PATCH 2524/2586] Auto-release 0.0.2467 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 66df77795f5c..3f3146d7c4a3 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2466 +MARKETING_VERSION = 0.0.2467 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 90561ef78acc0aa574f17d8ea38df5e435855789 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Aug 2024 12:19:24 +0000 Subject: [PATCH 2525/2586] Auto-release 0.0.2468 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3f3146d7c4a3..7f96d8c5ae2b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2467 +MARKETING_VERSION = 0.0.2468 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ce062583685a6afda062e48c8fb318258d7f5fd6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 18 Aug 2024 18:12:40 +0000 Subject: [PATCH 2526/2586] Auto-release 0.0.2469 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7f96d8c5ae2b..5f180d9784bd 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2468 +MARKETING_VERSION = 0.0.2469 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2edd667ba79137d2cd541183b592a9d3bfefb617 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Aug 2024 00:47:46 +0000 Subject: [PATCH 2527/2586] Auto-release 0.0.2470 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5f180d9784bd..a73c86b138f7 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2469 +MARKETING_VERSION = 0.0.2470 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7436ccb739ce880e4d171d7a8a12192d88430e6d Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Aug 2024 06:15:38 +0000 Subject: [PATCH 2528/2586] Auto-release 0.0.2471 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index a73c86b138f7..b74e4bb940fe 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2470 +MARKETING_VERSION = 0.0.2471 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dcd92bc395a41f2db7b1f104d177b067328560ee Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Aug 2024 12:19:49 +0000 Subject: [PATCH 2529/2586] Auto-release 0.0.2472 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b74e4bb940fe..09695d7f9891 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2471 +MARKETING_VERSION = 0.0.2472 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ae741c6b137b8502ecf9df735b039fdfd47841c2 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 19 Aug 2024 18:14:02 +0000 Subject: [PATCH 2530/2586] Auto-release 0.0.2473 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 09695d7f9891..ac0c8a357a92 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2472 +MARKETING_VERSION = 0.0.2473 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3efc0442cc15ae8a1fa0ff86290e93842f66f15e Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Aug 2024 00:46:35 +0000 Subject: [PATCH 2531/2586] Auto-release 0.0.2474 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ac0c8a357a92..9250e104db3f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2473 +MARKETING_VERSION = 0.0.2474 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4edf692207e5a49e813a2eaab8d90dda5cb2d2db Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Aug 2024 06:14:55 +0000 Subject: [PATCH 2532/2586] Auto-release 0.0.2475 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9250e104db3f..58464e95c52a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2474 +MARKETING_VERSION = 0.0.2475 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b1f9e88e796ced67edd6797b4a3cb3bbbe8d61af Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Aug 2024 12:20:09 +0000 Subject: [PATCH 2533/2586] Auto-release 0.0.2476 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 58464e95c52a..57d1744aa233 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2475 +MARKETING_VERSION = 0.0.2476 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 1e1f2c8ae784c5f2a7a9357dc852c7b65c1d8339 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 20 Aug 2024 18:15:30 +0000 Subject: [PATCH 2534/2586] Auto-release 0.0.2477 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 57d1744aa233..6d57d06dcc7a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2476 +MARKETING_VERSION = 0.0.2477 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3e59ee73c0cd64dc81ce773202642c3026aa6228 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Aug 2024 00:46:27 +0000 Subject: [PATCH 2535/2586] Auto-release 0.0.2478 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6d57d06dcc7a..8177b9df728c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2477 +MARKETING_VERSION = 0.0.2478 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dc38c4c48df7c87247296b46e010c76a63176155 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Aug 2024 06:14:47 +0000 Subject: [PATCH 2536/2586] Auto-release 0.0.2479 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8177b9df728c..45c99446a8bc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2478 +MARKETING_VERSION = 0.0.2479 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f447344b6617f6c07ed80a0b64d612ef763128bb Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Aug 2024 12:19:07 +0000 Subject: [PATCH 2537/2586] Auto-release 0.0.2480 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 45c99446a8bc..96de5ab2b6cc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2479 +MARKETING_VERSION = 0.0.2480 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ce21397ce68b6e065ca23d9c07795a2e19c60275 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 21 Aug 2024 18:14:39 +0000 Subject: [PATCH 2538/2586] Auto-release 0.0.2481 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 96de5ab2b6cc..eebc2075f29b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2480 +MARKETING_VERSION = 0.0.2481 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 155d8112df932615e08415231af074bee556f6f0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Aug 2024 00:47:59 +0000 Subject: [PATCH 2539/2586] Auto-release 0.0.2482 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index eebc2075f29b..4354b5cccdf4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2481 +MARKETING_VERSION = 0.0.2482 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From aff170ed191aa3e5d6847f011b084dcbdcc7dd23 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Aug 2024 06:14:50 +0000 Subject: [PATCH 2540/2586] Auto-release 0.0.2483 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4354b5cccdf4..67d5d2259867 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2482 +MARKETING_VERSION = 0.0.2483 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 604205571b7424fe3181415aa0a9af9e82cfd2fd Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Aug 2024 12:19:09 +0000 Subject: [PATCH 2541/2586] Auto-release 0.0.2484 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 67d5d2259867..b1225e01b934 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2483 +MARKETING_VERSION = 0.0.2484 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d6d884f8293dd27bc4c46d9d62dcdf2d64ed9e8d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 22 Aug 2024 18:14:04 +0000 Subject: [PATCH 2542/2586] Auto-release 0.0.2485 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index b1225e01b934..beaa56fc4e73 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2484 +MARKETING_VERSION = 0.0.2485 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7420598cb5bdc6721ffd6faab80f6e56e92370bf Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Aug 2024 00:47:16 +0000 Subject: [PATCH 2543/2586] Auto-release 0.0.2486 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index beaa56fc4e73..ea40f9f9e336 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2485 +MARKETING_VERSION = 0.0.2486 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ef93cd1d9533b648c07f8dc76a019363d4aa7a5d Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Aug 2024 06:14:54 +0000 Subject: [PATCH 2544/2586] Auto-release 0.0.2487 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ea40f9f9e336..3030774813aa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2486 +MARKETING_VERSION = 0.0.2487 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5745dba90a9353aaccc485d5a9ef501582c48431 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Aug 2024 12:19:22 +0000 Subject: [PATCH 2545/2586] Auto-release 0.0.2488 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3030774813aa..0ca62573cb80 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2487 +MARKETING_VERSION = 0.0.2488 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8608a8c935f3d54d4e6052f5d09d42a4b9530c37 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 23 Aug 2024 18:14:14 +0000 Subject: [PATCH 2546/2586] Auto-release 0.0.2489 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 0ca62573cb80..d038862fba84 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2488 +MARKETING_VERSION = 0.0.2489 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e1932cf3d5d15bbea05dbebc5e596c59f8db07f6 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Aug 2024 00:45:23 +0000 Subject: [PATCH 2547/2586] Auto-release 0.0.2490 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d038862fba84..8c1c1a21fdde 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2489 +MARKETING_VERSION = 0.0.2490 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 47275d8e28fb50bcb8f1b3235792c4cbd5728530 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Aug 2024 06:14:26 +0000 Subject: [PATCH 2548/2586] Auto-release 0.0.2491 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8c1c1a21fdde..1a20fb329ac2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2490 +MARKETING_VERSION = 0.0.2491 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From ab18f999709eb9b29a23e837bd3caf7fb669e64f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Aug 2024 12:17:33 +0000 Subject: [PATCH 2549/2586] Auto-release 0.0.2492 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 1a20fb329ac2..37d4be85fd38 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2491 +MARKETING_VERSION = 0.0.2492 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7d2eb9c540ec1cc50ffa2e367024660e87c79068 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 24 Aug 2024 18:12:40 +0000 Subject: [PATCH 2550/2586] Auto-release 0.0.2493 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 37d4be85fd38..969e81ad22b1 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2492 +MARKETING_VERSION = 0.0.2493 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4c93ba83aa963d5f9d009e14b4684f86fbf081fc Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Aug 2024 00:52:42 +0000 Subject: [PATCH 2551/2586] Auto-release 0.0.2494 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 969e81ad22b1..c69f218db5dc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2493 +MARKETING_VERSION = 0.0.2494 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From c89083f1ad3ed1dad43768355d4ac02b459021ad Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Aug 2024 06:14:14 +0000 Subject: [PATCH 2552/2586] Auto-release 0.0.2495 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index c69f218db5dc..23ce00e6cb50 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2494 +MARKETING_VERSION = 0.0.2495 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b897cbab4c944540a129a13848477a88c113917a Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Aug 2024 12:17:33 +0000 Subject: [PATCH 2553/2586] Auto-release 0.0.2496 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 23ce00e6cb50..cc7a99bb8400 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2495 +MARKETING_VERSION = 0.0.2496 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d74da47a086ce461a83a6ab7f38fac9579907496 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 25 Aug 2024 18:12:53 +0000 Subject: [PATCH 2554/2586] Auto-release 0.0.2497 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index cc7a99bb8400..f0d6cf777b24 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2496 +MARKETING_VERSION = 0.0.2497 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b43afd5db07128e7816f899f4ab705a3910ece60 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Aug 2024 00:48:11 +0000 Subject: [PATCH 2555/2586] Auto-release 0.0.2498 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f0d6cf777b24..95f4ea3b5664 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2497 +MARKETING_VERSION = 0.0.2498 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d6a99a50f3950821bfaaf075e0702e27b2445645 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Aug 2024 06:15:36 +0000 Subject: [PATCH 2556/2586] Auto-release 0.0.2499 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 95f4ea3b5664..7a7514d1943e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2498 +MARKETING_VERSION = 0.0.2499 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dd8c5f85a79611dd6fd26f1860c02f18fb0ccab4 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Aug 2024 12:19:49 +0000 Subject: [PATCH 2557/2586] Auto-release 0.0.2500 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7a7514d1943e..fd601ff2160d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2499 +MARKETING_VERSION = 0.0.2500 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 2b94cea121bed6e35ac60b0af2e875f40d50690c Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 26 Aug 2024 18:14:15 +0000 Subject: [PATCH 2558/2586] Auto-release 0.0.2501 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index fd601ff2160d..04f26d6e0d7e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2500 +MARKETING_VERSION = 0.0.2501 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f317c32bdd432b7b0abb265dd276e7aefbb47f83 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Aug 2024 00:48:02 +0000 Subject: [PATCH 2559/2586] Auto-release 0.0.2502 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 04f26d6e0d7e..4a9a3964a90d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2501 +MARKETING_VERSION = 0.0.2502 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d0a12917d1b2a0e765b67038df66db04eef52f43 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Aug 2024 06:15:22 +0000 Subject: [PATCH 2560/2586] Auto-release 0.0.2503 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4a9a3964a90d..35b553c55ffa 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2502 +MARKETING_VERSION = 0.0.2503 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a96a27472392edba44227fc956e77968a9180973 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Aug 2024 12:19:44 +0000 Subject: [PATCH 2561/2586] Auto-release 0.0.2504 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 35b553c55ffa..9eecd6d01dcc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2503 +MARKETING_VERSION = 0.0.2504 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8647d375d2a69f3663f3dbbcc8deb8eff19f9086 Mon Sep 17 00:00:00 2001 From: marcprux Date: Tue, 27 Aug 2024 18:14:22 +0000 Subject: [PATCH 2562/2586] Auto-release 0.0.2505 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 9eecd6d01dcc..ecd18e5044fc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2504 +MARKETING_VERSION = 0.0.2505 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From a2162ea5feae969c13ac27610fd294e1eb76cbb0 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Aug 2024 00:48:22 +0000 Subject: [PATCH 2563/2586] Auto-release 0.0.2506 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index ecd18e5044fc..534a1d78e2c5 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2505 +MARKETING_VERSION = 0.0.2506 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9f79e517b167b85876eaba84287693e9490f0458 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Aug 2024 06:15:47 +0000 Subject: [PATCH 2564/2586] Auto-release 0.0.2507 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 534a1d78e2c5..7ac78a66fe37 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2506 +MARKETING_VERSION = 0.0.2507 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 347733dc961739283c7ea7307851ee7985178629 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Aug 2024 12:20:33 +0000 Subject: [PATCH 2565/2586] Auto-release 0.0.2508 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7ac78a66fe37..634bd5f4b4db 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2507 +MARKETING_VERSION = 0.0.2508 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From abf59998df2e56f0f3f4efe585448774262012f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Wed, 28 Aug 2024 18:14:06 +0000 Subject: [PATCH 2566/2586] Auto-release 0.0.2509 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 634bd5f4b4db..862b02fb859f 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2508 +MARKETING_VERSION = 0.0.2509 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 4a12714572049e77b619e3711b7c7807eb3e939d Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Aug 2024 00:49:04 +0000 Subject: [PATCH 2567/2586] Auto-release 0.0.2510 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 862b02fb859f..7ee55a4e1a26 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2509 +MARKETING_VERSION = 0.0.2510 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 3f5f1677153c42176ee91ff135d8fb8a07652438 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Aug 2024 06:15:31 +0000 Subject: [PATCH 2568/2586] Auto-release 0.0.2511 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7ee55a4e1a26..058e60e04018 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2510 +MARKETING_VERSION = 0.0.2511 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 98c381a2d4892c4673753ffc96b9764a6c0e8b26 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Aug 2024 12:19:52 +0000 Subject: [PATCH 2569/2586] Auto-release 0.0.2512 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 058e60e04018..7204eeab7064 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2511 +MARKETING_VERSION = 0.0.2512 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 614be2cc51b7efab8c80cb0ec662d719a30c9e20 Mon Sep 17 00:00:00 2001 From: marcprux Date: Thu, 29 Aug 2024 18:14:17 +0000 Subject: [PATCH 2570/2586] Auto-release 0.0.2513 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 7204eeab7064..3b5e464df0b0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2512 +MARKETING_VERSION = 0.0.2513 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 5c261bef4bd4e6266840baccfdc910705227ebac Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Aug 2024 00:49:22 +0000 Subject: [PATCH 2571/2586] Auto-release 0.0.2514 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3b5e464df0b0..e7f873013bf2 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2513 +MARKETING_VERSION = 0.0.2514 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From d8931055f96ec76d42cc187c39144191556e1475 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Aug 2024 06:15:55 +0000 Subject: [PATCH 2572/2586] Auto-release 0.0.2515 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index e7f873013bf2..58814f93ad41 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2514 +MARKETING_VERSION = 0.0.2515 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e9ea94879d231790ff12b31c196e4f363c16cc90 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Aug 2024 12:19:26 +0000 Subject: [PATCH 2573/2586] Auto-release 0.0.2516 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 58814f93ad41..4aaa58cb745e 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2515 +MARKETING_VERSION = 0.0.2516 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 21085ed6eebae6590645e5a4e23e703aef0e6b43 Mon Sep 17 00:00:00 2001 From: marcprux Date: Fri, 30 Aug 2024 18:14:58 +0000 Subject: [PATCH 2574/2586] Auto-release 0.0.2517 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 4aaa58cb745e..3e3fdc62d31c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2516 +MARKETING_VERSION = 0.0.2517 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From fe6671047b77ecd3440912be833f9549473e6a67 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 31 Aug 2024 00:49:07 +0000 Subject: [PATCH 2575/2586] Auto-release 0.0.2518 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 3e3fdc62d31c..870d04cfd23b 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2517 +MARKETING_VERSION = 0.0.2518 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From dfb81380cf93473074e6199fbde0357e0051020f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 31 Aug 2024 06:13:57 +0000 Subject: [PATCH 2576/2586] Auto-release 0.0.2519 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 870d04cfd23b..8f3efb5a6bdc 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2518 +MARKETING_VERSION = 0.0.2519 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 377215bf2fe8cb8498bef7b5fb8b2012ea59a0d1 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 31 Aug 2024 12:18:16 +0000 Subject: [PATCH 2577/2586] Auto-release 0.0.2520 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 8f3efb5a6bdc..f9c65545c53c 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2519 +MARKETING_VERSION = 0.0.2520 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From f40d475c8c11debbfb4bc29449ffb66f76e2ba6c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sat, 31 Aug 2024 18:13:02 +0000 Subject: [PATCH 2578/2586] Auto-release 0.0.2521 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f9c65545c53c..bf6f1174a34d 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2520 +MARKETING_VERSION = 0.0.2521 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7a1cc5c232c54cd780f48ab4eeb7e1fc54db8c8f Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Sep 2024 00:58:11 +0000 Subject: [PATCH 2579/2586] Auto-release 0.0.2522 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index bf6f1174a34d..27b72cb813e0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2521 +MARKETING_VERSION = 0.0.2522 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 08be14a10939c030ec86ca05fdd97fcc82704453 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Sep 2024 06:15:35 +0000 Subject: [PATCH 2580/2586] Auto-release 0.0.2523 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 27b72cb813e0..f4cb8175a27a 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2522 +MARKETING_VERSION = 0.0.2523 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 9c90c490d3306c8a9c055c37107082d09ac2d7f9 Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Sep 2024 12:18:28 +0000 Subject: [PATCH 2581/2586] Auto-release 0.0.2524 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index f4cb8175a27a..5e62073f5972 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2523 +MARKETING_VERSION = 0.0.2524 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 7fed01d1c7aa3104e63ab60c436600f4a6fe681c Mon Sep 17 00:00:00 2001 From: marcprux Date: Sun, 1 Sep 2024 18:13:15 +0000 Subject: [PATCH 2582/2586] Auto-release 0.0.2525 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5e62073f5972..5f99004cc8b4 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2524 +MARKETING_VERSION = 0.0.2525 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From eb95f4b8cd74bc866f551318a314e7f5533af64f Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Sep 2024 00:52:07 +0000 Subject: [PATCH 2583/2586] Auto-release 0.0.2526 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 5f99004cc8b4..d88f61493914 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2525 +MARKETING_VERSION = 0.0.2526 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From b8855d94f42bda2c24d0726797fa9738c9456e44 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Sep 2024 06:16:17 +0000 Subject: [PATCH 2584/2586] Auto-release 0.0.2527 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index d88f61493914..6ca44bf60fb0 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2526 +MARKETING_VERSION = 0.0.2527 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From e6b0b99037a22773231c0c5faf4dc192195cfc0b Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Sep 2024 12:20:53 +0000 Subject: [PATCH 2585/2586] Auto-release 0.0.2528 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 6ca44bf60fb0..69133122e862 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2527 +MARKETING_VERSION = 0.0.2528 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051 From 8b3949e8f07854b5a9d9675aa361de45d4b64957 Mon Sep 17 00:00:00 2001 From: marcprux Date: Mon, 2 Sep 2024 18:14:27 +0000 Subject: [PATCH 2586/2586] Auto-release 0.0.2529 --- appfair.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appfair.xcconfig b/appfair.xcconfig index 69133122e862..5685e6607bda 100644 --- a/appfair.xcconfig +++ b/appfair.xcconfig @@ -7,7 +7,7 @@ PRODUCT_NAME = Silly Little App PRODUCT_BUNDLE_IDENTIFIER = app.Silly-Little-App // The semantic version for the app matching the git tag for the release -MARKETING_VERSION = 0.0.2528 +MARKETING_VERSION = 0.0.2529 // The monotonically increasing number specifying the internal app version CURRENT_PROJECT_VERSION = 1051