Skip to content

Commit 9dd8a24

Browse files
authored
fix: 🔖 fix release v0.2.3 (#16)
* fix: 🔖 fix release v0.2.3 * fix: 🔖 downgrade `LinearAlgebra.jl` version
1 parent 8f5b487 commit 9dd8a24

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.github/workflows/TagBot.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ on:
44
types:
55
- created
66
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: "14"
710
jobs:
811
TagBot:
912
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
@@ -12,4 +15,4 @@ jobs:
1215
- uses: JuliaRegistries/TagBot@v1
1316
with:
1417
token: ${{ secrets.GITHUB_TOKEN }}
15-
ssh: ${{ secrets.DOCUMENTER_KEY }}
18+
ssh: ${{ secrets.DOCUMENTER_KEY }}

Project.toml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "RayTracing"
22
uuid = "3007c720-8091-40db-9339-e09e4eb4c7ea"
33
authors = ["Ramiro Vignolo <ramirovignolo@gmail.com>"]
4-
version = "0.2.4"
4+
version = "0.2.3"
55

66
[deps]
77
Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e"
@@ -13,13 +13,14 @@ StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
1313
UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"
1414

1515
[compat]
16-
Gridap = ">=0.19"
17-
IntervalSets = ">=0.7"
18-
NearestNeighbors = ">=0.4"
19-
RecipesBase = ">=1.3"
20-
StaticArrays = ">=1.9"
21-
UnPack = ">=1.0"
22-
julia = ">=1.5"
16+
Gridap = "0.19"
17+
IntervalSets = "0.7"
18+
LinearAlgebra = "1.9"
19+
NearestNeighbors = "0.4"
20+
RecipesBase = "1.3"
21+
StaticArrays = "1.9"
22+
UnPack = "1.0"
23+
julia = "1.6"
2324

2425
[extras]
2526
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RayTracing.jl implements the **Method of Characteristics (MOC)** for solving the
1818

1919
## Demo
2020

21-
This demo showcases the ray tracing algorithm. The first animation shows ray tracing without the mesh, while the second shows ray tracing with the mesh overlay. The mesh uses a simple pin-cell geometry, demonstrating how superposition of tracks over the mesh generates segments.
21+
This demo showcases the ray tracing algorithm. The first animation shows ray tracing without the mesh, while the second shows ray tracing with the mesh overlay. The mesh is a simple pin-cell geometry, demonstrating how superposition of tracks over the mesh generates segments.
2222

2323
<p align="center">
2424
<img width="400" src="demo/cyclic_track_no_mesh.gif" alt="Cyclic Ray Tracing">

0 commit comments

Comments
 (0)