mirror of
https://github.com/lvgl/lvgl.git
synced 2026-06-01 16:58:33 +08:00
Update README.md
This commit is contained in:
committed by
GitHub
parent
13a53d077d
commit
36e825f093
@@ -28,6 +28,7 @@ LVGL provides everything you need to create embedded GUI with easy-to-use graphi
|
|||||||
- [Add LVGL to your project](#add-lvgl-to-your-project)
|
- [Add LVGL to your project](#add-lvgl-to-your-project)
|
||||||
- [Learn the basics](#learn-the-basics)
|
- [Learn the basics](#learn-the-basics)
|
||||||
- [Examples](#examples)
|
- [Examples](#examples)
|
||||||
|
- [Release policy](#release-policy)
|
||||||
- [Contributing](#contributing)
|
- [Contributing](#contributing)
|
||||||
|
|
||||||
|
|
||||||
@@ -262,6 +263,25 @@ label.set_text("Button")
|
|||||||
lv.scr_load(scr)
|
lv.scr_load(scr)
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Release policy
|
||||||
|
LVGL follows the rules of [Semantic versioning](https://semver.org/):
|
||||||
|
- Major versions for incompatible API changes. E.g. v5.0.0, v6.0.0
|
||||||
|
- Minor version for new but backward-compatible functionalities. E.g. v6.1.0, v6.2.0
|
||||||
|
- Patch version for backward-compatible bug fixes. E.g. v6.1.1, v6.1.2
|
||||||
|
|
||||||
|
Branches:
|
||||||
|
- `master` most recent version, patches are merged directly here.
|
||||||
|
- `dev` merge new features here until they are merged into `master`.
|
||||||
|
- `release/vX` there is a branch for every major version to allow adding specific, not forward compatible fixes.
|
||||||
|
|
||||||
|
LVGL has a monthly periodic release cycle.
|
||||||
|
- **1st Tuesday of the month**
|
||||||
|
- Make a major, minor, or patch release from `master` depending on the new features.
|
||||||
|
- After that merge only patches into `master` and add new features into the `dev`.
|
||||||
|
- **3rd Tuesday of the month**
|
||||||
|
- Make a patch release from `master`.
|
||||||
|
- After that merge the new features from the `dev` to `master` branch.
|
||||||
|
- In the rest of the month merge only patches into `master` and new features into `dev` branch.
|
||||||
## Contributing
|
## Contributing
|
||||||
To ask questions please use the [Forum](https://forum.lvgl.io).
|
To ask questions please use the [Forum](https://forum.lvgl.io).
|
||||||
For development-related things (bug reports, feature suggestions) use [GitHub's Issue tracker](https://github.com/lvgl/lvgl/issues).
|
For development-related things (bug reports, feature suggestions) use [GitHub's Issue tracker](https://github.com/lvgl/lvgl/issues).
|
||||||
|
|||||||
Reference in New Issue
Block a user