Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,4 @@ For full details, see [Claude Code Statusline Guide](docs/CC_STATUSLINE.md).

## License

Copyright (c) 2025 ShellTime Team. All rights reserved.
Copyright (c) 2026 ShellTime Team. All rights reserved.
2 changes: 1 addition & 1 deletion cmd/cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func main() {
app.Description = "shelltime.xyz CLI for track DevOps works"
app.Usage = "shelltime.xyz CLI for track DevOps works"
app.Version = version
app.Copyright = "Copyright (c) 2025 shelltime.xyz Team"
app.Copyright = "Copyright (c) 2026 shelltime.xyz Team"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

To avoid having to manually update the copyright year annually, consider using the time package to dynamically set the current year. This will ensure the copyright notice is always up-to-date without requiring code changes each year.

Suggested change
app.Copyright = "Copyright (c) 2026 shelltime.xyz Team"
app.Copyright = fmt.Sprintf("Copyright (c) %d shelltime.xyz Team", time.Now().Year())

app.Authors = []*cli.Author{
{
Name: "shelltime.xyz Team",
Expand Down