Skip to content

Commit

Permalink
0.7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Li Haoyi committed Sep 15, 2016
1 parent 98312c6 commit 764fa82
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
4 changes: 2 additions & 2 deletions amm/src/test/scala/ammonite/session/ProjectTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,10 @@ object ProjectTests extends TestSuite{
res1: Int = 1

@ ExprCtx.Parened.parse("1 + 1") // for some reason the tuple isn't pprinted
res2: fastparse.core.Parsed[Unit] = Failure("(":1:1 ..."1 + 1")
res2: fastparse.core.Parsed[Unit,Char,String] = Failure("(":1:1 ..."1 + 1")

@ ExprCtx.Parened.parse("(1 + 1)")
res3: fastparse.core.Parsed[Unit] = Success((),7)
res3: fastparse.core.Parsed[Unit,Char,String] = Success((),7)
""")
}

Expand Down
13 changes: 13 additions & 0 deletions readme/Footer.scalatex
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,19 @@


@sect{Changelog}

@sect{0.7.7}
@ul
@li
@issue(461) avoid loading the same compiler plugin more than once,
thanks to @lnk("Roman Tklalenko", "https://github.com/tkroman")
@li
Allow @code{cd!}ing into sym-links, thanks to
@lnk("Roman Tklalenko", "https://github.com/tkroman") and
@lnk("Sergei Winitzki", "https://github.com/winitzki")
@li
Bump Fansi dependency to 0.2.1 and bump Fastparse dependency to 0.4.0

@sect{0.7.6}
@ul
@li
Expand Down

0 comments on commit 764fa82

Please sign in to comment.