Skip to content

Commit d32637d

Browse files
author
Li Haoyi
committed
0.1.2
1 parent 98edb02 commit d32637d

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ SourceCode [![Build Status](https://travis-ci.org/lihaoyi/sourcecode.svg?branch=
22
==========
33

44
```scala
5-
"com.lihaoyi" %% "sourcecode" % "0.1.1" // Scala-JVM
6-
"com.lihaoyi" %%% "sourcecode" % "0.1.1" // Scala.js
5+
"com.lihaoyi" %% "sourcecode" % "0.1.2" // Scala-JVM
6+
"com.lihaoyi" %%% "sourcecode" % "0.1.2" // Scala.js
77
```
88

99
`sourcecode` is a small Scala library for that provides common "source code"
@@ -599,6 +599,18 @@ in its `.toString` method.
599599

600600
Version History
601601
===============
602+
603+
0.1.2
604+
-----
605+
606+
- Add `sourcecode.Args` implicit, which can be used to capture debugging information
607+
about the nearest enclosing function call for logging/debugging, thanks to
608+
[Benjamin Hagemeister](https://github.com/benhag)
609+
610+
- Attempted fix for [#17](https://github.com/lihaoyi/sourcecode/issues/17) and
611+
[#13](https://github.com/lihaoyi/sourcecode/issues/13), thanks to
612+
[Simeon H.K. Fitch](https://github.com/metasim)
613+
602614
0.1.1
603615
-----
604616

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def macroDependencies(version: String) =
1313
Seq())
1414

1515
lazy val sourcecode = crossProject.settings(
16-
version := "0.1.1",
16+
version := "0.1.2",
1717
scalaVersion := "2.11.7",
1818
name := "sourcecode" ,
1919
organization := "com.lihaoyi",
@@ -46,4 +46,4 @@ lazy val sourcecode = crossProject.settings(
4646
)
4747

4848
lazy val js = sourcecode.js
49-
lazy val jvm = sourcecode.jvm
49+
lazy val jvm = sourcecode.jvm

0 commit comments

Comments
 (0)