Skip to content

Commit

Permalink
Runtime(v1.0.6) + Tooling(v1.0.4) version bump (aws-cloudformation#128)
Browse files Browse the repository at this point in the history
* Runtime(v1.0.6) + Tooling(v1.0.4) version bump

* Update ci workflow to install Docker with --cask option for Mac OSX

* Update ci workflow to install colima for Mac OSX

* Downgrade the macOS version used for Docker tests to macos-13 to fix recent Docker build failures

* Downgrade the macOS version used for Docker tests to macos-12 to fix recent Docker build failures

---------

Co-authored-by: Jared Deiner <[email protected]>
  • Loading branch information
Jaredd94 and Jared Deiner authored May 31, 2024
1 parent e656c33 commit c674181
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
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())

0 comments on commit c674181

Please sign in to comment.