Skip to content

Commit b94fd96

Browse files
committed
chore: bump version v0.5.2
1 parent 6f8adad commit b94fd96

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

docs/changelog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
Below is the change log for typical users. Minor and older changes stripped
66
away, please see git history for details.
77

8+
- v0.5.2 (2025-07-09) fix missing sampler functions in graphics ext (v1.1.3)
9+
add mesh builder API to mesh ext (v0.1.0)
10+
add starter ext MSAA & depth issues (v1.0.2)
11+
fix macos examples build process
12+
fix erroneous pl_json.h asserts (v1.0.2)
813
- v0.5.1 (2025-06-23) add directory ops to FILE ext (v1.1.0)
914
fix string interning cleanup issue (v1.0.1)
1015
add "bHotReloadActive" to IO context (v1.1.0)

docs/version.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
v0.5.1
1+
v0.5.2
22

33
-----------------------------------------------------------------------------
44
Versioning
@@ -42,7 +42,7 @@ the API is complete. It just means we won't break what currently exists.
4242

4343
## Libraries
4444
* Data Structures v1.0.0 (pl_ds.h)
45-
* Json v1.0.0 (pl_json.h)
45+
* Json v1.0.2 (pl_json.h)
4646
* Logging v1.0.1 (pl_log.h)
4747
* Math v1.0.0 (pl_math.h)
4848
* Memory Allocators v1.1.0 (pl_memory.h)
@@ -59,7 +59,7 @@ the API is complete. It just means we won't break what currently exists.
5959
* Draw v1.2.0 (pl_draw_ext.h)
6060
* Draw Backend v1.0.1 (pl_draw_backend_ext.h)
6161
* GPU Allocators v1.0.0 (pl_gpu_allocators_ext.h)
62-
* Graphics v1.1.2 (pl_graphics_ext.h)
62+
* Graphics v1.1.3 (pl_graphics_ext.h)
6363
* Image v1.0.0 (pl_image_ext.h)
6464
* Job v2.0.0 (pl_job_ext.h)
6565
* Atomics v1.0.0 (pl_platform_ext.h)
@@ -71,7 +71,7 @@ the API is complete. It just means we won't break what currently exists.
7171
* Rectangle Packing v1.0.0 (pl_rect_pack_ext.h)
7272
* Screen Log v2.0.0 (pl_screen_log_ext.h)
7373
* Shader v1.1.0 (pl_shader_ext.h)
74-
* Starter v1.0.1 (pl_starter_ext.h)
74+
* Starter v1.0.2 (pl_starter_ext.h)
7575
* Stats v1.0.0 (pl_stats_ext.h)
7676
* String Interning v1.0.1 (pl_string_intern_ext.h)
7777
* UI Tools v1.0.0 (pl_tools_ext.h)

extensions/pl_graphics_ext.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Index of this file:
114114
// [SECTION] apis
115115
//-----------------------------------------------------------------------------
116116

117-
#define plGraphicsI_version {1, 1, 2}
117+
#define plGraphicsI_version {1, 1, 3}
118118

119119
//-----------------------------------------------------------------------------
120120
// [SECTION] includes

src/pl.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ Index of this file:
2424
#define PL_H
2525

2626
// global version XYYZZ
27-
#define PILOT_LIGHT_VERSION_STRING "0.5.1"
28-
#define PILOT_LIGHT_VERSION_NUM 00501
29-
#define PILOT_LIGHT_VERSION {0, 5, 1}
27+
#define PILOT_LIGHT_VERSION_STRING "0.5.2"
28+
#define PILOT_LIGHT_VERSION_NUM 00502
29+
#define PILOT_LIGHT_VERSION {0, 5, 2}
3030

3131
//-----------------------------------------------------------------------------
3232
// [SECTION] apis

0 commit comments

Comments
 (0)