Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade copyright notice #694

Merged
merged 2 commits into from
Jan 2, 2025
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 LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021-2024 ChilliBits
Copyright (c) 2021-2025 ChilliBits

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,4 @@ But you can try to compile to the following architectures without any stability
## Contribute to the project
If you want to contribute to this project, please ensure you comply with the [contribution guidelines](./CONTRIBUTING.md).

© ChilliBits 2021-2024
© ChilliBits 2021-2025
2 changes: 1 addition & 1 deletion media/readme-dockerhub.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ $ docker run --rm -it -v ${pwd}:/spice/out chillibits/spice <command>
## Contribute otherwise to the project
If you want to contribute to this project, please ensure you comply with the [contribution guidelines](https://github.com/spicelang/spice/blob/main/CONTRIBUTING.md).

© ChilliBits 2021-2024
© ChilliBits 2021-2025
4 changes: 2 additions & 2 deletions src-bootstrap/driver.spice
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ public type Driver struct {

public p Driver.init() {
this.cliParser = CliParser("Spice", "Spice programming language");
this.cliParser.setFooter("(c) Marc Auberer 2021-2024");
this.cliParser.setFooter("(c) Marc Auberer 2021-2025");

// Add version flag
this.cliParser.setVersion("Spice version 0.20.4\nbuilt by: GitHub Actions\n\n(c) Marc Auberer 2021-2024");
this.cliParser.setVersion("Spice version 0.20.4\nbuilt by: GitHub Actions\n\n(c) Marc Auberer 2021-2025");

// Create sub-commands
this.addBuildSubcommand();
Expand Down
2 changes: 1 addition & 1 deletion src-bootstrap/util/common-util.spice
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ public f<String> getVersionInfo() {
String versionString;
versionString += "spice version" + SPICE_VERSION + " " + SPICE_TARGET_OS + "/" + SPICE_TARGET_ARCH + "\n";
versionString += "built by: " + SPICE_BUILT_BY + "\n\n";
versionString += "(c) Marc Auberer 2021-2024";
versionString += "(c) Marc Auberer 2021-2025";
return versionString;
}
2 changes: 1 addition & 1 deletion src/CompilerPass.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "CompilerPass.h"

Expand Down
2 changes: 1 addition & 1 deletion src/CompilerPass.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/SourceFile.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "SourceFile.h"

Expand Down
2 changes: 1 addition & 1 deletion src/SourceFile.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/Spice.g4
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

grammar Spice;

Expand Down
2 changes: 1 addition & 1 deletion src/ast/ASTBuilder.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "ASTBuilder.h"

Expand Down
2 changes: 1 addition & 1 deletion src/ast/ASTBuilder.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/ast/ASTNodes.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include <ast/ASTNodes.h>

Expand Down
2 changes: 1 addition & 1 deletion src/ast/ASTNodes.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/ast/ASTVisitor.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "ASTVisitor.h"

Expand Down
2 changes: 1 addition & 1 deletion src/ast/ASTVisitor.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/ast/AbstractASTVisitor.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "AbstractASTVisitor.h"

Expand Down
2 changes: 1 addition & 1 deletion src/ast/AbstractASTVisitor.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/ast/Attributes.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/ast/ParallelizableASTVisitor.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "ParallelizableASTVisitor.h"

Expand Down
2 changes: 1 addition & 1 deletion src/ast/ParallelizableASTVisitor.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
4 changes: 2 additions & 2 deletions src/driver/Driver.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "Driver.h"

Expand All @@ -17,7 +17,7 @@ void Driver::init() {
// Allow positional args
app.positionals_at_end();
app.allow_extras(false);
app.footer("(c) Marc Auberer 2021-2024");
app.footer("(c) Marc Auberer 2021-2025");

// Add version flag
app.set_version_flag("--version,-v", CommonUtil::getVersionInfo());
Expand Down
2 changes: 1 addition & 1 deletion src/driver/Driver.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/exception/AntlrThrowingErrorListener.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "AntlrThrowingErrorListener.h"

Expand Down
2 changes: 1 addition & 1 deletion src/exception/AntlrThrowingErrorListener.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/exception/CliError.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "CliError.h"

Expand Down
2 changes: 1 addition & 1 deletion src/exception/CliError.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/exception/CompilerError.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "CompilerError.h"

Expand Down
2 changes: 1 addition & 1 deletion src/exception/CompilerError.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/exception/ErrorManager.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "ErrorManager.h"

Expand Down
2 changes: 1 addition & 1 deletion src/exception/ErrorManager.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/exception/LexerError.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "LexerError.h"

Expand Down
2 changes: 1 addition & 1 deletion src/exception/LexerError.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/exception/LinkerError.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "LinkerError.h"

Expand Down
2 changes: 1 addition & 1 deletion src/exception/LinkerError.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/exception/ParserError.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "ParserError.h"

Expand Down
2 changes: 1 addition & 1 deletion src/exception/ParserError.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/exception/SemanticError.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "SemanticError.h"

Expand Down
2 changes: 1 addition & 1 deletion src/exception/SemanticError.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/global/CacheManager.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "CacheManager.h"

Expand Down
2 changes: 1 addition & 1 deletion src/global/CacheManager.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/global/GlobalResourceManager.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "GlobalResourceManager.h"

Expand Down
2 changes: 1 addition & 1 deletion src/global/GlobalResourceManager.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/global/RuntimeModuleManager.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "RuntimeModuleManager.h"

Expand Down
2 changes: 1 addition & 1 deletion src/global/RuntimeModuleManager.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/global/TypeRegistry.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "TypeRegistry.h"

Expand Down
2 changes: 1 addition & 1 deletion src/global/TypeRegistry.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/importcollector/ImportCollector.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "ImportCollector.h"

Expand Down
2 changes: 1 addition & 1 deletion src/importcollector/ImportCollector.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/DebugInfoGenerator.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "DebugInfoGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/DebugInfoGenerator.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/GenBuiltinFunctions.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/GenControlStructures.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/GenExpressions.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/GenImplicit.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/GenStatements.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/GenTargetDependent.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/GenTopLevelDefinitions.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/GenVTable.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/GenValues.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/IRGenerator.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
2 changes: 1 addition & 1 deletion src/irgenerator/IRGenerator.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2024 ChilliBits. All rights reserved.
// Copyright (c) 2021-2025 ChilliBits. All rights reserved.

#pragma once

Expand Down
Loading
Loading