history, err := stub.GetHistoryForKey(key_value)
for history.HasNext() {
    modification, err := history.Next()
    if err != nil {
        fmt.Println(err.Error())
        return shim.Error(err.Error())
    }
    fmt.Println("Returning information about", string(modification.Value))
}