Skip to content

Commit

Permalink
Merge pull request #172 from kcl-lang/bump-version-0.11.0
Browse files Browse the repository at this point in the history
chore: bump version 0.11.0
  • Loading branch information
zong-zhe authored Dec 19, 2024
2 parents d5716d5 + 2285634 commit 7dac2f3
Show file tree
Hide file tree
Showing 54 changed files with 46,581 additions and 58 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN yum -y install git

RUN yum -y install python3

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

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpp-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.79
toolchain: 1.81
override: true
components: clippy, rustfmt
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
run: |
cd dotnet/KclLib/bin/Release
dotnet nuget push KclLib.0.11.0-alpha.1.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
dotnet nuget push KclLib.0.11.0.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
2 changes: 1 addition & 1 deletion .github/workflows/nodejs-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.75
toolchain: 1.81
override: true
components: clippy, rustfmt

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/swift-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ jobs:
working-directory: "swift"
strategy:
matrix:
os: [macos-13, macos-latest, ubuntu-latest]
# https://github.com/swift-actions/setup-swift/issues/677
# ubuntu-latest is not supported
os: [macos-13, macos-latest, ubuntu-22.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install dependencies
if: "contains(matrix.os, 'ubuntu-latest')"
if: "contains(matrix.os, 'ubuntu-22.04')"
run: |
sudo apt-get update
sudo apt-get install libgtest-dev ninja-build
Expand Down
Loading

0 comments on commit 7dac2f3

Please sign in to comment.