You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,11 +39,11 @@ julia> Pkg.add("SimJulia")
39
39
40
40
#### Release Notes
41
41
42
-
* Version 0.5 does no longer integrate a continuous time solver. A continuous time solver using SimJulia as its discrete event engine can be found in the repository [QuantizedStateSystems](https://github.com/BenLauwens/QuantizedStateSystems.jl.git).
43
-
* Starting from version 0.4.1, [ResumableFunctions](https://github.com/BenLauwens/ResumableFunctions.jl.git) is a separate package exporting the `resumable` and `yield` macro and it is a dependency for `SimJulia`. Users have to take into account the following syntax change:
42
+
* 2017: Version 0.5 does no longer integrate a continuous time solver. A continuous time solver using SimJulia as its discrete event engine can be found in the repository [QuantizedStateSystems](https://github.com/BenLauwens/QuantizedStateSystems.jl.git):
43
+
* Documentation is automated with [Documenter.jl](https://github.com/JuliaDocs/Documenter.jl). (WIP)
44
+
* 2017: Version 0.4.1, [ResumableFunctions](https://github.com/BenLauwens/ResumableFunctions.jl.git) is a separate package exporting the `resumable` and `yield` macro and it is a dependency for `SimJulia`. Users have to take into account the following syntax change:
44
45
*`@yield return arg` is replaced by `@yield arg`
45
-
* Version 0.4 only supports Julia v0.6 and above. It is a complete rewrite: more julian and less pythonic.
46
-
* The discrete event features are on par with version 0.3 and following features are added:
46
+
* 2017: Version 0.4 only supports Julia v0.6 and above. It is a complete rewrite: more julian and less pythonic. The discrete event features are on par with version 0.3 and following features are added:
47
47
* Scheduling of events can be done with `Base.Dates.Datetime` and `Base.Dates.Period`:
48
48
```julia
49
49
using SimJulia
@@ -95,8 +95,10 @@ julia> Pkg.add("SimJulia")
95
95
@coroutine fibonnaci(sim)
96
96
run(sim, 10)
97
97
```
98
-
* Documentation is automated with [Documenter.jl](https://github.com/JuliaDocs/Documenter.jl). (WIP)
99
-
98
+
*2015: Version 0.3 synchronizes the API with SimPy v3 and is Julia v0.3, v0.4 and v0.5 compatible:
99
+
* Documentation is available at [readthedocs](http://simjuliajl.readthedocs.org/en/latest/)
100
+
*2014: Version 0.2 introduces a continuous time solver and is Julia v0.2 and v0.3 comptabile.
101
+
*2013: Version 0.1 is a Julia clone of SimPy v2 and is Julia v0.2 compatible.
0 commit comments