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

Runtime(v1.0.6) + Tooling(v1.0.4) version bump #128

Merged
merged 5 commits into from
May 31, 2024
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
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest ]
os:
- ubuntu-latest
- macos-12 # Later versions of ARM-based macOS runners fail because the hypervisor framework required for Docker is not supported
python: [ "3.8", "3.9", "3.10", "3.11"]
node: [ 20 ]
env:
Expand Down Expand Up @@ -47,7 +49,8 @@ jobs:
id: install_mac_docker
if: runner.os == 'macOS'
run: |
brew install docker
brew install docker --cask
brew install colima
# Docker engine is no longer available because of licensing
# Alternative Colima is part of the github macOS runner
# SAM v1.47.0+ needed for colima support, unable to use Python 3.6
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@amazon-web-services-cloudformation/cloudformation-cli-typescript-lib",
"version": "1.0.5",
"version": "1.0.6",
"description": "The CloudFormation Resource Provider Development Kit (RPDK) allows you to author your own resource providers that can be used by CloudFormation. This plugin library helps to provide runtime bindings for the execution of your providers by CloudFormation.",
"private": false,
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion python/rpdk/typescript/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import logging

__version__ = "1.0.3"
__version__ = "1.0.4"

logging.getLogger(__name__).addHandler(logging.NullHandler())
Loading