diff --git a/.github/utils/cookiecutter_values.yaml b/.github/utils/cookiecutter_values.yaml index 34797d0..876849b 100644 --- a/.github/utils/cookiecutter_values.yaml +++ b/.github/utils/cookiecutter_values.yaml @@ -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 diff --git a/README.md b/README.md index 6ac3ff0..55de750 100644 --- a/README.md +++ b/README.md @@ -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.

**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` | diff --git a/cookiecutter.json b/cookiecutter.json index 311c97a..75a40b0 100644 --- a/cookiecutter.json +++ b/cookiecutter.json @@ -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 }}" diff --git a/{{ cookiecutter.project_slug }}/mkdocs.yml b/{{ cookiecutter.project_slug }}/mkdocs.yml index 909b5ed..1811082 100644 --- a/{{ cookiecutter.project_slug }}/mkdocs.yml +++ b/{{ cookiecutter.project_slug }}/mkdocs.yml @@ -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 © 2022 {{ cookiecutter.organization }} +copyright: Copyright © 2023 {{ cookiecutter.organization }} theme: name: material diff --git a/{{ cookiecutter.project_slug }}/{{ cookiecutter.package_name }}/__init__.py b/{{ cookiecutter.project_slug }}/{{ cookiecutter.package_name }}/__init__.py index 5fe6035..b2b40c4 100644 --- a/{{ cookiecutter.project_slug }}/{{ cookiecutter.package_name }}/__init__.py +++ b/{{ cookiecutter.project_slug }}/{{ cookiecutter.package_name }}/__init__.py @@ -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 }}"