Skip to content

Commit 5cc691b

Browse files
committed
build: 0.5.2
1 parent 4630e0e commit 5cc691b

File tree

5 files changed

+39
-4
lines changed

5 files changed

+39
-4
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
# 0.5.2
2+
- fix: Elide void definitions (#1305)
3+
- fix: Allow types defined in modules to be members (#1303)
4+
- fix: Ensure interface values aren't discarded (#1308)
5+
- feat: Add Float.round (#1301)
6+
- feat: Add additional ignore macros (#1300)
7+
- fix: Fix nested polymorphic types (#1294)
8+
- refactor: Cleanup Concretize module (#1283)
9+
- fix: Fix scoring of type and function declarations (#1290)
10+
- fix: Escape quotes in String.prn (#1287)
11+
- fix: Make Symbol.prefix work on qualified symbols (#1286)
12+
- fix: Respect line number in repl (#1282)
13+
- fix: Fix dynamic let bindings recursion and binder leaks (#1281)
14+
- feat: Add Dynamic.Debug.trace (#1279)
15+
- feat: Add Dynamic.proc? (#1278)
16+
- feat: Add List.remove-nth (#1277)
17+
- feat: Add machine-info primitive draft (#1269)
18+
- feat: Allow for multibranches in case (#1276)
19+
- docs: Set infoFile on primitives and commands (#1273)
20+
- docs: Document core modules (#1271)
21+
- fix: Set correct info on defmodule (#1270)
22+
- docs: Add pattern limitations (#1268)
23+
- fix: Added missing definitions so Carp can be used with TCC 32bit on Windows (#1267)
24+
- docs: Make doc work on top level and document macros (#1265)
25+
- feat: Emit docs for top level bindings (#1253)
26+
- fix: Dynamic.String.slice index handling (#1258)
27+
- feat: (and) and (or) now handle any number of parameters (#1251)
28+
- feat: IO.Raw (#1243)
29+
- fix: Check for generic main at build time (#1247)
30+
- docs: Updates memory docs to discourage overriding `delete` (#1245)
31+
- docs: Document managed? primitive (#1244)
32+
- fix: Render submodules in html docs (#1242)
33+
- fix: Fix repl function application evaluation (#1238)
34+
- refactor: Move form validation into a separate module (#1233)
35+
136
# 0.5.1
237
- fix: Don't crash on invalid member in struct / sumtype (#1228)
338
- feat: Additional local documentation as html (#1229)

CarpHask.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: CarpHask
2-
version: 0.5.1.0
2+
version: 0.5.2.0
33
-- synopsis:
44
-- description:
55
homepage: https://github.com/eriksvedang/Carp

README.md

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

99
<i>WARNING! This is a research project and a lot of information here might become outdated and misleading without any explanation. Don't use it for anything important just yet!</i>
1010

11-
<i>[Version 0.5.1 of the language is out!](https://github.com/carp-lang/Carp/releases/)</i>
11+
<i>[Version 0.5.2 of the language is out!](https://github.com/carp-lang/Carp/releases/)</i>
1212

1313
## About
1414

app/Main.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ main = do
144144
>>= execStrs "Postload" postloads
145145
>>= \ctx -> case execMode of
146146
Repl -> do
147-
putStrLn "Welcome to Carp 0.5.1"
147+
putStrLn "Welcome to Carp 0.5.2"
148148
putStrLn "This is free software with ABSOLUTELY NO WARRANTY."
149149
putStrLn "Evaluate (help) for more information."
150150
snd <$> runRepl ctx

docs/ReleaseChecklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ See [README.md](../README.md)
1616

1717
# 4. Update the changelog
1818

19-
TODO: Create CHANGELOG.md
19+
See [CHANGELOG.md](../CHANGELOG.md)
2020

2121
# 5. Make a commit on master
2222

0 commit comments

Comments
 (0)