Skip to content

Commit 3adb470

Browse files
authored
Merge pull request #17 from cschanck/rel1.2.0
1.2 release
2 parents ff930ca + 1ac8549 commit 3adb470

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

Overview.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ Client and Server objects over Java blocking sockets. Expects to send, receive,
7373
or send-and-receive POJOs, using either java Serialization or a provided
7474
serialization strategy.
7575

76+
== PositionalPushbackReader
77+
78+
Reader class which allows infinite (memory constrained) pushback, and tracks
79+
line/column position. Not intended to be insanely efficient, but correct.
80+
Helpful for parsers and such.
81+
7682
== ProxyMe
7783

7884
Proxy an interface, and then provide a midpoint in the proxy chain where you can

README.adoc

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,12 @@ be surprised what it is like to code something this way; I would not have bet
8080
that I could do a Single-Decree Paxos impl in under 300 SLOCS, for example, but
8181
the bounded nature of the project helped me stay focused.
8282

83-
As a friend of mine, an awesome dev, would say: "I want to go code in a cave".
84-
Alex, here is your 1000 line cave, go bang some rocks together!
85-
8683
Another, very minor motivation was to refute the constant whining about
8784
how verbose Java is. Java can be verbose, but that is also part of its strength.
8885
But even with the verbosity, you can write a lot with a little code.
8986

87+
And yes, this can end up looking like a hodgepodge of random utilities. Duly noted.
88+
9089
== Usage & Docs
9190
See the Overview doc for a description of current files. See specific docs in
9291
src/docs for more info.
@@ -99,7 +98,7 @@ We're on Maven Central!
9998
<dependency>
10099
<groupId>org.singlefilejava</groupId>
101100
<artifactId>single-file-java</artifactId>
102-
<version>1.1.0</version>
101+
<version>1.2.0</version>
103102
</dependency>
104103
```
105104

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>org.singlefilejava</groupId>
88
<artifactId>single-file-java</artifactId>
9-
<version>1.2-SNAPSHOT</version>
9+
<version>1.2.0</version>
1010
<packaging>jar</packaging>
1111
<name>${project.groupId}:${project.artifactId}</name>
1212

0 commit comments

Comments
 (0)