Skip to content

Commit ebdcd9b

Browse files
committed
build: Release 0.5.4
1 parent bf3e02e commit ebdcd9b

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# 0.5.4
2+
- refactor: Add type candidates and template generators (#1361)
3+
- fix: Ensure registered types with fields emit path (#1364)
4+
- fix: Permit registering types in modules (#1362)
5+
- feat: Add box type (#1358)
6+
- feat: Add bytes->hex-string (#1354)
7+
- feat: Add flag to always output C id with headerparse (#1353)
8+
- docs: Add documentation to core expressions (#1350) (#1352)
9+
- test: Add match given-away value error test (#1351)
10+
- fix: Don't emit Unit type the casts (#1349)
11+
- fix: Bug fixes for #1064 and #843 (#1321)
12+
- fix: Don't hang on module expansions (#1340)
13+
- feat: Add `scan` functions (#1339)
14+
- fix: Don't pass 'If' to InvalidObj when Obj actually is 'Mod' (#1327)
15+
- feat: Register-type improvements (#1332)
16+
- fix: Update ControlMacros.carp (#1336)
17+
- fix: Categorize static calls correctly (#1322)
18+
- docs: Fix typo in Macros.md (#1331)
19+
- docs: Update Install.md (#1324)
20+
- feat: Add assignment operator macros (#1320)
21+
- feat: Add compiler error on maximum sumtype constructors (#1319)
22+
123
# 0.5.3
224
- ci: Merges different platform releases into one (#1313)
325
- feat: Add Dynamic.List.find-index (#1316)

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.3.0
2+
version: 0.5.4.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.3 of the language is out!](https://github.com/carp-lang/Carp/releases/)</i>
11+
<i>[Version 0.5.4 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.3"
147+
putStrLn "Welcome to Carp 0.5.4"
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ See [CHANGELOG.md](../CHANGELOG.md)
2121
# 5. Make a commit on master
2222

2323
```bash
24-
$ git commit -m "Release X.Y.Z"
24+
$ git add .
25+
$ git commit -m "build: Release X.Y.Z"
2526
```
2627

2728
# 6. Tag the commit and push it

0 commit comments

Comments
 (0)