ci: 11.0.0

This commit is contained in:
FalsePattern 2024-02-01 19:41:25 +01:00
parent fca2acf554
commit d9c3fa80aa
Signed by: falsepattern
GPG key ID: E930CDEC50C50E23
3 changed files with 17 additions and 1 deletions

View file

@ -18,11 +18,15 @@ Changelog structure reference:
## [Unreleased] ## [Unreleased]
## [11.0.0]
### Changed ### Changed
- Zon - Zon
- Updated autocompletion to latest as per the zig spec - Updated autocompletion to latest as per the zig spec
- The versioning scheme used for ZigBrains has been revamped. See the plugin's GitHub repo for more information.
### Fixed ### Fixed
- Zig - Zig

View file

@ -34,6 +34,18 @@ and the Eclipse LSP4J project
- And everyone who actively reported issues and helped ironing out all the remaining problems - And everyone who actively reported issues and helped ironing out all the remaining problems
## Versioning scheme
To reduce confusion and to better utilize semver, the plugin uses the following versioning scheme:
X - Major version, incremented any time a relatively large features is added or removed
Y - Minor version, incremented for smaller features or large refactors that don't change user-perceived behaviour
Z - Patch version, incremented only when a fix is purely an internal change and doesn't exceed an arbitrary threshold
of complexity (determined at the discretion of FalsePattern)
Note: before version 11, the version scheme used was 0.X.Y, without separate patch versions.
As this plugin will constantly be evolving together with the zig language, it makes not sense to keep the 0 prefix,
and might as well utilize the full semver string for extra information.
# Description # Description
<!-- Plugin description --> <!-- Plugin description -->

View file

@ -2,7 +2,7 @@ pluginGroup = com.falsepattern.zigbrains
pluginName = ZigBrains pluginName = ZigBrains
pluginRepositoryUrl = https://github.com/FalsePattern/ZigBrains pluginRepositoryUrl = https://github.com/FalsePattern/ZigBrains
# SemVer format -> https://semver.org # SemVer format -> https://semver.org
pluginVersion = 0.10.0 pluginVersion = 11.0.0-233
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 233 pluginSinceBuild = 233