Skip to content

Commit

Permalink
Merge pull request #17 from cschanck/rel1.2.0
Browse files Browse the repository at this point in the history
1.2 release
  • Loading branch information
cschanck committed Sep 16, 2020
2 parents ff930ca + 1ac8549 commit 3adb470
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Overview.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,12 @@ Client and Server objects over Java blocking sockets. Expects to send, receive,
or send-and-receive POJOs, using either java Serialization or a provided
serialization strategy.

== PositionalPushbackReader

Reader class which allows infinite (memory constrained) pushback, and tracks
line/column position. Not intended to be insanely efficient, but correct.
Helpful for parsers and such.

== ProxyMe

Proxy an interface, and then provide a midpoint in the proxy chain where you can
Expand Down
7 changes: 3 additions & 4 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,12 @@ be surprised what it is like to code something this way; I would not have bet
that I could do a Single-Decree Paxos impl in under 300 SLOCS, for example, but
the bounded nature of the project helped me stay focused.

As a friend of mine, an awesome dev, would say: "I want to go code in a cave".
Alex, here is your 1000 line cave, go bang some rocks together!

Another, very minor motivation was to refute the constant whining about
how verbose Java is. Java can be verbose, but that is also part of its strength.
But even with the verbosity, you can write a lot with a little code.

And yes, this can end up looking like a hodgepodge of random utilities. Duly noted.

== Usage & Docs
See the Overview doc for a description of current files. See specific docs in
src/docs for more info.
Expand All @@ -99,7 +98,7 @@ We're on Maven Central!
<dependency>
<groupId>org.singlefilejava</groupId>
<artifactId>single-file-java</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>org.singlefilejava</groupId>
<artifactId>single-file-java</artifactId>
<version>1.2-SNAPSHOT</version>
<version>1.2.0</version>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>

Expand Down

0 comments on commit 3adb470

Please sign in to comment.