As @ranocha pointed out, the current function names still don't follow the Julia Style Guide, as one should not use camelCase for function names but instead snake_case.
This requires many changes once more such as:
write_Paraview => write_paraview
addBox! => add_box!
I realise that this requires rewriting many scripts, but I guess it is better to implement this now (given that we had breaking changes in 0.6.0 already) then later.
As this is a breaking change, we increase the version number
As @ranocha pointed out, the current function names still don't follow the Julia Style Guide, as one should not use camelCase for function names but instead snake_case. This requires many changes once more such as:
write_Paraview
=>write_paraview
addBox!
=>add_box!
I realise that this requires rewriting many scripts, but I guess it is better to implement this now (given that we had breaking changes in 0.6.0 already) then later. As this is a breaking change, we increase the version number