clusterlink-net / clusterlink

A Gateway for connecting application services in different domains, networks, and cloud infrastructures
https://clusterlink.net
Other
17 stars 18 forks source link

copyright: update all copyright lines and remove year #591

Closed elevran closed 4 months ago

elevran commented 4 months ago

According to https://hynek.me/til/copyright-years/ and linked sources (including Linux Foundation) copyright years:

the years range (2022-present) is kept in LICENSE. The copyright in .licenserc.yaml is updated accordingly.

Fixes #285 Replaced by #592

elevran commented 4 months ago

You must delete current copyright - as it is now duplicated and not updated as expected... it is a problem of the tool that we're using probably.

Agree. I noticed that too and put the PR in draft mode... It is a tool limitation so resorted to using sed instead:

grep -rl "Copyright 2023 The ClusterLink Authors" --exclude-dir=.git | xargs sed -i 's/Copyright 2023 The ClusterLink Authors/Copyright (c) The ClusterLink Authors/g'

This will be in a new PR (also need to run codegen on CRDs)