Skip to content

Commit

Permalink
Bump version to 0.3.1+dev
Browse files Browse the repository at this point in the history
  • Loading branch information
goerz committed Sep 4, 2024
2 parents f307234 + fa9a081 commit 6071d15
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 16 deletions.
22 changes: 8 additions & 14 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,13 @@ on:
push:
branches:
- master
- dev
- 'release-*'
tags:
- '*'
pull_request:
branches:
- master
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
env:
GKSwstype: 100
JULIA_PKG_PRECOMPILE_AUTO: false
Expand All @@ -30,12 +26,12 @@ jobs:
version: '1'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v1
- run: |
# Instantiate Pkg
- uses: julia-actions/cache@v2
- name: "Instantiate test environment"
run: |
wget https://raw.githubusercontent.com/JuliaQuantumControl/JuliaQuantumControl/master/scripts/installorg.jl
julia --project=test installorg.jl
- name: "Run tests"
Expand All @@ -45,16 +41,14 @@ jobs:
docs:
name: Documentation
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- uses: julia-actions/cache@v2
- name: "Instantiate test environment"
run: |
# Instantiate Pkg
wget https://raw.githubusercontent.com/JuliaQuantumControl/JuliaQuantumControl/master/scripts/installorg.jl
julia --project=test installorg.jl
- name: "Build documentation"
Expand All @@ -67,7 +61,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- name: Get codestyle settings
Expand Down
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "QuantumControlTestUtils"
uuid = "d3fd27c9-1dfb-4e67-b0c0-90d0d87a1e48"
authors = ["Michael Goerz <mail@michaelgoerz.net"]
version = "0.3.0+dev"
version = "0.3.1+dev"

[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Expand All @@ -23,7 +23,7 @@ LocalCoverage = "0.6"
Logging = "1"
PrettyTables = "0.12, 1.0, 2"
Printf = "1"
QuantumControl = ">=0.10.0"
QuantumControl = ">=0.11.0"
Random = "1"
SparseArrays = "1"
julia = "1.9"

0 comments on commit 6071d15

Please sign in to comment.