Skip to content

Commit

Permalink
Merge pull request #361 from stefanprodan/copyright-header
Browse files Browse the repository at this point in the history
Adjust copyright year
  • Loading branch information
stefanprodan authored Mar 5, 2024
2 parents 43a99c1 + a88e06e commit 7f033d9
Show file tree
Hide file tree
Showing 13 changed files with 61 additions and 12 deletions.
2 changes: 1 addition & 1 deletion cmd/timoni/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import (

var (
VERSION = "0.0.0-dev.0"
CUE_VERSION = "0.7.0"
CUE_VERSION = "0.7.1"
)

var rootCmd = &cobra.Command{
Expand Down
2 changes: 1 addition & 1 deletion internal/engine/fetcher/fetcher.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Stefan Prodan
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion internal/engine/fetcher/fetcher_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Stefan Prodan
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion internal/engine/fetcher/local.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Stefan Prodan
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion internal/engine/fetcher/local_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Stefan Prodan
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion internal/engine/fetcher/oci.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Stefan Prodan
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion internal/engine/fetcher/oci_test.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Stefan Prodan
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
5 changes: 3 additions & 2 deletions internal/testutils/gomega.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Stefan Prodan
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -17,8 +17,9 @@ limitations under the License.
package testutils

import (
"github.com/onsi/gomega"
"testing"

"github.com/onsi/gomega"
)

type WithT struct {
Expand Down
18 changes: 17 additions & 1 deletion internal/testutils/interface.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package testutils

import (
Expand All @@ -8,7 +24,7 @@ import (
"github.com/onsi/gomega/types"
)

// Implements checks if the object implements the interface
// Implement checks if the object implements the interface
func Implement(expected interface{}) types.GomegaMatcher {
return &implementsMatcher{
expected: expected,
Expand Down
16 changes: 16 additions & 0 deletions internal/testutils/interface_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package testutils

import (
Expand Down
16 changes: 16 additions & 0 deletions internal/testutils/matchers.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package testutils

import (
Expand Down
2 changes: 1 addition & 1 deletion internal/testutils/registry.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright 2023 Stefan Prodan
Copyright 2024 Stefan Prodan
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ site_url: https://timoni.sh
repo_name: stefanprodan/timoni
repo_url: https://github.com/stefanprodan/timoni
edit_uri: ""
copyright: Copyright © 2023 Stefan Prodan
copyright: Copyright © 2024 Stefan Prodan

home:
image: images/logo_icons.svg
Expand Down

0 comments on commit 7f033d9

Please sign in to comment.