Skip to content

Commit 51a05fe

Browse files
committed
[ version ] Update version code
1 parent 4448649 commit 51a05fe

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ See [FeatureTest](src/test/kotlin/org/lice/FeatureTest.kt) to learn more about t
4646
; invoke the function defined above
4747
(fold (.. 1 4) 0 +)
4848
49-
; passing a call-by-value lambda to a call-by-name lambda
50-
((expr op (op 3 4)) (lambda a b (+ (* a a) (* b b))))
49+
; passing a call-by-value lambda to a call-by-value lambda
50+
((lambda op (op 3 4)) (lambda a b (+ (* a a) (* b b))))
5151
5252
; to define a call-by-need lambda, use `lazy`.
5353
```
@@ -59,7 +59,7 @@ import javax.script.*;
5959
public class LiceScriptEngineTest {
6060
public static void main() throws Exception {
6161
ScriptEngine engine = new ScriptEngineManager().getEngineByName("lice");
62-
engine.eval("(def x 10)");
62+
engine.eval("(-> x 10)");
6363
engine.eval("(print x)");
6464
}
6565
}
@@ -78,7 +78,7 @@ allprojects {
7878
}
7979
8080
dependencies {
81-
compile 'com.github.lice-lang:lice:v3.1.2'
81+
compile 'com.github.lice-lang:lice:v3.2.0'
8282
}
8383
```
8484

@@ -87,15 +87,15 @@ If you use Scala, you can add it to your sbt dependency, by adding the lines bel
8787
```sbtshell
8888
resolvers += "jitpack" at "https://jitpack.io"
8989
90-
libraryDependencies += "com.github.lice-lang" % "lice" % "v3.1.2"
90+
libraryDependencies += "com.github.lice-lang" % "lice" % "v3.2.0"
9191
```
9292

9393
And if you're a Clojure developer, why not try to build it with leiningen?
9494

9595
```leiningen
9696
:repositories [["jitpack" "https://jitpack.io"]]
9797
98-
:dependencies [[com.github.lice-lang/lice "v3.1.2"]]
98+
:dependencies [[com.github.lice-lang/lice "v3.2.0"]]
9999
```
100100

101101
# Contributing

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
group 'org.lice'
2-
version '3.1.4'
2+
version '3.2.0'
33

44
buildscript {
55
ext.kotlin_version = '1.2.10'

0 commit comments

Comments
 (0)