Skip to content

Commit 97f5592

Browse files
authored
Update copyright year (#116)
Signed-off-by: Raul Metsma <raul@metsma.ee>
1 parent 2cca87f commit 97f5592

4 files changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
container: ubuntu:${{ matrix.container }}
1515
strategy:
1616
matrix:
17-
container: ['22.04', '24.04', '25.10']
17+
container: ['22.04', '24.04', '25.10', '26.04']
1818
arch: ['amd64', 'arm64']
1919
env:
2020
DEBIAN_FRONTEND: noninteractive
@@ -41,7 +41,7 @@ jobs:
4141
- name: Lintian
4242
run: lintian *.deb;
4343
- name: Archive artifacts
44-
uses: actions/upload-artifact@v6
44+
uses: actions/upload-artifact@v7
4545
with:
4646
name: ubuntu_${{ matrix.container }}_${{ matrix.arch }}
4747
path: libcdoc*.*
@@ -73,7 +73,7 @@ jobs:
7373
cmake --build --preset ${{ matrix.target }}
7474
cmake --build --preset ${{ matrix.target }} --target install/strip
7575
- name: Archive artifacts
76-
uses: actions/upload-artifact@v6
76+
uses: actions/upload-artifact@v7
7777
with:
7878
name: ${{ matrix.target }}
7979
path: |
@@ -112,7 +112,7 @@ jobs:
112112
- name: Install
113113
run: cmake --build --preset ${{ matrix.target }} --target install/strip
114114
- name: Archive artifacts
115-
uses: actions/upload-artifact@v6
115+
uses: actions/upload-artifact@v7
116116
with:
117117
name: ${{ matrix.target }}
118118
path: ${{ env.DEST }}
@@ -155,7 +155,7 @@ jobs:
155155
ctest -V -C RelWithDebInfo --test-dir build
156156
cmake --install build --config RelWithDebInfo --prefix ${{ env.DEST }}
157157
- name: Archive artifacts
158-
uses: actions/upload-artifact@v6
158+
uses: actions/upload-artifact@v7
159159
with:
160160
name: ${{ matrix.image }}_${{ matrix.platform }}
161161
path: ${{ env.DEST }}

CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ set(CPACK_PACKAGING_INSTALL_PREFIX /usr)
3232
list(APPEND CPACK_RPM_RELOCATION_PATHS ${CMAKE_INSTALL_SYSCONFDIR})
3333
set(CPACK_RPM_FILE_NAME RPM-DEFAULT)
3434
set(CPACK_RPM_PACKAGE_RELEASE_DIST ON)
35-
set(MACOSX_BUNDLE_COPYRIGHT "(C) 2017-2025 Estonian Information System Authority")
36-
set(MACOSX_FRAMEWORK_SHORT_VERSION_STRING ${PROJECT_VERSION})
37-
set(MACOSX_FRAMEWORK_BUNDLE_VERSION ${BUILD_NUMBER})
3835
if(APPLE)
3936
set(FRAMEWORK YES CACHE BOOL "Build library as Mac OS X Framework")
4037
set(FRAMEWORK_DESTINATION /Library/Frameworks CACHE PATH "Mac OS X Framework install destination")

cdoc/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ set_target_properties(cdoc PROPERTIES
6767
FRAMEWORK_VERSION 1
6868
FRAMEWORK "${FRAMEWORK}"
6969
MACOSX_FRAMEWORK_IDENTIFIER "ee.ria.cdoc"
70+
MACOSX_FRAMEWORK_SHORT_VERSION_STRING ${PROJECT_VERSION}
71+
MACOSX_FRAMEWORK_BUNDLE_VERSION ${BUILD_NUMBER}
7072
MACOSX_RPATH YES
7173
POSITION_INDEPENDENT_CODE YES
7274
)

cdoc/libcdoc.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ BEGIN
2525
VALUE "FileDescription", TARGET_NAME
2626
VALUE "FileVersion", VERSION_STR
2727
VALUE "InternalName", TARGET_NAME
28-
VALUE "LegalCopyright", "(C) 2025 Estonian Information System Authority"
28+
VALUE "LegalCopyright", "(C) 2025-2026 Estonian Information System Authority"
2929
#ifdef APP
3030
VALUE "OriginalFilename", TARGET_NAME ".exe"
3131
#else

0 commit comments

Comments
 (0)