Skip to content

Commit b712959

Browse files
committed
Version 3.3.1 [release 3.3.1]
1 parent 1650acb commit b712959

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
cmake -B build
1717
cmake --build build --config Release --target axslcc
1818
- name: Upload
19-
uses: actions/upload-artifact@v5
19+
uses: actions/upload-artifact@v6
2020
with:
2121
path: ./build/src/Release/axslcc.exe
2222
name: axslcc-win64
@@ -30,7 +30,7 @@ jobs:
3030
cmake -B build -DCMAKE_BUILD_TYPE=Release
3131
cmake --build build --config Release --target axslcc
3232
- name: Upload
33-
uses: actions/upload-artifact@v5
33+
uses: actions/upload-artifact@v6
3434
with:
3535
path: ./build/src/axslcc
3636
name: axslcc-linux
@@ -49,7 +49,7 @@ jobs:
4949
cmake --build build --config Release --target axslcc
5050
lipo -info ./build/src/axslcc
5151
- name: Upload
52-
uses: actions/upload-artifact@v5
52+
uses: actions/upload-artifact@v6
5353
with:
5454
path: ./build/src/axslcc
5555
name: axslcc-osx-arm64
@@ -69,7 +69,7 @@ jobs:
6969
cmake --build build --config Release --target axslcc
7070
lipo -info ./build/src/axslcc
7171
- name: Upload
72-
uses: actions/upload-artifact@v5
72+
uses: actions/upload-artifact@v6
7373
with:
7474
path: ./build/src/axslcc
7575
name: axslcc-osx-x64

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ It uses [glslang](https://github.com/KhronosGroup/glslang) for parsing GLSL and
99

1010
## ChangeLog
1111

12+
### 3.3.1
13+
14+
- Use debian-11 do build linux executable
15+
1216
### 3.3.0
1317

1418
- Write sc size into binary header

src/axslcc.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
//
7878
// 3.2.0 Unify and re-enumerate vertex input & uniform variable types
7979
// 3.3.0 Write sc size into binary header
80+
// 3.3.1 Use debian-11 to build linux
8081
//
8182

8283
/**
@@ -135,7 +136,7 @@
135136

136137
#define AXSLCC_VERSION_MAJOR 3
137138
#define AXSLCC_VERSION_MINOR 3
138-
#define AXSLCC_VERSION_REVISION 0
139+
#define AXSLCC_VERSION_REVISION 1
139140

140141
using namespace axslc;
141142

0 commit comments

Comments
 (0)