Skip to content

Docs changes for 0.36.0 release #2494

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
revert, we are releasing 0.36.0
  • Loading branch information
umbynos committed Jan 11, 2024
commit 8670d8cf58abbeb484932cd02a741ae6dda9f239
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ and many other tools needed to use any Arduino compatible board and platform fro
[![Deploy Website status](https://github.com/arduino/arduino-cli/actions/workflows/deploy-cobra-mkdocs-versioned-poetry.yml/badge.svg)](https://github.com/arduino/arduino-cli/actions/workflows/deploy-cobra-mkdocs-versioned-poetry.yml)
[![Codecov](https://codecov.io/gh/arduino/arduino-cli/branch/master/graph/badge.svg)](https://codecov.io/gh/arduino/arduino-cli)

> **Note:** this software is currently under active development: anything can change at any time, API and UI must be
> considered unstable until we release version 1.0.0.

## Docs

For guidance on installation and development, see the [User documentation].
Expand Down
2 changes: 1 addition & 1 deletion docs/UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Here you can find a list of migration guides to handle breaking changes between releases of the CLI.

## 1.0.0-rc.1
## 0.36.0

### The gRPC `cc.arduino.cli.commands.v1.LoadSketchResponse` message has been changed.

Expand Down
9 changes: 4 additions & 5 deletions docs/versioning.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
# Backward compatibility policy for arduino-cli.

The arduino-cli project follows a strict semantic versioning policy. We are committing not to make breaking changes in
minor releases after the release of version 1.0.0. The project is currently in the production release-candidate phase,
the API is stable and only bug fixes releases are expected before 1.0.0.
minor releases after the release of version 1.0.0. The project is currently in the last period of the Beta phase.

The release rules are the following:

- Alpha phase `0.0.X`: In this phase, the software is going through a quick iteration of the API, each release (with
increments of X) may contain massive and breaking changes.
- Beta phase `0.Y.X`: The software is usable, but the API is still not settled and is under continuous testing and
- **Beta phase `0.Y.X`**: The software is usable, but the API is still not settled and is under continuous testing and
review. Breaking changes are expected. Bug fixes and new features are made as patch releases (with increments of X).
Breaking changes due to API refinements are made as minor releases (with increments of Y).
- **Production release-candidate `1.0.0-rc.X`**: in this phase, the software is considered ready for release and
distributed to the users for final testing. Release candidates (with increments of X) are possible for bug fixes only.
- Production release-candidate `1.0.0-rc.X`: in this phase, the software is considered ready for release and distributed
to the users for final testing. Release candidates (with increments of X) are possible for bug fixes only.
- Production release `1.Y.X`: For the production releases backward compatibility is guaranteed, and all the breaking
changes are cumulated for the next major release (2.0.0). Bug fixes are made as patch releases (with increments of X);
New features are released as minor releases (with increments of Y).
Expand Down