Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Commit

Permalink
Release 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mysticfall committed Feb 4, 2015
1 parent 179cf67 commit a756870
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 19 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ target
.settings
.cache
.README.md.html
/bin/
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ your discretion.
Add the following line to your ```sbt``` build definition:

```scala
libraryDependencies += "com.greencatsoft" %%% "scalajs-angular" % "0.2"
libraryDependencies += "com.greencatsoft" %%% "scalajs-angular" % "0.3"
```

If you want to test the latest snapshot version instead, change the version to
_"0.3-SNAPSHOT"_ and add _Sonatype Snapshot Repository_ to the resolver as follows:
_"0.4-SNAPSHOT"_ and add _Sonatype Snapshot Repository_ to the resolver as follows:

```scala
resolvers +=
Expand Down Expand Up @@ -157,11 +157,11 @@ object UserDetailsController extends Controller with HttpServiceAware {

trait UserForm extends Scope {

var id: String
var name: String
var email: String
var id: String = js.native
var name: String = js.native
var email: String = js.native

var friends: js.Array[String]
var friends: js.Array[String] = js.native
}
}
```
Expand Down Expand Up @@ -206,10 +206,10 @@ object UserDetailsController extends Controller {

trait ScopeType extends Scope {

var id: String
var name: String
var email: String
var friends: js.Array[String]
var id: String = js.native
var name: String = js.native
var email: String = js.native
var friends: js.Array[String] = js.native
}
}
```
Expand Down
26 changes: 19 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ lazy val root = (project in file(".")).
name := "scalajs-angular",
description := "AngularJS bindings for Scala.js.",
organization := "com.greencatsoft",
version := "0.3-SNAPSHOT",
scalaVersion := "2.11.4",
version := "0.3",
scalaVersion := "2.11.5",
scalacOptions ++= Seq("-feature","-deprecation"),
homepage := Some(url("http://github.com/greencatsoft/scalajs-angular")),

Expand Down Expand Up @@ -44,16 +44,28 @@ lazy val root = (project in file(".")).
<name>Xavier Cho</name>
<url>http://github.com/mysticfall</url>
</developer>
<developer>
<id>jokade</id>
<name>Jokade</name>
<url>https://github.com/jokade</url>
</developer>
<developer>
<id>mmx900</id>
<name>Setzer Kim</name>
<url>https://github.com/mmx900</url>
</developer>
</developers>
<contributors>
<contributor>
<id>jokade</id>
<name>Jokade</name>
<url>https://github.com/jokade</url>
</contributor>
<contributor>
<id>olivergg</id>
<name>Olivergg</name>
<url>https://github.com/olivergg</url>
</contributor>
<contributor>
<id>reid-spencer</id>
<name>Reid Spencer</name>
<url>https://github.com/reid-spencer</url>
</contributor>
</contributors>
)
)
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.0-M3" )
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.0" )

addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.5.0")
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "3.0.0")

addSbtPlugin("com.github.mpeltonen" % "sbt-idea" % "1.6.0")

Expand Down

0 comments on commit a756870

Please sign in to comment.