Skip to content

Commit 1437869

Browse files
chore: update copyright to "The Bitcoin Kernel developers"
- Update year to "2023-present" and add headers to all source files - Update LICENSE file accordingly
1 parent 31a411e commit 1437869

32 files changed

+98
-1
lines changed

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2023-present The Bitcoin Kernel developers
2+
# Licensed under the MIT License. See LICENSE file in the project root.
3+
14
[package]
25
name = "bitcoinkernel"
36
version = "0.0.22"

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2023 TheCharlatan
3+
Copyright (c) 2023-present The Bitcoin Kernel developers
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,10 @@ rustup component add llvm-tools-preview
9090
cargo install rustfilt
9191
```
9292

93+
## Copyright
94+
95+
This project is copyright "The Bitcoin Kernel developers" which includes:
96+
- TheCharlatan (2023-present) - Original author and maintainer
97+
- All contributors to this repository
98+
99+
For a complete list of contributors, see: `git log --format='%an' | sort -u`

examples/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2023-present The Bitcoin Kernel developers
2+
# Licensed under the MIT License. See LICENSE file in the project root.
3+
14
[package]
25
name = "examples"
36
version = "0.0.1"

examples/src/silentpaymentscanner.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2023-present The Bitcoin Kernel developers
2+
// Licensed under the MIT License. See LICENSE file in the project root.
3+
14
use std::env;
25
use std::fmt;
36
use std::process;

fuzz/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2023-present The Bitcoin Kernel developers
2+
# Licensed under the MIT License. See LICENSE file in the project root.
3+
14
[package]
25
name = "rust-bitcoinkernel-fuzz"
36
version = "0.0.0"

fuzz/fuzz_targets/fuzz_target_block.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2023-present The Bitcoin Kernel developers
2+
// Licensed under the MIT License. See LICENSE file in the project root.
3+
14
#![no_main]
25

36
use bitcoinkernel::Block;

fuzz/fuzz_targets/fuzz_target_chainman.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2023-present The Bitcoin Kernel developers
2+
// Licensed under the MIT License. See LICENSE file in the project root.
3+
14
#![no_main]
25

36
use std::sync::{Arc, Once};

fuzz/fuzz_targets/fuzz_target_verify.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) 2023-present The Bitcoin Kernel developers
2+
// Licensed under the MIT License. See LICENSE file in the project root.
3+
14
#![no_main]
25

36
use arbitrary::Arbitrary;

libbitcoinkernel-sys/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2023-present The Bitcoin Kernel developers
2+
# Licensed under the MIT License. See LICENSE file in the project root.
3+
14
[package]
25
name = "libbitcoinkernel-sys"
36
version = "0.0.21"

0 commit comments

Comments
 (0)