Skip to content

Commit 470a512

Browse files
committed
Merge pull request scala#3672 from retronym/topic/binary-version
Further tweak version of continuations plugin in scala-dist.pom
2 parents ceb9925 + 2ba0453 commit 470a512

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

build-ant-macros.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,7 @@
432432
<filterset>
433433
<filter token="VERSION" value="${osgi.version.number}"/>
434434
<filter token="SCALA_BINARY_VERSION" value="${scala.binary.version}"/>
435+
<filter token="SCALA_FULL_VERSION" value="${scala.full.version}"/>
435436
<filter token="SCALA_COMPILER_DOC_VERSION" value="${scala-compiler-doc.version.number}"/>
436437
<filter token="SCALA_COMPILER_INTERACTIVE_VERSION" value="${scala-compiler-interactive.version.number}"/>
437438
</filterset>
@@ -554,6 +555,7 @@
554555
<filterset>
555556
<filter token="VERSION" value="${maven.version.number}" />
556557
<filter token="SCALA_BINARY_VERSION" value="${scala.binary.version}" />
558+
<filter token="SCALA_FULL_VERSION" value="${scala.full.version}" />
557559
<filter token="XML_VERSION" value="${scala-xml.version.number}" />
558560
<filter token="PARSER_COMBINATORS_VERSION" value="${scala-parser-combinators.version.number}" />
559561
<filter token="CONTINUATIONS_PLUGIN_VERSION" value="${scala-continuations-plugin.version.number}" />

src/build/maven/scala-dist-pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@
4141
</dependency>
4242
<dependency>
4343
<groupId>org.scala-lang.plugins</groupId>
44-
<artifactId>scala-continuations-plugin_@VERSION@</artifactId> <!-- plugins are fully cross-versioned -->
44+
<!-- plugins are fully cross-versioned. But, we don't publish with 2.11.0-SNAPSHOT, instead use full version of the last non-snapshot version -->
45+
<artifactId>scala-continuations-plugin_@SCALA_FULL_VERSION@</artifactId>
4546
<version>@CONTINUATIONS_PLUGIN_VERSION@</version>
4647
</dependency>
4748
<!-- duplicated from scala-compiler, where it's optional,

versions.properties

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ starr.use.released=1
44

55
# These are the versions of the modules that go with this release.
66
# These properties are used during PR validation and in dbuild builds.
7+
8+
# e.g. 2.11.0-RC1, 2.11
79
scala.binary.version=2.11.0-RC3
10+
# e.g. 2.11.0-RC1, 2.11.0, 2.11.1-RC1, 2.11.1
11+
scala.full.version=2.11.0-RC3
812

913
# external modules shipped with distribution:
1014
scala-xml.version.number=1.0.1

0 commit comments

Comments
 (0)