fortrangoingonforty/fgof-devloop / be8dce4

Browse files

Use tagged process dependency

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
be8dce4578d0fc00d3fd42a932b3e1dcf4899780
Parents
4b880d2
Tree
802d2c6

2 changed files

StatusFile+-
M README.md 6 7
M fpm.toml 1 1
README.mdmodified
@@ -21,7 +21,7 @@ Current v1 target:
2121
 
2222
 ## Status
2323
 
24
-Sprint 05 is in place.
24
+`v0.1.0` is released.
2525
 
2626
 Tracked today:
2727
 
@@ -112,14 +112,14 @@ Current semantics:
112112
 ## Dependency
113113
 
114114
 `fgof-devloop` depends on `fgof-watch` `v0.1.0` for watch-event types and
115
-watch option projection, and a pinned `fgof-process` commit for one-shot
116
-process execution. It also depends on `fgof-jobs` `v0.1.0` for long-running
117
-job ownership and wait-state modeling:
115
+watch option projection, `fgof-process` `v0.1.1` for one-shot process
116
+execution, and `fgof-jobs` `v0.1.0` for long-running job ownership and
117
+wait-state modeling:
118118
 
119119
 ```toml
120120
 [dependencies]
121121
 fgof-jobs = { git = "https://github.com/FortranGoingOnForty/fgof-jobs.git", tag = "v0.1.0" }
122
-fgof-process = { git = "https://github.com/FortranGoingOnForty/fgof-process.git", rev = "dd71a77c61985380c7e32f4a719fd8bb247625c7" }
122
+fgof-process = { git = "https://github.com/FortranGoingOnForty/fgof-process.git", tag = "v0.1.1" }
123123
 fgof-watch = { git = "https://github.com/FortranGoingOnForty/fgof-watch.git", tag = "v0.1.0" }
124124
 ```
125125
 
@@ -150,8 +150,7 @@ Tracked examples live in `example/` and are intentionally deterministic:
150150
   transitions
151151
 - does not spawn long-running services or send signals directly; callers own
152152
   launcher policy and use `devloop_job_restart_plan()` as the planning surface
153
-- uses a pinned `fgof-process` commit until the next process patch release tags
154
-  the line-wrapping CI fix
153
+- uses tagged dependencies for the released process, watch, and jobs surfaces
155154
 
156155
 ## License
157156
 
fpm.tomlmodified
@@ -21,5 +21,5 @@ source-form = "free"
2121
 
2222
 [dependencies]
2323
 fgof-jobs = { git = "https://github.com/FortranGoingOnForty/fgof-jobs.git", tag = "v0.1.0" }
24
-fgof-process = { git = "https://github.com/FortranGoingOnForty/fgof-process.git", rev = "dd71a77c61985380c7e32f4a719fd8bb247625c7" }
24
+fgof-process = { git = "https://github.com/FortranGoingOnForty/fgof-process.git", tag = "v0.1.1" }
2525
 fgof-watch = { git = "https://github.com/FortranGoingOnForty/fgof-watch.git", tag = "v0.1.0" }