Skip to content

Commit 113a642

Browse files
committed
chore: prerelease tasks
1 parent afa9268 commit 113a642

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ Changes ported from the upstream raylib code are not mentioned unless they are b
88

99
h-raylib's version numbers do not follow the usual format. The first two numbers in the version track the underlying C raylib version. For example, `5.1.x.x` versions use raylib 5.1 under the hood. The third number represents breaking changes (renamed/deleted functions or modules). The last number represents non-breaking changes (new functions or modules, bug fixes, etc). The safest version bound format to use is `h-raylib >=x.y.z.w && <x.y.(z+1)` (instead of the usual `^>=` bound).
1010

11+
## Version 5.5.2.1
12+
_28 October 2024_
13+
14+
- Bug fixes for web compilation
15+
1116
## Version 5.5.2.0
1217
_21 October 2024_
1318

default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
}:
44
mkDerivation {
55
pname = "h-raylib";
6-
version = "5.5.3.0";
6+
version = "5.5.2.1";
77
src = ./.;
88
isLibrary = true;
99
isExecutable = buildExamples;

h-raylib.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: h-raylib
3-
version: 5.5.3.0
3+
version: 5.5.2.1
44
synopsis: Raylib bindings for Haskell
55
category: graphics
66
description:

0 commit comments

Comments
 (0)