From b869b782836a3236dbc97160d7a20a632c46b69a Mon Sep 17 00:00:00 2001 From: Satoshi Terasaki Date: Sat, 16 Nov 2024 10:09:39 +0900 Subject: [PATCH 1/3] Bump up version to v0.2.0 --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 6be4564..d70179d 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "TCIITensorConversion" uuid = "9f0aa9f4-9415-4e6a-8795-331ebf40aa04" authors = ["Ritter.Marc and contributors"] -version = "0.1.4" +version = "0.2.0" [deps] ITensors = "9136182c-28ba-11e9-034c-db9fb085ebd5" From f7099e6b1649d00f2dc56528e6eb5ab66daaf0cf Mon Sep 17 00:00:00 2001 From: Satoshi Terasaki Date: Sat, 16 Nov 2024 10:11:19 +0900 Subject: [PATCH 2/3] Fix CI --- .github/workflows/CI.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 9f9d79d..6c6a8b8 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -11,6 +11,11 @@ concurrency: # Cancel intermediate builds: only if it is a pull request build. group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} + +permissions: + actions: write + contents: read + jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} @@ -19,7 +24,7 @@ jobs: fail-fast: false matrix: version: - - '1.9' + - 'lts' - '1' os: - ubuntu-latest @@ -33,7 +38,7 @@ jobs: with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: julia-actions/cache@v1 + - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 continue-on-error: ${{ matrix.version == 'nightly' }} From d7a21d1a9e6389a4701687ee7f80658e8ba4b215 Mon Sep 17 00:00:00 2001 From: Satoshi Terasaki Date: Sat, 16 Nov 2024 10:14:51 +0900 Subject: [PATCH 3/3] Revert "Fix CI" This reverts commit f7099e6b1649d00f2dc56528e6eb5ab66daaf0cf. --- .github/workflows/CI.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6c6a8b8..9f9d79d 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -11,11 +11,6 @@ concurrency: # Cancel intermediate builds: only if it is a pull request build. group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} - -permissions: - actions: write - contents: read - jobs: test: name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} @@ -24,7 +19,7 @@ jobs: fail-fast: false matrix: version: - - 'lts' + - '1.9' - '1' os: - ubuntu-latest @@ -38,7 +33,7 @@ jobs: with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: julia-actions/cache@v2 + - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 continue-on-error: ${{ matrix.version == 'nightly' }}