Skip to content

Commit 72ebb02

Browse files
committed
2 parents 2668123 + cf3b505 commit 72ebb02

File tree

4 files changed

+18
-14
lines changed

4 files changed

+18
-14
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ SPDX-License-Identifier: BSD-3-Clause
88

99
All notable changes to this project will be documented in this file.
1010

11+
## [1.5.2] - 2025-12-08
12+
13+
### Added
14+
15+
- Matrix based prototype
16+
- Gyan reduction prototype
17+
- Improved dt assumption and warnings
18+
19+
### Fixed
20+
21+
- Zero bond length input handling
22+
23+
1124
## [1.5.1] - 2025-11-27
1225

1326
### Added

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN apt-get update \
1515
&& apt-get install -yq build-essential libxml2 \
1616
&& julia --project=@. -e 'import Pkg; Pkg.add("PackageCompiler")'
1717

18-
RUN julia --project=@. -e 'using PackageCompiler; create_app(".", "build", executables=["PeriLab" => "main", "get_examples" => "get_examples", "get_version" => "get_version"], force=true)'
18+
RUN julia --project=@. -e 'using PackageCompiler; create_app(".", "build", executables=["PeriLab" => "main", "get_examples" => "get_examples"], force=true)'
1919

2020
#TODO: use alpine
2121
FROM debian:trixie-slim AS main
@@ -27,11 +27,11 @@ RUN mkdir PeriLab
2727

2828
# Assuming /env/build is the build directory from previous stages
2929
COPY --from=build /env/build /app/PeriLab
30+
COPY Project.toml /app/Project.toml
3031

3132
# Move the build folder, set permissions, and delete the rest
3233
RUN chmod +x /app/PeriLab/bin/PeriLab \
33-
&& chmod +x /app/PeriLab/bin/get_examples \
34-
&& chmod +x /app/PeriLab/bin/get_version
34+
&& chmod +x /app/PeriLab/bin/get_examples
3535

3636
ENV PATH="/app/PeriLab/bin:${PATH}"
3737

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "PeriLab"
22
uuid = "2ecefcea-59f0-46dd-9cfd-1d2b8cc5f112"
33
authors = ["Christian Willberg <christian.willberg@dlr.de>", "Jan-Timo Hesse <jan-timo.hesse@dlr.de>"]
4-
version = "1.5.2"
4+
version = "1.5.3"
55

66
[deps]
77
AbaqusReader = "bc6b9049-e460-56d6-94b4-a597b2c0390d"

src/PeriLab.jl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ import .Logging_Module
5959
import .IO
6060
using .Solver_Manager
6161

62-
PERILAB_VERSION = "1.5.2"
62+
PERILAB_VERSION = "1.5.3"
6363

6464
export main
6565

@@ -207,15 +207,6 @@ function get_examples()
207207
end
208208
end
209209

210-
"""
211-
get_version()
212-
213-
Get the version of the PeriLab package.
214-
"""
215-
function get_version()
216-
return PERILAB_VERSION
217-
end
218-
219210
"""
220211
main(filename::String, output_dir::String="", dry_run::Bool=false, verbose::Bool=false, debug::Bool=false, silent::Bool=false, reload::Bool=false)
221212

0 commit comments

Comments
 (0)