Skip to content

Commit

Permalink
Version 0.10
Browse files Browse the repository at this point in the history
Took 14 minutes
  • Loading branch information
Darkyenus committed Dec 28, 2019
1 parent 16f587c commit 234bdd3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# 0.10
# 0.10 2019-12-28
- New distribution scheme - launcher is now a shell script, not a fat-jar
- It is possible to specify scope for `ProjectDependency`
- Rename `BlankJVMProject` to `AggregateJVMProject`
- Rename `libraryDependencyProjectMapper` to `libraryDependencyMapper`
- Minor improvements

# 0.9 2019-07-11
- Improve Maven dependency resolution system
Expand Down
2 changes: 1 addition & 1 deletion build/build.kt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ val CompilerProjects = listOf(
)

const val WemiGroup = "com.darkyen.wemi"
const val ThisWemiVersion = "0.10-SNAPSHOT" // as opposed to the generic WemiVersion, which is the version with which we build
const val ThisWemiVersion = "0.10" // as opposed to the WemiVersion, which is the version with which we build

val distributionArchive by key<Path>("Create a distribution archive for Wemi")

Expand Down
4 changes: 2 additions & 2 deletions ide-plugins/WemiForIntelliJ/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<idea-plugin>
<id>com.darkyen.wemi.intellij</id>
<name>Wemi</name>
<version>0.10-SNAPSHOT</version>
<version>0.10</version>
<vendor email="[email protected]" url="https://github.com/Darkyenus">Jan Polák</vendor>

<description><![CDATA[
Allows to use <a href="https://github.com/Darkyenus/wemi">WEMI build system</a> from the IDE.
Allows to use <a href="https://github.com/Darkyenus/wemi">Wemi build system</a> from the IDE.
<h3>Features:</h3>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
# --print-java-exe - Print path to java executable that would be used and exit
# --print-wemi-home - Print path to directory with Wemi jars and exit

readonly wemi_version='0.10-SNAPSHOT'
readonly wemi_version='0.10'
readonly java_min_version='8'

log() { echo "$@" 1>&2; }
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/wemi/boot/Launch.kt
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const val EXIT_CODE_MACHINE_OUTPUT_KEY_NOT_SET_ERROR = 55
const val EXIT_CODE_MACHINE_OUTPUT_INVALID_COMMAND = 56

/** Version of Wemi build system */
const val WemiVersion:String = "0.10-SNAPSHOT"
const val WemiVersion:String = "0.10"

internal var WemiRunningInInteractiveMode = false
private set
Expand Down

0 comments on commit 234bdd3

Please sign in to comment.