Skip to content

Commit

Permalink
Update copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
marcauberer committed Jan 2, 2023
1 parent 5415244 commit 794a936
Show file tree
Hide file tree
Showing 130 changed files with 135 additions and 137 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: v1.14.0
version: v1.14.1
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
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-2022 ChilliBits
Copyright (c) 2021-2023 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 @@ -96,4 +96,4 @@ Currently, Spice only offers stable support for x86_64/windows and x86_64/linux.
## Contribute to the project
If you want to contribute to this project, please ensure you comply with the [contribution guidelines](./CONTRIBUTING.md).

© ChilliBits 2021-2022
© ChilliBits 2021-2023
6 changes: 2 additions & 4 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: Spice
site_name: Spice Programming Language
site_url: https://www.spicelang.com
site_description: Spice Programming Language
site_description: The fast, powerful, self-contained and programmer oriented systems language Spice.
site_author: Marc Auberer
copyright: Made with ❤️ by Spice contributors, powered by <a href="https://www.chillibits.com" target="_blank">ChilliBits</a>.
repo_name: spicelang/spice
Expand All @@ -20,7 +20,6 @@ theme:
- navigation.tabs
- content.code.copy
- content.action.edit
- content.action.view
palette:
- media: "(prefers-color-scheme: light)" # Light mode
scheme: default
Expand All @@ -42,7 +41,6 @@ extra_css:

plugins:
- search:
prebuild_index: python
lang:
- en
- minify:
Expand Down
2 changes: 1 addition & 1 deletion media/readme-dockerhub.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ $ docker run --rm -it -v ${pwd}:/spice/out chillibits/spice
## 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-2022
© ChilliBits 2021-2023
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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 ChilliBits. All rights reserved.

#pragma once

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

#include "ASTOptimizer.h"

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

#pragma once

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

#include "BorrowChecker.h"

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

#pragma once

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

#include "Lifecycle.h"

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

#pragma once

Expand Down
6 changes: 3 additions & 3 deletions src/cli/CLIInterface.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 ChilliBits. All rights reserved.

#include "CLIInterface.h"

Expand All @@ -16,12 +16,12 @@ void CLIInterface::createInterface() {
app.allow_windows_style_options();
app.allow_extras();
app.positionals_at_end();
app.footer("(c) Marc Auberer 2021-2022");
app.footer("(c) Marc Auberer 2021-2023");

// Add version flag
std::string versionName = std::string(SPICE_VERSION);
std::string builtBy = std::string(SPICE_BUILT_BY);
std::string versionString = "Spice version " + versionName + "\nbuilt by: " + builtBy + "\n\n(c) Marc Auberer 2021-2022";
std::string versionString = "Spice version " + versionName + "\nbuilt by: " + builtBy + "\n\n(c) Marc Auberer 2021-2023";
app.set_version_flag("--version,-v", versionString);

// Create sub-commands
Expand Down
2 changes: 1 addition & 1 deletion src/cli/CLIInterface.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 ChilliBits. All rights reserved.

#pragma once

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

#include "EscapeAnalyzer.h"

Expand Down
2 changes: 1 addition & 1 deletion src/escapeanalyzer/EscapeAnalyzer.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 ChilliBits. All rights reserved.

#pragma once

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

#include "IRError.h"

Expand Down
2 changes: 1 addition & 1 deletion src/exception/IRError.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 ChilliBits. All rights reserved.

#pragma once

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

#include "ThreadFactory.h"

Expand Down
2 changes: 1 addition & 1 deletion src/global/ThreadFactory.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2021-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 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-2022 ChilliBits. All rights reserved.
// Copyright (c) 2021-2023 ChilliBits. All rights reserved.

#include "IRGenerator.h"

Expand Down
Loading

0 comments on commit 794a936

Please sign in to comment.