Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2901)

Unified Diff: dart/tools/VERSION

Issue 103233006: Reapply "Change SDK/DartEditor versioning scheme to semantic versions." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dart/sdk/lib/_internal/pub/test/version_solver_test.dart ('k') | dart/tools/create_editor.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/VERSION
diff --git a/dart/tools/VERSION b/dart/tools/VERSION
index d1ab212748014df37e8ed9ee4bef796f2fd568a6..84a56e3b41ced08fbed6dd683e2d0be6e97747f6 100644
--- a/dart/tools/VERSION
+++ b/dart/tools/VERSION
@@ -1,5 +1,31 @@
+# This file is used by tools/utils.py to generate version strings.
+# The numbers are changed as follows:
+#
+# * New release cycle has begun (i.e. stable release was just made):
+# - increase MINOR by 1
+# - set "PATCH 0"
+# - set "PRERELEASE 0"
+# - set "PRERELEASE_PATCH 0"
+#
+# * Doing a push-to-trunk from bleeding_edge:
+# (The first push-to-trunk in the release cycle will set PRERELEASE to 1)
+# - increase PRERELEASE by 1
+# - set "PRERELEASE_PATCH 0"
+#
+# * Doing a cherry-pick to trunk:
+# - increase PRERELEASE_PATCH by 1
+#
+# * Making a stable release (i.e. new stable branch):
+# - set "PRERELEASE 0"
+# - set "PRERELEASE_PATCH 0"
+# The new stable release version will sort higher than the prereleases.
+#
+# * Making cherry-picks to stable channel
+# - increase PATCH by 1
+#
CHANNEL be
-MAJOR 0
+MAJOR 1
MINOR 1
-BUILD 2
PATCH 0
+PRERELEASE 0
+PRERELEASE_PATCH 0
« no previous file with comments | « dart/sdk/lib/_internal/pub/test/version_solver_test.dart ('k') | dart/tools/create_editor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698