English 中文(简体)
What is the difference between release and iteration?
原标题:

The title says What is the difference between release and iteration? Can you explain what the difference is?

最佳回答

Iterations are basically single units of work within your release plan. Typically, your iteration planning phase will be a short (1-4 week) series of tasks that will be done.

After an iteration, there should be a series of acceptance tests. This verifies that the problem domain was handled correctly.

The series of iterations plus acceptance lead to a single release. The release leads to deployment, whether to a customer or internal usage by the end user (which is the critical difference).

Granted, in many teams, the lines can blur a bit, especially if you re releasing every iteration, etc...

问题回答

An iteration can be purely internal. A release goes out to a customer.

We can say in simple words, Release is "What to do" and Iteration is "How to do". Release focuses on User stories and iterations focuses on Tasks decomposed from user stories.





相关问题
How do you estimate an agile project up front? [closed]

When working on fixed price software development projects, I frequently find myself having to estimate the total number of hours a project will take after the price is set, but before the work is ...

Efficient way of calling set of functions in Python

I have a set of functions: functions=set(...) All the functions need one parameter x. What is the most efficient way in python of doing something similar to: for function in functions: function(...

How do I modify an array while I am iterating over it in Ruby?

I m just learning Ruby so apologies if this is too newbie for around here, but I can t work this out from the pickaxe book (probably just not reading carefully enough). Anyway, if I have an array like ...

More efficient method for this calculation?

a = 218500000000 s = 6 f = 2 k = 49 d = k + f + s r = a i = 0 while (r >= d): r = r - d #print ( r = ,r) i = i+1 #print ( i = ,i) print (i) I think it does what I expect it to, but ...

Java: JGraphT: Iterate through nodes

I m trying to iterate through all nodes, so I can print them out for graphviz. What is the best way to do that using the JGraphT library? public static void main(String[] args) { UndirectedGraph&...

Iterating over arrays in haskell

My problem is that I need to iterate over array and calculate some value depend on every element. I was looking for some fold-like function for arrays, but standard library seems to be very useless ...

热门标签