Skip to content

Commit

Permalink
v2.1.3 (#13)
Browse files Browse the repository at this point in the history
* Update src

Improve error handling for quadrature and generation of boundary points in unit_square as well as adjust formatting

* Update test

Update test files for mesh, quadrature and pdesytem

* Further enhance testing

* Adjust tests

* Hotfix

* Try fix julia nightly

Try to run pkg resolve on julia 1.9 instead of 1.6

* Update Manifest with 1.10.2

* Update test file

Add julia-actions/cache

* Change test workflow

* Set back Manifest to v1.6.7

* Remove Manifests

* Ingnore Manifests

Ignore local manifest files to be setup automatically during build process and enable CI for all versions
  • Loading branch information
hwyschka authored Apr 16, 2024
1 parent 95c1f8e commit 29331f1
Show file tree
Hide file tree
Showing 24 changed files with 857 additions and 361 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ on:
- master
pull_request:

# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read

jobs:
test:
if: "!contains(github.event.head_commit.message, 'skip test')"
Expand All @@ -16,6 +21,7 @@ jobs:
matrix:
julia-version:
- '1.6'
- '1.10'
- 'nightly'
julia-arch:
- x64
Expand All @@ -34,6 +40,7 @@ jobs:
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
# with:
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
*.vtu
docs/build/
logo/*

Manifest.toml
test/Manifest.toml
185 changes: 0 additions & 185 deletions Manifest.toml

This file was deleted.

2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "MinFEM"
uuid = "bd0dc85c-d10e-11e8-1961-03914cacc29c"
authors = ["Martin Siebenborn <[email protected]>", "Henrik Wyschka <[email protected]>"]
version = "2.1.2"
version = "2.1.3"

[deps]
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Expand Down
2 changes: 2 additions & 0 deletions src/MinFEM.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export unit_square,
deform_mesh

export select_boundaries,
select_domains,
extract_elements,
extract_nodes

Expand All @@ -53,6 +54,7 @@ export quadrature_points,
quadrature_weights,
quadrature_weights_boundary,
quadrature_order,
parentcoordinates,
integral_over_reference_element

export evaluate_quadrature_function,
Expand Down
Loading

2 comments on commit 29331f1

@hwyschka
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/105006

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 v2.1.3 -m "<description of version>" 29331f183b9f954b8f90ec7652875dde8c53f404
git push origin v2.1.3

Please sign in to comment.