Skip to content

Commit c674181

Browse files
Jaredd94Jared Deiner
and
Jared Deiner
authored
Runtime(v1.0.6) + Tooling(v1.0.4) version bump (#128)
* 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]>
1 parent e656c33 commit c674181

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/ci.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: [ ubuntu-latest, macos-latest ]
18+
os:
19+
- ubuntu-latest
20+
- macos-12 # Later versions of ARM-based macOS runners fail because the hypervisor framework required for Docker is not supported
1921
python: [ "3.8", "3.9", "3.10", "3.11"]
2022
node: [ 20 ]
2123
env:
@@ -47,7 +49,8 @@ jobs:
4749
id: install_mac_docker
4850
if: runner.os == 'macOS'
4951
run: |
50-
brew install docker
52+
brew install docker --cask
53+
brew install colima
5154
# Docker engine is no longer available because of licensing
5255
# Alternative Colima is part of the github macOS runner
5356
# SAM v1.47.0+ needed for colima support, unable to use Python 3.6

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@amazon-web-services-cloudformation/cloudformation-cli-typescript-lib",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"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.",
55
"private": false,
66
"main": "dist/index.js",

python/rpdk/typescript/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import logging
22

3-
__version__ = "1.0.3"
3+
__version__ = "1.0.4"
44

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

0 commit comments

Comments
 (0)