Skip to content

Commit 7f033d9

Browse files
authored
Merge pull request #361 from stefanprodan/copyright-header
Adjust copyright year
2 parents 43a99c1 + a88e06e commit 7f033d9

File tree

13 files changed

+61
-12
lines changed

13 files changed

+61
-12
lines changed

Diff for: cmd/timoni/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import (
3333

3434
var (
3535
VERSION = "0.0.0-dev.0"
36-
CUE_VERSION = "0.7.0"
36+
CUE_VERSION = "0.7.1"
3737
)
3838

3939
var rootCmd = &cobra.Command{

Diff for: internal/engine/fetcher/fetcher.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Stefan Prodan
2+
Copyright 2024 Stefan Prodan
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Diff for: internal/engine/fetcher/fetcher_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Stefan Prodan
2+
Copyright 2024 Stefan Prodan
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Diff for: internal/engine/fetcher/local.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Stefan Prodan
2+
Copyright 2024 Stefan Prodan
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Diff for: internal/engine/fetcher/local_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Stefan Prodan
2+
Copyright 2024 Stefan Prodan
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Diff for: internal/engine/fetcher/oci.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Stefan Prodan
2+
Copyright 2024 Stefan Prodan
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Diff for: internal/engine/fetcher/oci_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Stefan Prodan
2+
Copyright 2024 Stefan Prodan
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Diff for: internal/testutils/gomega.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Stefan Prodan
2+
Copyright 2024 Stefan Prodan
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
@@ -17,8 +17,9 @@ limitations under the License.
1717
package testutils
1818

1919
import (
20-
"github.com/onsi/gomega"
2120
"testing"
21+
22+
"github.com/onsi/gomega"
2223
)
2324

2425
type WithT struct {

Diff for: internal/testutils/interface.go

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
Copyright 2024 Stefan Prodan
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
117
package testutils
218

319
import (
@@ -8,7 +24,7 @@ import (
824
"github.com/onsi/gomega/types"
925
)
1026

11-
// Implements checks if the object implements the interface
27+
// Implement checks if the object implements the interface
1228
func Implement(expected interface{}) types.GomegaMatcher {
1329
return &implementsMatcher{
1430
expected: expected,

Diff for: internal/testutils/interface_test.go

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
Copyright 2024 Stefan Prodan
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
117
package testutils
218

319
import (

Diff for: internal/testutils/matchers.go

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
Copyright 2024 Stefan Prodan
3+
4+
Licensed under the Apache License, Version 2.0 (the "License");
5+
you may not use this file except in compliance with the License.
6+
You may obtain a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS,
12+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
See the License for the specific language governing permissions and
14+
limitations under the License.
15+
*/
16+
117
package testutils
218

319
import (

Diff for: internal/testutils/registry.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright 2023 Stefan Prodan
2+
Copyright 2024 Stefan Prodan
33
44
Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.

Diff for: mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ site_url: https://timoni.sh
66
repo_name: stefanprodan/timoni
77
repo_url: https://github.com/stefanprodan/timoni
88
edit_uri: ""
9-
copyright: Copyright © 2023 Stefan Prodan
9+
copyright: Copyright © 2024 Stefan Prodan
1010

1111
home:
1212
image: images/logo_icons.svg

0 commit comments

Comments
 (0)