Skip to content

Commit

Permalink
bring up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
PetrKryslUCSD committed May 27, 2024
1 parent 92a1add commit 353477a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "FinEtoolsFlexStructures"
uuid = "723391e6-6814-4d1d-921c-018f691214d8"
authors = ["Petr Krysl <[email protected]>"]
version = "3.0.0"
version = "3.0.1"

[deps]
Arpack = "7d9fca2a-8960-54d3-9f78-7d1dccf2cb97"
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@

## News

- 05/27/2024: Fix documentation of test module.
- 02/25/2024: Update for FinEtools 8.
- 12/30/2023: Update for Julia 1.10.
- 12/21/2023: Tutorials merged back into the package tree.


[Past news](#past-news)
Expand Down Expand Up @@ -125,6 +124,8 @@ pictures and time collections (useful for animations) are supported this way.

## <a name="past-news"></a>Past news

- 12/30/2023: Update for Julia 1.10.
- 12/21/2023: Tutorials merged back into the package tree.
- 09/26/2023: Multiple examples revised. Numerous documentation improvements.
- 08/14/2023: Updated for Julia 1.9.2. Revised nomenclature of layup transformation matrices.
- 07/13/2023: Updated for Julia 1.9 and FinEtools 7.
Expand Down
3 changes: 2 additions & 1 deletion test/test_composite_shell_statics.jl
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ end
using .mcompshell1
mcompshell1.test()

module mcompshell2

"""
From Barbero's Finite Element Analysis using Abaqus ... book Example 3.3
Use Abaqus to model a simply supported rectangular plate with dimensions
Expand All @@ -219,6 +219,7 @@ E2 = 9.407 GPa
G23 = 3.308 GPa
ν23 = 0.422
"""
module mcompshell2
using LinearAlgebra: norm, Transpose, mul!, I
using FinEtools
using FinEtools.AlgoBaseModule: solve_blocked!
Expand Down

2 comments on commit 353477a

@PetrKryslUCSD
Copy link
Owner 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/107759

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 v3.0.1 -m "<description of version>" 353477a724caa8c10ebcbeea27d8dcdb9a0cf0c5
git push origin v3.0.1

Please sign in to comment.