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

Updated current year to 2023 #128

Merged
merged 1 commit into from
Jan 30, 2023
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 .github/utils/cookiecutter_values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ default_context:
email: "Team4.0@SINTEF.no"
version: "0.0.1"
scm_url: "https://github.com/EMMC-ASBL/oteapi-plugin-template-ci"
year: "2022"
year: "2023"
use_git: yes
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ An overview is also provided in the following table:
| `organization` | Your organization. | `SINTEF` |
| `email` | The author's email address. | `firstname.lastname@SINTEF.org` |
| `version` | Start version.<br><br>**Important**: Must follow semantic versioning. For more information see [semver.org](https://semver.org). | `0.0.1` |
| `year` | The current year. | `2022` |
| `year` | The current year. | `2023` |
| `use_git` | Whether or not the generated repository should be initialized using [`git`](https://git-scm.com). | `True` |
| `username` | A public source code platform username, e.g., for [GitHub](https://github.com), [GitLab](https://gitlab.com), [BitBucket](https://bitbucket.org) | `GitHub_GitLab_BitBucket_etc_Username` |
| `scm_url` | The intended or existing URL to the repository's source code. | `https://github.com/FirstnameLastname/oteapi-myplugin` |
Expand Down
2 changes: 1 addition & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"organization": "SINTEF",
"email": "firstname.lastname@{{ cookiecutter.organization }}.org",
"version": "0.0.1",
"year": "2022",
"year": "2023",
"use_git": true,
"username": "{{ '' if cookiecutter.use_git in ('y','Y','yes','Yes','YES','true','True','TRUE','on','On','ON') else 'NOT APPLICABLE ' }}GitHub_GitLab_BitBucket_etc_Username",
"scm_url": "{{ '' if cookiecutter.use_git in ('y','Y','yes','Yes','YES','true','True','TRUE','on','On','ON') else 'NOT APPLICABLE ' }}https://github.com/{{ cookiecutter.username }}/{{ cookiecutter.project_slug }}"
Expand Down
2 changes: 1 addition & 1 deletion {{ cookiecutter.project_slug }}/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
site_name: "{{ cookiecutter.project_name }}"
site_description: Documentation for the {{ cookiecutter.project_name }} package
site_url: https://{{ cookiecutter.username }}.github.io/{{ cookiecutter.project_slug }}
copyright: Copyright &copy; 2022 {{ cookiecutter.organization }}
copyright: Copyright &copy; 2023 {{ cookiecutter.organization }}

theme:
name: material
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A plugin for OTEAPI.

Authored by {{ cookiecutter.author }}, {{ cookiecutter.organization }}, {{ cookiecutter.year }}
Created from cookiecutter-oteapi-plugin, SINTEF, 2022
Created from cookiecutter-oteapi-plugin, SINTEF, 2023
"""

__version__ = "{{ cookiecutter.version }}"