From 06081916c1dadf254719d7d46cd2be8d86b96313 Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Wed, 25 Mar 2015 12:05:02 +0100 Subject: prepare next version --- README.md | 7 ++++--- project/Build.scala | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f307268..9a0c3a2 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,9 @@ Field types are mapped according to the following table | char[] | String | | <type>[] | Array[<type>] | -*Note that since Scala only supports signed integer types, it is up to the client to -interpret the values of fields correctly.* +Remarks: + 1. Since Scala only supports signed integer types, it is up to the client to interpret the values of fields correctly. + 2. Read-only fields such as uint8_t_mavlink_version don't play well with case classes. These fields are therefore treated as writeable by the user. E.g. when creating a standard heartbeat message, the user must add the mavlink version manually. #### Enums Enums are mapped to Scala objects, their fields defined as final vals (CamelCase) of type Int. @@ -74,7 +75,7 @@ can be guaranteed when generating messages.* Add the following to your plugins: ```scala - addSbtPlugin("com.github.jodersky" % "sbt-mavlink" % "0.4.1")` + addSbtPlugin("com.github.jodersky" % "sbt-mavlink" % "0.5.0")` ``` Set a MAVLink dialect diff --git a/project/Build.scala b/project/Build.scala index a3e42c2..1cb7193 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -10,7 +10,7 @@ object ApplicationBuild extends Build { scalaVersion := "2.10.4", scalacOptions ++= Seq("-feature", "-deprecation"), organization := "com.github.jodersky", - version := "0.4.1-SNAPSHOT" + version := "0.5.0-SNAPSHOT" ) ++ publishSettings lazy val root = ( -- cgit v1.2.3