Skip to content

Commit 5f76db4

Browse files
chore: update copyright year and add license headers
- Change copyright from "2023" to "2023-present" - Add MIT license header to all source files
1 parent 3dbf213 commit 5f76db4

31 files changed

+91
-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 TheCharlatan
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 TheCharlatan
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

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 TheCharlatan
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 TheCharlatan
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 TheCharlatan
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 TheCharlatan
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 TheCharlatan
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 TheCharlatan
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 TheCharlatan
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"

libbitcoinkernel-sys/build.rs

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

0 commit comments

Comments
 (0)