Version number for a pre release software that will be the second major release

If we have an app that is not finished already, but we release it, we use a version number like 0.x.x and when it is finished it will be published as 1.0.0.

Now the app’s latest version is 1.2.6 and since then it wasn’t updated for years, because we rewrite it from scratch and that will be the 2.0.0 release, but we would like to make a pre release like we did it with the first version. What should be the version number?

1.x.x would indicate that it is an update for the first major version, and 2.x.x would say it is a finished second major version. Both statements would be wrong. What to do?

There are pre-release phases for software products: alpha, beta, and release candidate. It depends on how mature your product is. An alpha release would tend to indicate that the application is still relatively unstable and perhaps buggy. This would be anything up to a feature-complete release. As you move toward feature-complete, you may want to consider your software a beta release. It may still be buggy at this point, but it should be stable enough for demonstrations and previews. A release candidate should be feature complete, but may still have some bugs.

You would apply these to your “2.0.0” version. So your “2.0.0 Alpha” is an alpha release of what will become 2.0.0 software. You can change Alpha to Beta and then Release Candidate (or RC) as your software becomes more stable. Sometimes, instead of spelling the words out, it is shortened to “2.0.0a”, “2.0.0b”, and “2.0.0rc” for the alpha, beta, and release candidate versions of 2.0.0. If you did multiple builds that could be considered a release, you could also append a number after the letters. For example, if you did three beta releases leading up to 2.0.0, they would be 2.0.0b, 2.0.0b1, and so on (you could index from 0 or even call your first beta b1, if you wanted).

Wikipedia also has a length discussion of software versioning. It discusses various versioning schemes used by different applications. It includes a brief discussion of pre-release versions as well. Considering that this is a rewrite of an application, you could throw away the old versioning scheme and choose a more appropriate one if you wanted to.

1

You may follow the:

major.minor[.build[.revision]]

schema, which means that the version 2.0.0 will be the first build of the rewritten project. It doesn’t matter if it is released in production, given to the testers or kept in secrecy.

Then, an actual pre-release may be, for instance, 2.0.19.527, and the actual public release may be 2.0.37.692. This will clearly indicate to your customers that this is a second version of your product, given that nobody will ask for 2.0.37.691 or 2.0.36.

This is also used in Windows: the actual release version is never n.0.0.0. For instance, from Wikipedia:

A post-RTM build of Windows 8, build 9364, leaked in March 2013.

or:

Build 9600 of Windows 8.1 was released to OEM hardware partners on August 27, 2013.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Version number for a pre release software that will be the second major release

If we have an app that is not finished already, but we release it, we use a version number like 0.x.x and when it is finished it will be published as 1.0.0.

Now the app’s latest version is 1.2.6 and since then it wasn’t updated for years, because we rewrite it from scratch and that will be the 2.0.0 release, but we would like to make a pre release like we did it with the first version. What should be the version number?

1.x.x would indicate that it is an update for the first major version, and 2.x.x would say it is a finished second major version. Both statements would be wrong. What to do?

There are pre-release phases for software products: alpha, beta, and release candidate. It depends on how mature your product is. An alpha release would tend to indicate that the application is still relatively unstable and perhaps buggy. This would be anything up to a feature-complete release. As you move toward feature-complete, you may want to consider your software a beta release. It may still be buggy at this point, but it should be stable enough for demonstrations and previews. A release candidate should be feature complete, but may still have some bugs.

You would apply these to your “2.0.0” version. So your “2.0.0 Alpha” is an alpha release of what will become 2.0.0 software. You can change Alpha to Beta and then Release Candidate (or RC) as your software becomes more stable. Sometimes, instead of spelling the words out, it is shortened to “2.0.0a”, “2.0.0b”, and “2.0.0rc” for the alpha, beta, and release candidate versions of 2.0.0. If you did multiple builds that could be considered a release, you could also append a number after the letters. For example, if you did three beta releases leading up to 2.0.0, they would be 2.0.0b, 2.0.0b1, and so on (you could index from 0 or even call your first beta b1, if you wanted).

Wikipedia also has a length discussion of software versioning. It discusses various versioning schemes used by different applications. It includes a brief discussion of pre-release versions as well. Considering that this is a rewrite of an application, you could throw away the old versioning scheme and choose a more appropriate one if you wanted to.

1

You may follow the:

major.minor[.build[.revision]]

schema, which means that the version 2.0.0 will be the first build of the rewritten project. It doesn’t matter if it is released in production, given to the testers or kept in secrecy.

Then, an actual pre-release may be, for instance, 2.0.19.527, and the actual public release may be 2.0.37.692. This will clearly indicate to your customers that this is a second version of your product, given that nobody will ask for 2.0.37.691 or 2.0.36.

This is also used in Windows: the actual release version is never n.0.0.0. For instance, from Wikipedia:

A post-RTM build of Windows 8, build 9364, leaked in March 2013.

or:

Build 9600 of Windows 8.1 was released to OEM hardware partners on August 27, 2013.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa

Version number for a pre release software that will be the second major release

If we have an app that is not finished already, but we release it, we use a version number like 0.x.x and when it is finished it will be published as 1.0.0.

Now the app’s latest version is 1.2.6 and since then it wasn’t updated for years, because we rewrite it from scratch and that will be the 2.0.0 release, but we would like to make a pre release like we did it with the first version. What should be the version number?

1.x.x would indicate that it is an update for the first major version, and 2.x.x would say it is a finished second major version. Both statements would be wrong. What to do?

There are pre-release phases for software products: alpha, beta, and release candidate. It depends on how mature your product is. An alpha release would tend to indicate that the application is still relatively unstable and perhaps buggy. This would be anything up to a feature-complete release. As you move toward feature-complete, you may want to consider your software a beta release. It may still be buggy at this point, but it should be stable enough for demonstrations and previews. A release candidate should be feature complete, but may still have some bugs.

You would apply these to your “2.0.0” version. So your “2.0.0 Alpha” is an alpha release of what will become 2.0.0 software. You can change Alpha to Beta and then Release Candidate (or RC) as your software becomes more stable. Sometimes, instead of spelling the words out, it is shortened to “2.0.0a”, “2.0.0b”, and “2.0.0rc” for the alpha, beta, and release candidate versions of 2.0.0. If you did multiple builds that could be considered a release, you could also append a number after the letters. For example, if you did three beta releases leading up to 2.0.0, they would be 2.0.0b, 2.0.0b1, and so on (you could index from 0 or even call your first beta b1, if you wanted).

Wikipedia also has a length discussion of software versioning. It discusses various versioning schemes used by different applications. It includes a brief discussion of pre-release versions as well. Considering that this is a rewrite of an application, you could throw away the old versioning scheme and choose a more appropriate one if you wanted to.

1

You may follow the:

major.minor[.build[.revision]]

schema, which means that the version 2.0.0 will be the first build of the rewritten project. It doesn’t matter if it is released in production, given to the testers or kept in secrecy.

Then, an actual pre-release may be, for instance, 2.0.19.527, and the actual public release may be 2.0.37.692. This will clearly indicate to your customers that this is a second version of your product, given that nobody will ask for 2.0.37.691 or 2.0.36.

This is also used in Windows: the actual release version is never n.0.0.0. For instance, from Wikipedia:

A post-RTM build of Windows 8, build 9364, leaked in March 2013.

or:

Build 9600 of Windows 8.1 was released to OEM hardware partners on August 27, 2013.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật