Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ object Compiler : Dependency() {
* The version of the Compiler dependencies.
*/
override val version: String
private const val fallbackVersion = "2.0.0-SNAPSHOT.064"
private const val fallbackVersion = "2.0.0-SNAPSHOT.065"

/**
* The distinct version of the Compiler used by other build tools.
Expand All @@ -81,7 +81,7 @@ object Compiler : Dependency() {
* transitive dependencies, this is the version used to build the project itself.
*/
val dogfoodingVersion: String
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.064"
private const val fallbackDfVersion = "2.0.0-SNAPSHOT.065"

/**
* The artifact for the Compiler Gradle plugin.
Expand Down
2 changes: 1 addition & 1 deletion docs/_examples
23 changes: 12 additions & 11 deletions docs/_preview/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/_preview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"devDependencies": {
"@fullhuman/postcss-purgecss": "^7.0.2",
"autoprefixer": "^10.4.22",
"postcss": "^8.5.10",
"postcss": "^8.5.23",
Comment thread
alexander-yevsyukov marked this conversation as resolved.
"postcss-cli": "^11.0.1",
"postcss-discard-comments": "^7.0.5"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ through Gradle's `extra` properties:
end="validationVersion">
</embed-code>
```kotlin
extra.set("validationVersion", "2.0.0-SNAPSHOT.461")
extra.set("validationVersion", "2.0.0-SNAPSHOT.462")
```

The root build script applies this file under `allprojects { … }` and assigns
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ relevant declarations are in `docs/_preview/package.json`:
"devDependencies": {
"@fullhuman/postcss-purgecss": "^7.0.2",
"autoprefixer": "^10.4.22",
"postcss": "^8.5.10",
"postcss": "^8.5.23",
"postcss-cli": "^11.0.1",
"postcss-discard-comments": "^7.0.5"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Add the Validation plugin to the build.
```kotlin
plugins {
module
id("io.spine.validation") version "2.0.0-SNAPSHOT.461"
id("io.spine.validation") version "2.0.0-SNAPSHOT.462"
}
```

Expand Down
Loading
Loading