Skip to content

Commit 7dac2f3

Browse files
authored
Merge pull request #172 from kcl-lang/bump-version-0.11.0
chore: bump version 0.11.0
2 parents d5716d5 + 2285634 commit 7dac2f3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+46581
-58
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN yum -y install git
99

1010
RUN yum -y install python3
1111

12-
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
12+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.81.0
1313

1414
ENV PATH="/root/.cargo/bin:${PATH}"
1515

.github/workflows/cpp-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install Rust
4242
uses: actions-rs/toolchain@v1
4343
with:
44-
toolchain: 1.79
44+
toolchain: 1.81
4545
override: true
4646
components: clippy, rustfmt
4747
- name: Build

.github/workflows/dotnet-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,4 @@ jobs:
176176
if: "startsWith(github.ref, 'refs/tags/')"
177177
run: |
178178
cd dotnet/KclLib/bin/Release
179-
dotnet nuget push KclLib.0.11.0-alpha.1.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
179+
dotnet nuget push KclLib.0.11.0.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json

.github/workflows/nodejs-test.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install rust toolchain
3333
uses: actions-rs/toolchain@v1
3434
with:
35-
toolchain: 1.75
35+
toolchain: 1.81
3636
override: true
3737
components: clippy, rustfmt
3838

.github/workflows/swift-test.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ jobs:
2929
working-directory: "swift"
3030
strategy:
3131
matrix:
32-
os: [macos-13, macos-latest, ubuntu-latest]
32+
# https://github.com/swift-actions/setup-swift/issues/677
33+
# ubuntu-latest is not supported
34+
os: [macos-13, macos-latest, ubuntu-22.04]
3335
runs-on: ${{ matrix.os }}
3436
steps:
3537
- uses: actions/checkout@v4
3638
- name: Install dependencies
37-
if: "contains(matrix.os, 'ubuntu-latest')"
39+
if: "contains(matrix.os, 'ubuntu-22.04')"
3840
run: |
3941
sudo apt-get update
4042
sudo apt-get install libgtest-dev ninja-build

0 commit comments

Comments
 (0)