From 21933270cd311fcc6cf1ce1a7aa27a4d2556e74b Mon Sep 17 00:00:00 2001 From: Ian Cook Date: Mon, 22 Sep 2025 17:10:30 -0400 Subject: [PATCH] Standardize copyright notices --- .github/workflows/deploy.yml | 2 +- .github/workflows/dev_pr.yml | 2 +- .github/workflows/go.yml | 2 +- .github/workflows/publish_install_script.yml | 2 +- .github/workflows/release.yml | 2 +- Dockerfile | 2 +- README.md | 2 +- cmd/dbc/add.go | 2 +- cmd/dbc/add_test.go | 2 +- cmd/dbc/driver_list.go | 2 +- cmd/dbc/driver_list_test.go | 2 +- cmd/dbc/init.go | 2 +- cmd/dbc/init_test.go | 2 +- cmd/dbc/install.go | 2 +- cmd/dbc/install_test.go | 2 +- cmd/dbc/lockfile.go | 2 +- cmd/dbc/main.go | 2 +- cmd/dbc/main_test.go | 2 +- cmd/dbc/registry_test.go | 2 +- cmd/dbc/remove.go | 2 +- cmd/dbc/search.go | 2 +- cmd/dbc/search_test.go | 2 +- cmd/dbc/subcommand_test.go | 2 +- cmd/dbc/sync.go | 2 +- cmd/dbc/sync_test.go | 2 +- cmd/dbc/tui_driver_list.go | 2 +- cmd/dbc/tui_menu.go | 2 +- cmd/dbc/uninstall.go | 2 +- cmd/dbc/uninstall_test.go | 2 +- cmd/dbc/view_config.go | 2 +- config/config.go | 2 +- config/config_test.go | 2 +- config/current.go | 2 +- config/dirs_unixlike.go | 2 +- config/dirs_windows.go | 2 +- config/driver.go | 2 +- config/driver_test.go | 2 +- config/unixlike_test.go | 2 +- delegates.go | 2 +- docs/README.md | 2 +- docs/concepts/driver.md | 2 +- docs/concepts/driver_manager.md | 2 +- docs/concepts/driver_manifest.md | 2 +- docs/concepts/drivers_list.md | 2 +- docs/getting_started/faq.md | 2 +- docs/getting_started/first_steps.md | 2 +- docs/getting_started/installation.md | 2 +- docs/guides/drivers_list.md | 2 +- docs/guides/finding_drivers.md | 2 +- docs/guides/installing.md | 2 +- docs/index.md | 2 +- docs/reference/cli.md | 2 +- docs/reference/config.md | 2 +- docs/reference/dbc.toml.md | 2 +- drivers.go | 2 +- mkdocs.yml | 4 ++-- scripts/create_wheels.py | 2 +- 57 files changed, 58 insertions(+), 58 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 971e1815..3f917428 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2025 Columnar Technologies, Inc. All rights reserved. +# Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. name: Deploy diff --git a/.github/workflows/dev_pr.yml b/.github/workflows/dev_pr.yml index 7a4de674..a22af630 100644 --- a/.github/workflows/dev_pr.yml +++ b/.github/workflows/dev_pr.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2025 Columnar Technologies. All rights reserved. +# Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. name: Dev PR diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index b92b40a5..0fef0f0e 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2025 Columnar Technologies. All rights reserved. +# Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. name: Go on: diff --git a/.github/workflows/publish_install_script.yml b/.github/workflows/publish_install_script.yml index abd449ab..a8d0e6ce 100644 --- a/.github/workflows/publish_install_script.yml +++ b/.github/workflows/publish_install_script.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2025 Columnar Technologies, Inc. All rights reserved. +# Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. name: Publish install.sh diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c77a5258..20c529a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2025 Columnar Technologies, Inc. All rights reserved. +# Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. name: Release dbc diff --git a/Dockerfile b/Dockerfile index eebd5f2d..4f2087e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# Copyright (c) 2025 Columnar Technologies, Inc. All rights reserved. +# Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. FROM scratch ENTRYPOINT ["/dbc"] COPY dbc / diff --git a/README.md b/README.md index 3a9208af..4f9e75a7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ - + # dbc dbc Logo diff --git a/cmd/dbc/add.go b/cmd/dbc/add.go index ae0c9534..a73ce4eb 100644 --- a/cmd/dbc/add.go +++ b/cmd/dbc/add.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/add_test.go b/cmd/dbc/add_test.go index e906c7de..3f7cd871 100644 --- a/cmd/dbc/add_test.go +++ b/cmd/dbc/add_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/driver_list.go b/cmd/dbc/driver_list.go index 099cf4cb..ed60bb6f 100644 --- a/cmd/dbc/driver_list.go +++ b/cmd/dbc/driver_list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/driver_list_test.go b/cmd/dbc/driver_list_test.go index 83a371c0..a0e4dc56 100644 --- a/cmd/dbc/driver_list_test.go +++ b/cmd/dbc/driver_list_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/init.go b/cmd/dbc/init.go index 5456c4bf..10872b48 100644 --- a/cmd/dbc/init.go +++ b/cmd/dbc/init.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/init_test.go b/cmd/dbc/init_test.go index 7797c54b..469c07a7 100644 --- a/cmd/dbc/init_test.go +++ b/cmd/dbc/init_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/install.go b/cmd/dbc/install.go index db46d6b2..3d4d8c22 100644 --- a/cmd/dbc/install.go +++ b/cmd/dbc/install.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/install_test.go b/cmd/dbc/install_test.go index 23441237..78bb2839 100644 --- a/cmd/dbc/install_test.go +++ b/cmd/dbc/install_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/lockfile.go b/cmd/dbc/lockfile.go index b1c03cbe..f3cdeb68 100644 --- a/cmd/dbc/lockfile.go +++ b/cmd/dbc/lockfile.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/main.go b/cmd/dbc/main.go index a3e6d129..dbae3c76 100644 --- a/cmd/dbc/main.go +++ b/cmd/dbc/main.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/main_test.go b/cmd/dbc/main_test.go index 4c6d50d9..0c0623d8 100644 --- a/cmd/dbc/main_test.go +++ b/cmd/dbc/main_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/registry_test.go b/cmd/dbc/registry_test.go index 2ebb2624..174212ec 100644 --- a/cmd/dbc/registry_test.go +++ b/cmd/dbc/registry_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. //go:build windows && test_registry diff --git a/cmd/dbc/remove.go b/cmd/dbc/remove.go index db19c79c..238a2e5a 100644 --- a/cmd/dbc/remove.go +++ b/cmd/dbc/remove.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/search.go b/cmd/dbc/search.go index 56ad8504..2e2ba582 100644 --- a/cmd/dbc/search.go +++ b/cmd/dbc/search.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/search_test.go b/cmd/dbc/search_test.go index e51683d2..d86b47c6 100644 --- a/cmd/dbc/search_test.go +++ b/cmd/dbc/search_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/subcommand_test.go b/cmd/dbc/subcommand_test.go index 73e7de38..a46482dc 100644 --- a/cmd/dbc/subcommand_test.go +++ b/cmd/dbc/subcommand_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/sync.go b/cmd/dbc/sync.go index 3eb5f1a5..a2aff3d9 100644 --- a/cmd/dbc/sync.go +++ b/cmd/dbc/sync.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/sync_test.go b/cmd/dbc/sync_test.go index 591035d0..430a5d18 100644 --- a/cmd/dbc/sync_test.go +++ b/cmd/dbc/sync_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/tui_driver_list.go b/cmd/dbc/tui_driver_list.go index b6e0ccd3..b92d2e8e 100644 --- a/cmd/dbc/tui_driver_list.go +++ b/cmd/dbc/tui_driver_list.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/tui_menu.go b/cmd/dbc/tui_menu.go index ea6d6acf..27e9e982 100644 --- a/cmd/dbc/tui_menu.go +++ b/cmd/dbc/tui_menu.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/uninstall.go b/cmd/dbc/uninstall.go index e79788c4..ef149392 100644 --- a/cmd/dbc/uninstall.go +++ b/cmd/dbc/uninstall.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/uninstall_test.go b/cmd/dbc/uninstall_test.go index becb8974..86e12bcd 100644 --- a/cmd/dbc/uninstall_test.go +++ b/cmd/dbc/uninstall_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/cmd/dbc/view_config.go b/cmd/dbc/view_config.go index 381e6606..ec9b7ab2 100644 --- a/cmd/dbc/view_config.go +++ b/cmd/dbc/view_config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package main diff --git a/config/config.go b/config/config.go index 6f54351e..f5f93127 100644 --- a/config/config.go +++ b/config/config.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package config diff --git a/config/config_test.go b/config/config_test.go index 22f2d919..0fa20baa 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package config diff --git a/config/current.go b/config/current.go index 8b1fd329..39606ee1 100644 --- a/config/current.go +++ b/config/current.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package config diff --git a/config/dirs_unixlike.go b/config/dirs_unixlike.go index 57069421..83bf7a2f 100644 --- a/config/dirs_unixlike.go +++ b/config/dirs_unixlike.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. //go:build !windows diff --git a/config/dirs_windows.go b/config/dirs_windows.go index 1442b542..5486565e 100644 --- a/config/dirs_windows.go +++ b/config/dirs_windows.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package config diff --git a/config/driver.go b/config/driver.go index 78d92be7..b7efe5e7 100644 --- a/config/driver.go +++ b/config/driver.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package config diff --git a/config/driver_test.go b/config/driver_test.go index a7ccc27f..b21e649f 100644 --- a/config/driver_test.go +++ b/config/driver_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package config diff --git a/config/unixlike_test.go b/config/unixlike_test.go index 081bfa76..867d0839 100644 --- a/config/unixlike_test.go +++ b/config/unixlike_test.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. //go:build !windows diff --git a/delegates.go b/delegates.go index 30d51e84..8fd65a79 100644 --- a/delegates.go +++ b/delegates.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package dbc diff --git a/docs/README.md b/docs/README.md index c5f5e5e5..ecb53020 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,4 +1,4 @@ - + # dbc docs diff --git a/docs/concepts/driver.md b/docs/concepts/driver.md index 818386b8..2c3b2a80 100644 --- a/docs/concepts/driver.md +++ b/docs/concepts/driver.md @@ -1,4 +1,4 @@ - + # Driver diff --git a/docs/concepts/driver_manager.md b/docs/concepts/driver_manager.md index 926c11f2..1905b73b 100644 --- a/docs/concepts/driver_manager.md +++ b/docs/concepts/driver_manager.md @@ -1,4 +1,4 @@ - + # Driver Manager diff --git a/docs/concepts/driver_manifest.md b/docs/concepts/driver_manifest.md index 68455f17..0f6413aa 100644 --- a/docs/concepts/driver_manifest.md +++ b/docs/concepts/driver_manifest.md @@ -1,4 +1,4 @@ - + # Driver Manifest diff --git a/docs/concepts/drivers_list.md b/docs/concepts/drivers_list.md index 50e71271..b23c01b3 100644 --- a/docs/concepts/drivers_list.md +++ b/docs/concepts/drivers_list.md @@ -1,4 +1,4 @@ - + # Drivers List diff --git a/docs/getting_started/faq.md b/docs/getting_started/faq.md index 72822e2c..dd0d1733 100644 --- a/docs/getting_started/faq.md +++ b/docs/getting_started/faq.md @@ -1,4 +1,4 @@ - + # FAQ diff --git a/docs/getting_started/first_steps.md b/docs/getting_started/first_steps.md index 2acb745e..96b32598 100644 --- a/docs/getting_started/first_steps.md +++ b/docs/getting_started/first_steps.md @@ -1,4 +1,4 @@ - + # First Steps diff --git a/docs/getting_started/installation.md b/docs/getting_started/installation.md index 01e3e939..57ca2e3b 100644 --- a/docs/getting_started/installation.md +++ b/docs/getting_started/installation.md @@ -1,4 +1,4 @@ - + # Installation diff --git a/docs/guides/drivers_list.md b/docs/guides/drivers_list.md index 68395150..8f230bce 100644 --- a/docs/guides/drivers_list.md +++ b/docs/guides/drivers_list.md @@ -1,4 +1,4 @@ - + # Using the Drivers List diff --git a/docs/guides/finding_drivers.md b/docs/guides/finding_drivers.md index 601ddb12..6d6ccda4 100644 --- a/docs/guides/finding_drivers.md +++ b/docs/guides/finding_drivers.md @@ -1,4 +1,4 @@ - + # Finding Drivers diff --git a/docs/guides/installing.md b/docs/guides/installing.md index 0100bb97..7456cdb1 100644 --- a/docs/guides/installing.md +++ b/docs/guides/installing.md @@ -1,4 +1,4 @@ - + # Installing Drivers diff --git a/docs/index.md b/docs/index.md index 6167ed59..434321a3 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,4 +1,4 @@ - + # dbc diff --git a/docs/reference/cli.md b/docs/reference/cli.md index 9d48f4d8..eaa6faea 100644 --- a/docs/reference/cli.md +++ b/docs/reference/cli.md @@ -1,4 +1,4 @@ - + + # Config diff --git a/docs/reference/dbc.toml.md b/docs/reference/dbc.toml.md index e9815b89..142501e1 100644 --- a/docs/reference/dbc.toml.md +++ b/docs/reference/dbc.toml.md @@ -1,4 +1,4 @@ - + # dbc.toml diff --git a/drivers.go b/drivers.go index 8e444fa2..2a44d79a 100644 --- a/drivers.go +++ b/drivers.go @@ -1,4 +1,4 @@ -// Copyright (c) 2025 Columnar Technologies. All rights reserved. +// Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. package dbc diff --git a/mkdocs.yml b/mkdocs.yml index 7ba7d69d..9d9b8602 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -1,4 +1,4 @@ -# Copyright (c) 2025 Columnar Technologies. All rights reserved. +# Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. site_name: dbc site_author: columnar-tech @@ -6,7 +6,7 @@ site_description: dbc is a command line tool for installing and managing ADBC dr site_url: https://docs.columnar.tech/dbc repo_url: https://github.com/columnar-tech/dbc repo_name: dbc -copyright: Copyright © 2025 Columnar Technologies, Inc. +copyright: Copyright © 2025 Columnar Technologies Inc. markdown_extensions: - admonition - def_list diff --git a/scripts/create_wheels.py b/scripts/create_wheels.py index 4945a72f..2a7fea98 100644 --- a/scripts/create_wheels.py +++ b/scripts/create_wheels.py @@ -1,4 +1,4 @@ -# Copyright (c) 2025 Columnar Technologies. All rights reserved. +# Copyright (c) 2025 Columnar Technologies Inc. All rights reserved. # /// script # requires-python = ">=3.5"