Skip to content

Commit 1e438f3

Browse files
ShubhamChaturvedi7actions-userShubham Chaturvedi
authored
chore(go): Release kms Go module 0.3.0 (#1746)
Co-authored-by: GitHub Actions <[email protected]> Co-authored-by: Shubham Chaturvedi <[email protected]>
1 parent 0de18ef commit 1e438f3

File tree

6 files changed

+133
-445
lines changed

6 files changed

+133
-445
lines changed

.github/actions/install_smithy_dafny_codegen_dependencies/action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55

66
name: "Install Smithy-Dafny codegen dependencies"
77
description: "Install Java package dependencies required to run Smithy-Dafny codegen"
8+
inputs:
9+
python-version:
10+
description: "Python version to use"
11+
required: false
12+
default: "3.11"
813
runs:
914
using: "composite"
1015
steps:
@@ -26,13 +31,14 @@ runs:
2631
- name: Setup Python, black, and docformatter for code formatting
2732
uses: actions/setup-python@v6
2833
with:
29-
python-version: ${{ matrix.python-version }}
34+
python-version: ${{ inputs.python-version || matrix.python-version }}
3035
architecture: x64
3136
- shell: bash
3237
run: |
3338
python -m pip install --upgrade pip
3439
python -m pip install --upgrade black
3540
python -m pip install --upgrade docformatter
41+
python -m pip install --upgrade tox
3642
3743
- name: Install Go
3844
uses: actions/setup-go@v6

releases/go/kms/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [releases/go/kms/v0.3.0] - 2025-10-24
4+
5+
### Performance
6+
7+
- Improved Dafny Go Array performance
8+
39
## [releases/go/mpl/v0.2.2] - 2025-08-25
410

511
### Maintenance

0 commit comments

Comments
 (0)