Skip to content

Commit

Permalink
Bump version to 0.1.1+dev
Browse files Browse the repository at this point in the history
  • Loading branch information
goerz committed Jun 25, 2024
2 parents 122a669 + 9d0977b commit 35d9751
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
arch: x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/cache@v1
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/cache@v2
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
Expand All @@ -42,16 +42,17 @@ jobs:
- run: |
# Summarize coverage
julia --project=test -e 'using QuantumControlTestUtils; show_coverage();'
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
file: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/cache@v1
- uses: julia-actions/setup-julia@v1
- uses: julia-actions/cache@v2
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- run: |
Expand All @@ -71,7 +72,7 @@ jobs:
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
- name: Zip the HTML documentation
run: zip-folder --debug --auto-root --outfile "docs.zip" docs/build
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
name: Upload documentation artifacts
with:
name: ParameterizedQuantumControl
Expand All @@ -85,7 +86,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
7 changes: 4 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ParameterizedQuantumControl"
uuid = "409be4c9-afa4-4246-894e-472b92a1ed06"
authors = ["Michael Goerz <[email protected]>"]
version = "0.1.0"
version = "0.1.1+dev"

[deps]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand All @@ -18,6 +18,7 @@ ParameterizedQuantumControlOptimizationExt = "Optimization"

[compat]
LinearAlgebra = "1"
QuantumControlBase = "0.9.0"
QuantumGradientGenerators = "0.1.4"
Optimization = "3"
QuantumControlBase = ">=0.9.0"
QuantumGradientGenerators = ">=0.1.4"
julia = "1.9"

0 comments on commit 35d9751

Please sign in to comment.