Skip to content

Commit 8b86383

Browse files
committed
v0.14.1
1 parent eed0924 commit 8b86383

File tree

4 files changed

+98
-80
lines changed

4 files changed

+98
-80
lines changed

core/parse.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1788,7 +1788,7 @@ func isRecordConstructor(sym Symbol) bool {
17881788
return sym.ns == nil && (strings.HasPrefix(*sym.name, "->") || strings.HasPrefix(*sym.name, "map->"))
17891789
}
17901790

1791-
var fullClassNameRe = regexp.MustCompile(`.+\..+\..+`)
1791+
var fullClassNameRe = regexp.MustCompile(`.+\..+\.[A-Z].+`)
17921792

17931793
func isJavaSymbol(sym Symbol) bool {
17941794
s := *sym.name

core/procs.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const (
5252
PRINT_IF_NOT_NIL
5353
)
5454

55-
const VERSION = "v0.14.0"
55+
const VERSION = "v0.14.1"
5656

5757
var internalLibs map[string][]byte
5858

docs/index.html

+9
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ <h2>Index of <a href="#joker-std-ns">Namespaces</a></h2>
1111
<li>
1212
<a href="#joker.base64">joker.base64</a>
1313
</li>
14+
<li>
15+
<a href="#joker.better-cond">joker.better-cond</a>
16+
</li>
1417
<li>
1518
<a href="#joker.core">joker.core</a>
1619
</li>
@@ -295,6 +298,12 @@ <h3 id="joker.base64">joker.base64</h3>
295298
<p class="var-docstr">Implements base64 encoding as specified by RFC 4648.</p>
296299
<a href="joker.base64.html">details</a>
297300
</li>
301+
<li>
302+
<h3 id="joker.better-cond">joker.better-cond</h3>
303+
<span class="var-added">v1.0</span>
304+
<p class="var-docstr">A collection of variations on Clojure&#39;s core macros.</p>
305+
<a href="joker.better-cond.html">details</a>
306+
</li>
298307
<li>
299308
<h3 id="joker.core">joker.core</h3>
300309
<span class="var-added">v1.0</span>

0 commit comments

Comments
 (0)