From 9c8b6e1f189cc4845937d87d6184fc20c89287d3 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sun, 25 Jan 2026 22:58:17 +0000 Subject: [PATCH 1/2] app: update copyright year to 2026 --- src/app/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/constants.ts b/src/app/constants.ts index 90d4addcc..4bdfab603 100644 --- a/src/app/constants.ts +++ b/src/app/constants.ts @@ -1,5 +1,5 @@ // SPDX-License-Identifier: MIT -// Copyright (c) 2021-2023 The Pybricks Authors +// Copyright (c) 2021-2026 The Pybricks Authors import docsPackage from '@pybricks/ide-docs/package.json'; // Definitions for compile-time UI settings. @@ -49,7 +49,7 @@ export const pybricksUsbLinuxUdevRulesUrl = 'https://pybricks.com/projects/tutorials/dev/tools/linux/'; /** Pybricks copyright statement. */ -export const pybricksCopyright = 'Copyright (c) 2020-2023 The Pybricks Authors'; +export const pybricksCopyright = 'Copyright (c) 2020-2026 The Pybricks Authors'; /** The LEGO name with registered trademark symbol. */ export const legoRegisteredTrademark = 'LEGO®'; From b16088886abba0beddb80a0ea13eb617e2a4c731 Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sun, 25 Jan 2026 23:00:04 +0000 Subject: [PATCH 2/2] github: include date in version for labs build Make labs version a bit easier to identify by also including the build date. --- .github/workflows/test-pull-request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index b4be39b74..ba69e4a5d 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -33,7 +33,7 @@ jobs: run: | echo "REACT_APP_NAME=Pybricks Labs" >> $GITHUB_ENV echo "REACT_APP_SUFFIX=-labs" >> $GITHUB_ENV - echo "REACT_APP_VERSION=$GITHUB_SHA" >> $GITHUB_ENV + echo "REACT_APP_VERSION=$(date --iso)-$GITHUB_SHA" >> $GITHUB_ENV - run: yarn build - uses: actions/upload-artifact@v6 with: