Skip to content

Commit

Permalink
Update versions for 0.0.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mdr committed Jan 25, 2011
1 parent 21affb1 commit aa5129d
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion corpusscan/pom.xml
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>scalariform.corpusscan</groupId>
<artifactId>scalariform.corpusscan</artifactId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
Expand Down
2 changes: 1 addition & 1 deletion gui/pom.xml
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>scalariform.gui</groupId>
<artifactId>scalariform.gui</artifactId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
<dependencies>
<dependency>
<groupId>com.miglayout</groupId>
Expand Down
2 changes: 1 addition & 1 deletion perf/pom.xml
Expand Up @@ -2,5 +2,5 @@
<modelVersion>4.0.0</modelVersion>
<groupId>scalariform.perf</groupId>
<artifactId>scalariform.perf</artifactId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
</project>
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.scalariform</groupId>
<artifactId>scalariform.parent</artifactId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
<packaging>pom</packaging>
<properties>
<tycho.version>0.9.0</tycho.version>
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Expand Up @@ -3,7 +3,7 @@
project.organization=org.scalariform
project.name=scalariform.parent
sbt.version=0.7.4
project.version=0.0.8-SNAPSHOT
project.version=0.0.8
def.scala.version=2.7.7
build.scala.versions=2.8.0 2.8.1 2.9.0-SNAPSHOT
project.initialize=false
4 changes: 2 additions & 2 deletions project/build/Project.scala
Expand Up @@ -25,8 +25,8 @@ class Project(info: ProjectInfo) extends ParentProject(info) {

override def managedStyle = ManagedStyle.Maven

//val publishTo = "Scala Toos Nexus" at "http://nexus.scala-tools.org/content/repositories/releases/"
val publishTo = "Scala Toos Nexus" at "http://nexus.scala-tools.org/content/repositories/snapshots/"
val publishTo = "Scala Toos Nexus" at "http://nexus.scala-tools.org/content/repositories/releases/"
//val publishTo = "Scala Toos Nexus" at "http://nexus.scala-tools.org/content/repositories/snapshots/"

//val publishTo = Resolver.file("maven-local", Path.userHome / ".m2" / "repository" asFile)

Expand Down
4 changes: 2 additions & 2 deletions scalariform.feature/pom.xml
Expand Up @@ -5,11 +5,11 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>scalariform.feature</artifactId>
<packaging>eclipse-feature</packaging>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
<parent>
<artifactId>scalariform.parent</artifactId>
<groupId>org.scalariform</groupId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
</parent>
</project>

2 changes: 1 addition & 1 deletion scalariform.maven-plugin/pom.xml
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.scalariform</groupId>
<artifactId>scalariform-maven-plugin</artifactId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
<packaging>maven-plugin</packaging>
<name>Maven Scalariform Plugin</name>
<properties>
Expand Down
4 changes: 2 additions & 2 deletions scalariform.update/pom.xml
Expand Up @@ -5,11 +5,11 @@
<modelVersion>4.0.0</modelVersion>
<artifactId>scalariform.update</artifactId>
<packaging>eclipse-update-site</packaging>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
<parent>
<artifactId>scalariform.parent</artifactId>
<groupId>org.scalariform</groupId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
</parent>
</project>

2 changes: 1 addition & 1 deletion scalariform/notes/0.0.8.markdown
@@ -1,5 +1,5 @@
* FIX: Correctly handle use of `+`/`-` as type parameters in defs
* Add Maven formatter plugin (contributed by Adam Crain -- [Adam Crain][1])
* Add Maven formatter plugin (contributed by [Adam Crain][1])
* FIX: Bug with lexing `"""` at end of text
* Add `AlignSingleLineCaseStatements` preferences to align the arrows of consecutive single-line case statements
* Add `IndentLocalDefs` preference to indent local methods an extra level
Expand Down
4 changes: 2 additions & 2 deletions scalariform/pom.xml
Expand Up @@ -4,12 +4,12 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.scalariform</groupId>
<artifactId>scalariform</artifactId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
<packaging>eclipse-plugin</packaging>
<parent>
<artifactId>scalariform.parent</artifactId>
<groupId>org.scalariform</groupId>
<version>0.0.8-SNAPSHOT</version>
<version>0.0.8</version>
</parent>
<dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion scalariform/src/main/scala/scalariform/package.scala
@@ -1,6 +1,6 @@
package object scalariform {

val VERSION = "0.0.8-SNAPSHOT"
val VERSION = "0.0.8"

}

0 comments on commit aa5129d

Please sign in to comment.