Skip to content

Commit 111c717

Browse files
authored
build: Bump to 2.3 (#51)
1 parent c38c6e4 commit 111c717

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
uses: ./.github/workflows/~reusable-full-build.yml
1212
with:
1313
use-skia-cache: ${{ inputs.use-skia-cache }}
14-
alphaskia-version: "2.2"
14+
alphaskia-version: "2.3"
1515
is-release-build: false
1616
secrets: inherit

.github/workflows/publish.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ on:
1111
default: false
1212
env:
1313
IS_RELEASE_BUILD: ${{ inputs.is-release-build }}
14-
ALPHASKIA_VERSION_TEMPLATE: "2.1"
14+
ALPHASKIA_VERSION_TEMPLATE: "2.3"
1515

1616
jobs:
1717
build:
1818
uses: ./.github/workflows/~reusable-full-build.yml
1919
with:
2020
use-skia-cache: ${{ inputs.use-skia-cache }}
21-
alphaskia-version: "2.2"
21+
alphaskia-version: "2.3"
2222
is-release-build: ${{ inputs.is-release-build }}
2323
secrets: inherit
2424

build/Build.Node.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ void PrepareTgzForTest()
6464
var files = new System.Collections.Generic.List<string>();
6565
foreach (var tgz in (RootDirectory / "dist" / "nodetars").GetFiles("*.tgz"))
6666
{
67-
// coderline-alphaskia-2.2.0-local.0.tgz
67+
// coderline-alphaskia-2.3.0-local.0.tgz
6868
var nameWithoutVersion = string.Join("-",
6969
tgz.NameWithoutExtension.Split('-').TakeWhile(p => !char.IsDigit(p[0])))
7070
+ tgz.Extension;

lib/dotnet/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<DebugType>portable</DebugType>
55
<DebugSymbols>true</DebugSymbols>
6-
<Version Condition=" '$(Version)' == '' ">2.2.0</Version>
6+
<Version Condition=" '$(Version)' == '' ">2.3.0</Version>
77
<AssemblyVersion Condition=" '$(AssemblyVersion)' == '' ">$(Version).0</AssemblyVersion>
88
<FileVersion Condition=" '$(FileVersion)' == '' ">$(AssemblyVersion)</FileVersion>
99
<NeutralLanguage>en</NeutralLanguage>

lib/node/alphaskia-linux/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coderline/alphaskia-linux",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "The node addon for alphaSkia enabling it to run on Linux",
55
"engines": {
66
"node": ">=18.0.0"

lib/node/alphaskia-macos/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coderline/alphaskia-macos",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "The node addon for alphaSkia enabling it to run on MacOS",
55
"engines": {
66
"node": ">=18.0.0"

lib/node/alphaskia-windows/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coderline/alphaskia-windows",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "The node addon for alphaSkia enabling it to run on Windows",
55
"engines": {
66
"node": ">=18.0.0"

lib/node/alphaskia/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coderline/alphaskia",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "A Skia based rendering backend for alphaTab.",
55
"module": "./dist/alphaskia.mjs",
66
"typings": "./dist/alphaskia.d.ts",
@@ -34,9 +34,9 @@
3434
},
3535
"homepage": "https://github.com/CoderLine/alphaSkia",
3636
"optionalDependencies": {
37-
"@coderline/alphaskia-linux": "^2.2.0",
38-
"@coderline/alphaskia-macos": "^2.2.0",
39-
"@coderline/alphaskia-windows": "^2.2.0"
37+
"@coderline/alphaskia-linux": "^2.3.0",
38+
"@coderline/alphaskia-macos": "^2.3.0",
39+
"@coderline/alphaskia-windows": "^2.3.0"
4040
},
4141
"devDependencies": {
4242
"@rollup/plugin-terser": "^0.4.4",

test/java/build.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "alphaTab.alphaSkia"
8-
version = "2.2.0-LOCAL"
8+
version = "2.3.0-LOCAL"
99
// Use any latest version
1010
var alphaSkiaVersion = version
1111

test/node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alphaskiatest",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"private": true,
55
"scripts": {
66
"start": "tsx index.ts"

0 commit comments

Comments
 (0)