-
Notifications
You must be signed in to change notification settings - Fork 249
Semantic Version numbers
Tom Taylor edited this page Mar 12, 2015
·
7 revisions
Semantic Versioning uses a three-part version number. The major version is incremented for big changes to the API which are not backward-compatible, the minor number is incremented for releases which add new (but crucially, backward-compatible) API features, and the patch number is incremented for minor changes and bug fixes which do not change the software's API.
- A plugin's first major release should have a version number of:
1.0.0
- A subsequent bug-fix should bump the patch version number, resulting in
1.0.1
- A new backward-compatible feature is added, so the minor version is incremented:
1.1.0
(note that the patch number is reset to0
) - Another bug-fix is added, changing the version to:
1.1.1
- Some breaking changes are introduced, so the major version is incremented, and the minor and patch numbers are reset:
2.0.0
- Framework in Five Minutes
- Setting up Your Development Environment
- Manual Installation of the Adapt Framework
- Adapt Command Line Interface
- Common Issues
- Reporting Bugs
- Requesting Features
- Creating Your First Course
- Styling Your Course
- Configuring Your Project with config.json
- Content starts with course.json
- Course Localisation
- Compiling, testing and deploying your Adapt course
- Core Plugins in the Adapt Learning Framework
- Converting a Course from Framework Version 1 to Version 2
- Contributing to the Adapt Project
- Git Flow
- Adapt API
- Adapt Command Line Interface
- Core Events
- Core Model Attributes
- Core Modules
- Web Security Audit
- Peer Code Review
- Plugins
- Developing Plugins
- Developer's Guide: Components
- Developer's Guide: Theme
- Making a theme editable
- Developer's Guide: Menu
- Registering a Plugin
- Semantic Version Numbers
- Core Model Attributes
- Adapt Command Line Interface
- Accessibility v3
- Adapt Framework Right to Left (RTL) Support