Previously, G4GenericIon was derived from G4VIon, which overloaded GetAtomicMass() to return the baryon number. G4GenericIon now inherits from G4ParticleDefinition, whose GetAtomicMass() returns a (default) atomic mass number of 0. This makes G4RadioactiveDecay::IsApplicable(G4GenericIon*) fail (atomic mass is out-of-range), and hence renders G4RadioactiveDecay essentially unusable: any physics lists attempting to add G4RadioactiveDecay to ions will exit with an error. A fix users can apply until this bug is fixed is to get the G4GenericIon and call SetAtomicMass(1) before adding G4RadioactiveDecay.
Fixed tag of particles-V08-00-01 will be included next release. Before the next release, users need to call SetAtomicMass(1) for GenericIon before adding G4RadioactiveDecay.