| OLD | NEW |
| 1 # Fletch uses the same schema as the normal dart sdk for making releases. | 1 # Dartino uses the same schema as the normal dart sdk for making releases. |
| 2 # We currently don't do any stable releases, but we still utilize the same | 2 # We currently don't do any stable releases, but we still utilize the same |
| 3 # structure while working our way towards the first 0.1 stable release. | 3 # structure while working our way towards the first 0.1 stable release. |
| 4 # | 4 # |
| 5 # This also means that we follow the same procedure as can be found here: | 5 # This also means that we follow the same procedure as can be found here: |
| 6 # https://github.com/dart-lang/sdk/wiki/Branches-and-releases | 6 # https://github.com/dart-lang/sdk/wiki/Branches-and-releases |
| 7 # for doing dev releases | 7 # for doing dev releases |
| 8 | 8 |
| 9 # The numbers are changed as follows: | 9 # The numbers are changed as follows: |
| 10 # | 10 # |
| 11 # * New release cycle has begun (i.e. stable release was just made): | 11 # * New release cycle has begun (i.e. stable release was just made): |
| (...skipping 17 matching lines...) Expand all Loading... |
| 29 # | 29 # |
| 30 # * Making cherry-picks to stable channel | 30 # * Making cherry-picks to stable channel |
| 31 # - increase PATCH by 1 | 31 # - increase PATCH by 1 |
| 32 # | 32 # |
| 33 CHANNEL be | 33 CHANNEL be |
| 34 MAJOR 0 | 34 MAJOR 0 |
| 35 MINOR 3 | 35 MINOR 3 |
| 36 PATCH 0 | 36 PATCH 0 |
| 37 PRERELEASE 0 | 37 PRERELEASE 0 |
| 38 PRERELEASE_PATCH 0 | 38 PRERELEASE_PATCH 0 |
| OLD | NEW |