Skip to content

Commit 886782b

Browse files
committed
Bump version to 0.2.3
1 parent ea3affa commit 886782b

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ zigglgen officially supports the following versions of the Zig compiler:
88

99
- `0.12.0-dev.3180+83e578a18`/[`2024.3.0-mach`](https://machengine.org/about/nominated-zig/#202410-mach)
1010
- `0.12.0`
11-
- master (last tested with `0.13.0-dev.73+db890dbae`)
11+
- master (last tested with `0.13.0-dev.230+50a141945`)
1212

1313
Older or more recent versions of the compiler are not guaranteed to be compatible.
1414

1515
1\. Run `zig fetch` to add the zigglgen package to your `build.zig.zon` manifest:
1616

1717
```sh
18-
zig fetch https://github.com/castholm/zigglgen/releases/download/v0.2.2/zigglgen.tar.gz --save
18+
zig fetch https://github.com/castholm/zigglgen/releases/download/v0.2.3/zigglgen.tar.gz --save
1919
```
2020

2121
2\. Generate a set of OpenGL bindings in your `build.zig` build script:

zigglgen-example/build.zig.zon

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
.hash = "1220a72c54b4a3674a1e5a907ac6ea33d1868681f187f5a07f3cfb562ff7cf2c63e0",
88
},
99
.zigglgen = .{
10-
.url = "https://github.com/castholm/zigglgen/releases/download/v0.2.2/zigglgen.tar.gz",
11-
.hash = "1220b0b1d61dfe8a244a3928b20cfa596e252656cca90120c26661898986ce3d1f82",
10+
.url = "https://github.com/castholm/zigglgen/releases/download/v0.2.3/zigglgen.tar.gz",
11+
.hash = "1220f4188a5e1bdbb15fd50e9ea322c0721384eeba9bc077e4179b0b0eeaa7fe4ad9",
1212
},
1313
},
1414
.paths = .{

zigglgen-example/gles3.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Bindings for OpenGL ES 3.0 generated by zigglgen.
22

3-
// OpenGL XML API Registry revision: 4265ce1a6e40abdab98f5f2e11365b59f5ef04bc
4-
// zigglgen version: 0.2.2
3+
// OpenGL XML API Registry revision: 3e2c5fa835e72dcbf716d1fba35a75ef05c79129
4+
// zigglgen version: 0.2.3
55

66
// Example usage:
77
//

zigglgen/api_registry.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// This file was generated by 'updateApiRegistry.ps1'.
2-
// OpenGL XML API Registry revision: 4265ce1a6e40abdab98f5f2e11365b59f5ef04bc
2+
// OpenGL XML API Registry revision: 3e2c5fa835e72dcbf716d1fba35a75ef05c79129
33

4-
pub const revision = "4265ce1a6e40abdab98f5f2e11365b59f5ef04bc";
4+
pub const revision = "3e2c5fa835e72dcbf716d1fba35a75ef05c79129";
55

66
pub const Type = struct {
77
name: Name,

zigglgen/build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = "zigglgen",
3-
.version = "0.2.2",
3+
.version = "0.2.3",
44
.minimum_zig_version = "0.12.0-dev",
55
.paths = .{
66
"LICENSE.md",

zigglgen/generator.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ fn renderCode(
402402
\\//! Bindings for {[api_pretty]s} {[version_major]d}.{[version_minor]d}{[sp_profile_pretty]s} generated by zigglgen.
403403
\\
404404
\\// OpenGL XML API Registry revision: {[registry_revision]s}
405-
\\// zigglgen version: 0.2.2
405+
\\// zigglgen version: 0.2.3
406406
\\
407407
\\// Example usage:
408408
\\//

zigglgen/generator_options.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// This file was generated by 'updateApiRegistry.ps1'.
2-
// OpenGL XML API Registry revision: 4265ce1a6e40abdab98f5f2e11365b59f5ef04bc
2+
// OpenGL XML API Registry revision: 3e2c5fa835e72dcbf716d1fba35a75ef05c79129
33

44
pub const Api = enum { gl, gles, glsc };
55

0 commit comments

Comments
 (0)