Skip to content

Commit 1b01dc3

Browse files
committed
Fix spores blog post
1 parent 2a64591 commit 1b01dc3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

blog/_posts/2016-11-30-spores-release.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
layout: blog
33
post-type: blog
44
by: Jorge Vicente Cantero
5-
title: "Releasing spores 0.4.1"
5+
title: "Releasing spores 0.4.3"
66
---
77

8-
Today we at the Scala Center are happy to annouce a new release of spores, now
8+
Today we at the Scala Center are happy to announce a new release of spores, now
99
designed to work with Java Serialization. In the August Advisory Board meeting,
1010
IBM proposed that the Scala Center work on [improving the status quo of
1111
serialization in
@@ -33,7 +33,7 @@ val greeting = “Hello”
3333
val exampleSpore = spore {
3434
val capturedGreeting = greeting
3535
(name: String) =>
36-
println(s"$greeting, $name!")
36+
println(s"$capturedGreeting, $name!")
3737
}
3838
```
3939

@@ -80,8 +80,8 @@ compile-time rather than runtime.
8080
To add spores to your project, add the following keys to your SBT build file:
8181

8282
```scala
83-
libraryDependencies += "ch.epfl.scala" %% "spores" % "0.4.1"
84-
addCompilerPlugin("ch.epfl.scala" %% "spores-serialization" % "0.4.1")
83+
libraryDependencies += "ch.epfl.scala" %% "spores" % "0.4.3"
84+
addCompilerPlugin("ch.epfl.scala" %% "spores-serialization" % "0.4.3")
8585
```
8686

8787
For further information on how to use it and a specification of spores, check

0 commit comments

Comments
 (0)