Skip to content

Commit d3209ae

Browse files
committed
changed visibility of stdin; patch release v1.2.1
1 parent 896fd65 commit d3209ae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
5151
//group = 'de.mpicbg.scicomp'
5252
group = 'com.github.holgerbrandl'
5353
//version = '1.1.9'
54-
version = '1.2'
54+
version = '1.2.1'
5555

5656

5757
artifacts {

src/main/kotlin/kscript/text/StreamUtil.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package kscript.text
22

33

44
/** A `Sequence<String>` iterator for standard input */
5-
val stdin by lazy { generateSequence() { readLine() } }
5+
public val stdin by lazy { generateSequence() { readLine() } }
66

77
fun linesFrom(file: java.io.File) = java.io.BufferedReader(java.io.FileReader(file)).lineSequence()
88

0 commit comments

Comments
 (0)