Skip to content

Commit

Permalink
chore: version bump to 1.102 (#6259)
Browse files Browse the repository at this point in the history
* chore: version bump to 1.102

* Update test_init_command.py

* Update preview_runtimes.py

---------

Co-authored-by: Wing Fung Lau <[email protected]>
  • Loading branch information
hnnasit and hawflau authored Nov 14, 2023
1 parent 5331c82 commit 891fb4c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion samcli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
SAM CLI version
"""

__version__ = "1.101.0"
__version__ = "1.102.0"
2 changes: 1 addition & 1 deletion samcli/lib/utils/preview_runtimes.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
"""
from typing import Set

PREVIEW_RUNTIMES: Set[str] = {"nodejs20.x"}
PREVIEW_RUNTIMES: Set[str] = set()
4 changes: 2 additions & 2 deletions tests/integration/init/test_init_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@ def test_interactive_init(self):
# 1: AWS Quick Start Templates
# 1: Hello World Example
# N: Use the most popular runtime and package type? (Python and zip) [y/N]
# 13: nodejs16.x
# 13: nodejs18.x
# 1: Zip
# 1: Hello World Example
# N: Would you like to enable X-Ray tracing on the function(s) in your application? [y/N]
Expand All @@ -863,7 +863,7 @@ def test_interactive_init(self):
self.assertTrue(expected_output_folder.exists)
self.assertTrue(expected_output_folder.is_dir())
self.assertTrue(Path(expected_output_folder, "hello-world").is_dir())
self.assertTrue(Path(expected_output_folder, "hello-world", "app.js").is_file())
self.assertTrue(Path(expected_output_folder, "hello-world", "app.mjs").is_file())

def test_interactive_init_default_runtime(self):
user_input = """
Expand Down

0 comments on commit 891fb4c

Please sign in to comment.