Skip to content

Commit 5e404d4

Browse files
Bump ResumablFunctions, Julia, codecov/codecov-action, and make CI auto-cancel (#132)
--------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Stefan Krastanov <[email protected]>
1 parent 0bac8c7 commit 5e404d4

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.github/workflows/ci-julia-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
JULIA_NUM_THREADS: ${{ matrix.threads }}
4545
JET_TEST: ${{ matrix.jet }}
4646
- uses: julia-actions/julia-processcoverage@v1
47-
- uses: codecov/codecov-action@v4
47+
- uses: codecov/codecov-action@v5
4848
with:
4949
file: lcov.info
5050
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
env:
5757
JULIA_NUM_THREADS: ${{ matrix.threads }}
5858
- uses: julia-actions/julia-processcoverage@v1
59-
- uses: codecov/codecov-action@v4
59+
- uses: codecov/codecov-action@v5
6060
with:
6161
file: lcov.info
6262
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/downgrade.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
version: ['1.9']
18+
version: ['1.10']
1919
steps:
2020
- uses: actions/checkout@v4
2121
- uses: julia-actions/setup-julia@v1

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# News
22

3-
## v1.4.1 - 2024-05-03
3+
## v1.5.0 - 2024-11-23
4+
5+
- Bump ResumableFunctions compat to 1.0.0.
6+
- Bump Julia compat to 1.10
47

8+
## v1.4.1 - 2024-05-03
59

610
- Permit stores `put!` methods to cast the value being placed to the type appropriate for the given store.
711
- Added examples to the documentation that were lost around the time of the rewrite for v0.5 in 2018.

Project.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ uuid = "6ed1e86c-fcaf-46a9-97e0-2b26a2cdb499"
33
keywords = ["discrete-even simulation"]
44
license = "MIT"
55
desc = "A discrete event process oriented simulation framework."
6-
authors = ["Ben Lauwens and SimJulia and ConcurrentSim contributors"]
6+
authors = ["Ben Lauwens and SimJulia, ConcurrentSim, QuantumSavory contributors"]
77
repo = "https://github.com/JuliaDynamics/ConcurrentSim.jl.git"
8-
version = "1.4.1"
8+
version = "1.5.0"
99

1010
[deps]
1111
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
@@ -15,5 +15,5 @@ ResumableFunctions = "c5292f4c-5179-55e1-98c5-05642aab7184"
1515
[compat]
1616
DataStructures = "0.18"
1717
Dates = "1"
18-
ResumableFunctions = "0.6"
19-
julia = "1.6"
18+
ResumableFunctions = "1"
19+
julia = "1.10"

0 commit comments

Comments
 (0)