Skip to content

Commit e32ec43

Browse files
committed
build: Release 0.5.5
1 parent 5d23388 commit e32ec43

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# 0.5.5
2+
docs: updates markdown docs to only have one h1 (#1418)
3+
feat: add fputc wrapper to IO (#1417)
4+
feat: register MAX and MIN macros for stdint types (#1412)
5+
fix: respect symbol modes on interface concretization (#1415)
6+
fix: respect let binding shadowing in memory management (#1413)
7+
feat: adds Dynamic.sort & improves output of failing dynamic tests (#1411)
8+
feat: implement blit on ByteOrder (#1410)
9+
chore: updates Stackage version to 19.2 (#1408)
10+
feat: don't manage blittable types (#1407)
11+
ci: re-enable Debug.sanitize on Windows (#1406)
12+
feat: add IO.fgetc (#1405)
13+
feat: support cons-last for arrays (#1402)
14+
refactor: project configuration get/set parity (#1400)
15+
ci: Fixes scoop install as admin user (#1399)
16+
feat: add c-name meta field (#1398)
17+
feat: add Dynamic.String.to-array (#1382)
18+
fix: mangle field names in setter templates (#1379)
19+
fix: fix leading % format in fmt (#1380)
20+
fix: #1347 by ignoring generically typed symbols on printing C (#1373)
21+
fix: nix install by using correct pkg-configDepends config key (#1372)
22+
fix: type signature of Array.unsafe-raw (#1375)
23+
docs: Instructions to ensure correct handling of utf-8 (#1367)
24+
125
# 0.5.4
226
- refactor: Add type candidates and template generators (#1361)
327
- fix: Ensure registered types with fields emit path (#1364)

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.4.0
2+
version: 0.5.5.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.4 of the language is out!](https://github.com/carp-lang/Carp/releases/)</i>
11+
<i>[Version 0.5.5 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.4"
147+
putStrLn "Welcome to Carp 0.5.5"
148148
putStrLn "This is free software with ABSOLUTELY NO WARRANTY."
149149
putStrLn "Evaluate (help) for more information."
150150
snd <$> runRepl ctx

0 commit comments

Comments
 (0)