Skip to content

Commit a943c56

Browse files
committed
Release 0.1.0.1
1 parent 0a7535e commit a943c56

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

.github/workflows/CI.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
- "docs/**"
1212

1313
env:
14-
LuaInstaller_VERSION: 0.1.0.0
14+
LuaInstaller_VERSION: 0.1.0.1
1515
LUAROCKS_VERSION: 3.11.1
1616

1717
jobs:
@@ -189,7 +189,7 @@ jobs:
189189
run: lua "${{ env.LFS_TEST_FILE }}"
190190

191191
- name: Prepare artifacts to upload
192-
if: ${{ matrix.LUA_VERSION == '5.4.7' && (github.ref_name == 'release' && startsWith(github.ref, 'refs/tags/')) }}
192+
if: ${{ matrix.LUA_VERSION == '5.4.7' && (github.ref_name == 'release' || startsWith(github.ref, 'refs/tags/')) }}
193193
run: |
194194
mkdir release;
195195
$dirs_to_archive = "${{ env.CONSOLE_DIR }}", "${{ env.WPF_DIR }}";
@@ -211,7 +211,7 @@ jobs:
211211
212212
- name: Upload artifacts
213213
uses: actions/upload-artifact@v4
214-
if: ${{ matrix.LUA_VERSION == '5.4.7' && (github.ref_name == 'release' && startsWith(github.ref, 'refs/tags/')) }}
214+
if: ${{ matrix.LUA_VERSION == '5.4.7' && (github.ref_name == 'release' || startsWith(github.ref, 'refs/tags/')) }}
215215
with:
216216
name: release-v${{ env.LuaInstaller_VERSION }}-${{ matrix.ARCH }}
217217
path: release

LuaInstaller.Console/LuaInstaller.Console.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<CheckEolTargetFramework>false</CheckEolTargetFramework>
1212
<Title>LuaInstaller.Console</Title>
1313
<Copyright>Copyright © luau-project 2024</Copyright>
14-
<Version>0.1.0.0</Version>
14+
<Version>0.1.0.1</Version>
1515
<Authors>luau-project</Authors>
1616
<Company>luau-project</Company>
17-
<AssemblyVersion>0.1.0.0</AssemblyVersion>
18-
<FileVersion>0.1.0.0</FileVersion>
17+
<AssemblyVersion>0.1.0.1</AssemblyVersion>
18+
<FileVersion>0.1.0.1</FileVersion>
1919
</PropertyGroup>
2020

2121
</Project>

LuaInstaller.Console/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.1.0.0")]
36-
[assembly: AssemblyFileVersion("0.1.0.0")]
35+
[assembly: AssemblyVersion("0.1.0.1")]
36+
[assembly: AssemblyFileVersion("0.1.0.1")]

LuaInstaller.Core/LuaInstaller.Core.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
<CheckEolTargetFramework>false</CheckEolTargetFramework>
77
<Title>LuaInstaller.Core</Title>
88
<Copyright>Copyright © luau-project 2024</Copyright>
9-
<Version>0.1.0.0</Version>
9+
<Version>0.1.0.1</Version>
1010
<Authors>luau-project</Authors>
1111
<Company>luau-project</Company>
12-
<AssemblyVersion>0.1.0.0</AssemblyVersion>
13-
<FileVersion>0.1.0.0</FileVersion>
12+
<AssemblyVersion>0.1.0.1</AssemblyVersion>
13+
<FileVersion>0.1.0.1</FileVersion>
1414
</PropertyGroup>
1515

1616
<ItemGroup>

LuaInstaller.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("0.1.0.0")]
36-
[assembly: AssemblyFileVersion("0.1.0.0")]
35+
[assembly: AssemblyVersion("0.1.0.1")]
36+
[assembly: AssemblyFileVersion("0.1.0.1")]

LuaInstaller/LuaInstaller.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1212
<Title>LuaInstaller</Title>
1313
<Copyright>Copyright © luau-project 2024</Copyright>
14-
<Version>0.1.0.0</Version>
14+
<Version>0.1.0.1</Version>
1515
<Authors>luau-project</Authors>
1616
<Company>luau-project</Company>
17-
<AssemblyVersion>0.1.0.0</AssemblyVersion>
18-
<FileVersion>0.1.0.0</FileVersion>
17+
<AssemblyVersion>0.1.0.1</AssemblyVersion>
18+
<FileVersion>0.1.0.1</FileVersion>
1919
</PropertyGroup>
2020

2121
</Project>

LuaInstaller/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("0.1.0.0")]
55-
[assembly: AssemblyFileVersion("0.1.0.0")]
54+
[assembly: AssemblyVersion("0.1.0.1")]
55+
[assembly: AssemblyFileVersion("0.1.0.1")]

0 commit comments

Comments
 (0)