Skip to content

Commit

Permalink
build: 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eriksvedang committed Sep 8, 2021
1 parent 4630e0e commit 5cc691b
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 4 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
# 0.5.2
- fix: Elide void definitions (#1305)
- fix: Allow types defined in modules to be members (#1303)
- fix: Ensure interface values aren't discarded (#1308)
- feat: Add Float.round (#1301)
- feat: Add additional ignore macros (#1300)
- fix: Fix nested polymorphic types (#1294)
- refactor: Cleanup Concretize module (#1283)
- fix: Fix scoring of type and function declarations (#1290)
- fix: Escape quotes in String.prn (#1287)
- fix: Make Symbol.prefix work on qualified symbols (#1286)
- fix: Respect line number in repl (#1282)
- fix: Fix dynamic let bindings recursion and binder leaks (#1281)
- feat: Add Dynamic.Debug.trace (#1279)
- feat: Add Dynamic.proc? (#1278)
- feat: Add List.remove-nth (#1277)
- feat: Add machine-info primitive draft (#1269)
- feat: Allow for multibranches in case (#1276)
- docs: Set infoFile on primitives and commands (#1273)
- docs: Document core modules (#1271)
- fix: Set correct info on defmodule (#1270)
- docs: Add pattern limitations (#1268)
- fix: Added missing definitions so Carp can be used with TCC 32bit on Windows (#1267)
- docs: Make doc work on top level and document macros (#1265)
- feat: Emit docs for top level bindings (#1253)
- fix: Dynamic.String.slice index handling (#1258)
- feat: (and) and (or) now handle any number of parameters (#1251)
- feat: IO.Raw (#1243)
- fix: Check for generic main at build time (#1247)
- docs: Updates memory docs to discourage overriding `delete` (#1245)
- docs: Document managed? primitive (#1244)
- fix: Render submodules in html docs (#1242)
- fix: Fix repl function application evaluation (#1238)
- refactor: Move form validation into a separate module (#1233)

# 0.5.1
- fix: Don't crash on invalid member in struct / sumtype (#1228)
- feat: Additional local documentation as html (#1229)
Expand Down
2 changes: 1 addition & 1 deletion CarpHask.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CarpHask
version: 0.5.1.0
version: 0.5.2.0
-- synopsis:
-- description:
homepage: https://github.com/eriksvedang/Carp
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<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>

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

## About

Expand Down
2 changes: 1 addition & 1 deletion app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ main = do
>>= execStrs "Postload" postloads
>>= \ctx -> case execMode of
Repl -> do
putStrLn "Welcome to Carp 0.5.1"
putStrLn "Welcome to Carp 0.5.2"
putStrLn "This is free software with ABSOLUTELY NO WARRANTY."
putStrLn "Evaluate (help) for more information."
snd <$> runRepl ctx
Expand Down
2 changes: 1 addition & 1 deletion docs/ReleaseChecklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ See [README.md](../README.md)

# 4. Update the changelog

TODO: Create CHANGELOG.md
See [CHANGELOG.md](../CHANGELOG.md)

# 5. Make a commit on master

Expand Down

0 comments on commit 5cc691b

Please sign in to comment.