backport: 16.0.0
This commit is contained in:
parent
eaa9547e66
commit
49630a86db
5 changed files with 56 additions and 16 deletions
|
@ -15,7 +15,7 @@ Changelog structure reference:
|
||||||
|
|
||||||
# ZigBrains
|
# ZigBrains
|
||||||
|
|
||||||
## [Unreleased]
|
## [16.0.0]
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
|
53
CODE_OF_CONDUCT.md
Normal file
53
CODE_OF_CONDUCT.md
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
# Code of Merit
|
||||||
|
|
||||||
|
1. The project creators, lead developers, core team, constitute
|
||||||
|
the managing members of the project and have final say in every decision
|
||||||
|
of the project, technical or otherwise, including overruling previous decisions.
|
||||||
|
There are no limitations to this decisional power.
|
||||||
|
|
||||||
|
2. Contributions are an expected result of your membership on the project.
|
||||||
|
Don't expect others to do your work or help you with your work forever.
|
||||||
|
|
||||||
|
3. All members have the same opportunities to seek any challenge they want
|
||||||
|
within the project.
|
||||||
|
|
||||||
|
4. Authority or position in the project will be proportional
|
||||||
|
to the accrued contribution. Seniority must be earned.
|
||||||
|
|
||||||
|
5. Software is evolutive: the better implementations must supersede lesser
|
||||||
|
implementations. Technical advantage is the primary evaluation metric.
|
||||||
|
|
||||||
|
6. This is a space for technical prowess; topics outside of the project
|
||||||
|
will not be tolerated.
|
||||||
|
|
||||||
|
7. Non technical conflicts will be discussed in a separate space. Disruption
|
||||||
|
of the project will not be allowed.
|
||||||
|
|
||||||
|
8. Individual characteristics, including but not limited to,
|
||||||
|
body, sex, sexual preference, race, language, religion, nationality,
|
||||||
|
or political preferences are irrelevant in the scope of the project and
|
||||||
|
will not be taken into account concerning your value or that of your contribution
|
||||||
|
to the project.
|
||||||
|
|
||||||
|
9. Discuss or debate the idea, not the person.
|
||||||
|
|
||||||
|
10. There is no room for ambiguity: Ambiguity will be met with questioning;
|
||||||
|
further ambiguity will be met with silence. It is the responsibility
|
||||||
|
of the originator to provide requested context.
|
||||||
|
|
||||||
|
11. If something is illegal outside the scope of the project, it is illegal
|
||||||
|
in the scope of the project. This Code of Merit does not take precedence over
|
||||||
|
governing law.
|
||||||
|
|
||||||
|
12. This Code of Merit governs the technical procedures of the project not the
|
||||||
|
activities outside of it.
|
||||||
|
|
||||||
|
13. Participation on the project equates to agreement of this Code of Merit.
|
||||||
|
|
||||||
|
14. No objectives beyond the stated objectives of this project are relevant
|
||||||
|
to the project. Any intent to deviate the project from its original purpose
|
||||||
|
of existence will constitute grounds for remedial action which may include
|
||||||
|
expulsion from the project.
|
||||||
|
|
||||||
|
This document is adapted from the Code of Merit, version 1.0.
|
||||||
|
See: https://codeofmerit.org/.
|
|
@ -13,7 +13,6 @@ The suffix after the module name signifies which IDE it depends on.
|
||||||
|
|
||||||
- IC: IDEA Community
|
- IC: IDEA Community
|
||||||
- CL: CLion
|
- CL: CLion
|
||||||
- EXT: External maven library
|
|
||||||
|
|
||||||
IC modules MUST NOT depend on CL modules, as this violates the restrictions set forth above.
|
IC modules MUST NOT depend on CL modules, as this violates the restrictions set forth above.
|
||||||
|
|
||||||
|
@ -21,29 +20,17 @@ IC modules MUST NOT depend on CL modules, as this violates the restrictions set
|
||||||
|
|
||||||
### Common (IC)
|
### Common (IC)
|
||||||
|
|
||||||
### LSP-Common (IC)
|
|
||||||
- LSP4J (EXT)
|
|
||||||
|
|
||||||
### LSP (IC)
|
|
||||||
- Apache Commons Lang 3 (EXT)
|
|
||||||
- Common (IC)
|
|
||||||
- LSP-Common (IC)
|
|
||||||
|
|
||||||
### Zig (IC)
|
### Zig (IC)
|
||||||
- Grammarkit (EXT)
|
|
||||||
- Common (IC)
|
- Common (IC)
|
||||||
- LSP (IC)
|
|
||||||
|
|
||||||
### Project (IC)
|
### Project (IC)
|
||||||
- Common (IC)
|
- Common (IC)
|
||||||
- Zig (IC)
|
- Zig (IC)
|
||||||
|
|
||||||
### Zon (IC)
|
### Zon (IC)
|
||||||
- Grammarkit (EXT)
|
|
||||||
- Common (IC)
|
- Common (IC)
|
||||||
|
|
||||||
### Debugger (IU/CL)
|
### Debugger (IU/CL)
|
||||||
- Common (IC)
|
- Common (IC)
|
||||||
- LSP-Common (IC)
|
|
||||||
- Zig (IC)
|
- Zig (IC)
|
||||||
- Project (IC)
|
- Project (IC)
|
|
@ -40,7 +40,7 @@ val clionVersion = properties("clionVersion").get()
|
||||||
val clionPlugins = listOf("com.intellij.clion", "com.intellij.cidr.lang", "com.intellij.cidr.base", "com.intellij.nativeDebug")
|
val clionPlugins = listOf("com.intellij.clion", "com.intellij.cidr.lang", "com.intellij.cidr.base", "com.intellij.nativeDebug")
|
||||||
|
|
||||||
val lsp4jVersion = "0.21.1"
|
val lsp4jVersion = "0.21.1"
|
||||||
val lsp4ijVersion = "0.3.0-20240718-013045"
|
val lsp4ijVersion = "0.3.0"
|
||||||
|
|
||||||
val lsp4ijNightly = lsp4ijVersion.contains("-")
|
val lsp4ijNightly = lsp4ijVersion.contains("-")
|
||||||
val lsp4ijDepString = "${if (lsp4ijNightly) "nightly." else ""}com.jetbrains.plugins:com.redhat.devtools.lsp4ij:$lsp4ijVersion"
|
val lsp4ijDepString = "${if (lsp4ijNightly) "nightly." else ""}com.jetbrains.plugins:com.redhat.devtools.lsp4ij:$lsp4ijVersion"
|
||||||
|
|
|
@ -11,7 +11,7 @@ baseIDE=clion
|
||||||
ideaVersion=2023.3.7
|
ideaVersion=2023.3.7
|
||||||
clionVersion=2023.3.5
|
clionVersion=2023.3.5
|
||||||
|
|
||||||
pluginVersion=16.0.0-pre2
|
pluginVersion=16.0.0
|
||||||
|
|
||||||
# Gradle Releases -> https://github.com/gradle/gradle/releases
|
# Gradle Releases -> https://github.com/gradle/gradle/releases
|
||||||
gradleVersion=8.8
|
gradleVersion=8.8
|
||||||
|
|
Loading…
Add table
Reference in a new issue