Skip to content

Commit

Permalink
Merge pull request #5 from mpimd-csc/fix-julia-v1.6
Browse files Browse the repository at this point in the history
Fix Julia v1.6
  • Loading branch information
jonas-schulze authored Jan 13, 2025
2 parents 730305e + 0c0a7b6 commit 4a18154
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ test:
matrix:
- IMAGE:
- julia:1.6
- julia:1.10
- julia:1
image: $IMAGE
variables:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.3.2

- Fix Julia 1.6 (https://github.com/mpimd-csc/MORWiki.jl/pull/5)

# v0.3.1

- Add `Chip` and `FlowMeter` (https://github.com/mpimd-csc/MORWiki.jl/pull/3)
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 = "MORWiki"
uuid = "4add22a6-c4b7-49d8-833a-0e1707ec89d0"
authors = ["Jonas Schulze <[email protected]> and contributors"]
version = "0.3.1"
version = "0.3.2"

[deps]
CodecZlib = "944b1d66-785c-5afd-91f1-9de20f533193"
Expand All @@ -24,7 +24,7 @@ DataDeps = "0.7.13"
DocStringExtensions = "0.9"
MatrixMarket = "0.5"
SparseArrays = "1"
Tar = "1.10.0"
Tar = "1.9"
UnPack = "1"
ZipArchives = "2"
julia = "1.6"
Expand Down
3 changes: 2 additions & 1 deletion src/oberwolfach/ctf.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ function register_ctf()
rm(tmp)
end

for variants in values(VARIANTS_ctf), (; dep, suffix, hash) in values(variants)
for variants in values(VARIANTS_ctf), sub_variants in values(variants)
@unpack dep, suffix, hash = sub_variants
file = "Convection-dim1e4-$suffix.tgz"
datadep = DataDep(
dep,
Expand Down

2 comments on commit 4a18154

@jonas-schulze
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/122911

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.2 -m "<description of version>" 4a18154dffae99d3921ab0dcfc260b99cac32ec5
git push origin v0.3.2

Please sign in to comment.