Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
`--template` argument should not apply to support files.
  • Loading branch information
thirtytwobits authored Jun 14, 2023
1 parent 71fdbbc commit c7db1bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: version-check
# Fails the release if the release-tag doesn't match the Nunavut version at that tag.
run: |
$(./.github/verify.py -vv --version-check-only "2.1.0")
$(./.github/verify.py -vv --version-check-only "2.1.1")
- name: lint
run: tox -e lint
- name: test-nnvg
Expand Down
2 changes: 1 addition & 1 deletion src/nunavut/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
.. autodata:: __version__
"""

__version__ = "2.1.0"
__version__ = "2.1.1"
__license__ = "MIT"
__author__ = "OpenCyphal"
__copyright__ = "Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. Copyright (c) 2023 OpenCyphal."
Expand Down
1 change: 1 addition & 0 deletions src/nunavut/jinja/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -783,6 +783,7 @@ class SupportGenerator(CodeGenerator):
"""

def __init__(self, namespace: nunavut.Namespace, **kwargs: typing.Any):
kwargs.update(templates_dir=None)
super().__init__(namespace, builtin_template_path="support", **kwargs)

target_language = self.language_context.get_target_language()
Expand Down

0 comments on commit c7db1bd

Please sign in to comment.