Skip to content
This repository was archived by the owner on Nov 20, 2025. It is now read-only.

Commit 4abf4f9

Browse files
committed
Bump version to 0.1.2 and update version badge
1 parent 76ea8a4 commit 4abf4f9

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

β€ŽProject.tomlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "SimulationLogging"
22
uuid = "d006b024-b550-4554-9ca0-d488e688d825"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
authors = ["ZenanH <zenan.huo@outlook.com>"]
55

66
[deps]

β€ŽREADME.mdβ€Ž

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SimulationLogging.jl
22

33
[![CI](https://github.com/LandslideSIM/SimulationLogging.jl/actions/workflows/ci.yml/badge.svg)](https://github.com/LandslideSIM/SimulationLogging.jl/actions/workflows/ci.yml)
4-
[![Version](https://img.shields.io/badge/version-v0.1.1-pink)]()
4+
[![Version](https://img.shields.io/badge/version-v0.1.2-pink)]()
55
[![AI](https://img.shields.io/badge/Claude_Sonnet-v4.5-orange)](https://www.anthropic.com/news/claude-sonnet-4-5)
66

77
A lightweight and elegant progress bar for Julia, designed for long-running simulations and computations.
@@ -50,16 +50,18 @@ for i in 1:100
5050
end
5151

5252
# Finish and show final result
53+
prog.current = 100 # make sure 100% completed
54+
show_progress(stdout, prog) # make sure it shows "100%" in the end
5355
end_progress(stdout, prog)
5456
```
5557

5658
**Output:**
5759
```
58-
[ Info: processing ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ 41% ETA: 00:00:03 s
60+
[ Info: processing 41% ━━━━━━━━━━━━━━━━╺━━━━━━━━━━━━━━━━━━━━━━━ ETA: 00:00:03 s
5961
6062
... (refresh in-place)
6163
62-
[ Info: processing ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Time: 00:00:05 s
64+
[ Info: processing 100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Time: 00:00:05 s
6365
```
6466

6567
## API Reference

0 commit comments

Comments
Β (0)