Does anyone know of a tool which would (recursively) bump versions of dependents of a package (within a workspace) once that package's version was bumped?
Example:
0. Initial state:
A 1.0.0
B 1.0.0 {dep = A}
C 1.0.0 {dep = B}
D 1.0.0
1. Action:
A 1.0.0 --> A 1.0.1
2. Next state:
A 1.0.1
B 1.0.1 {dep = A}
C 1.0.1 {dep = B}
D 1.0.0