Skip to content

Commit

Permalink
build: prepare 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Danielku15 committed Aug 11, 2024
1 parent ffab19f commit e1171b8
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
uses: ./.github/workflows/~reusable-full-build.yml
with:
use-skia-cache: ${{ inputs.use-skia-cache }}
alphaskia-version: "2.1"
alphaskia-version: "2.2"
is-release-build: false
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: ./.github/workflows/~reusable-full-build.yml
with:
use-skia-cache: ${{ inputs.use-skia-cache }}
alphaskia-version: "2.1"
alphaskia-version: "2.2"
is-release-build: ${{ inputs.is-release-build }}
secrets: inherit

Expand Down
2 changes: 1 addition & 1 deletion build/Build.Node.cs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void PrepareTgzForTest()
var files = new System.Collections.Generic.List<string>();
foreach (var tgz in (RootDirectory / "dist" / "nodetars").GetFiles("*.tgz"))
{
// coderline-alphaskia-2.1.0-local.0.tgz
// coderline-alphaskia-2.2.0-local.0.tgz
var nameWithoutVersion = string.Join("-",
tgz.NameWithoutExtension.Split('-').TakeWhile(p => !char.IsDigit(p[0])))
+ tgz.Extension;
Expand Down
2 changes: 1 addition & 1 deletion lib/dotnet/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
<Version Condition=" '$(Version)' == '' ">2.1.0</Version>
<Version Condition=" '$(Version)' == '' ">2.2.0</Version>
<AssemblyVersion Condition=" '$(AssemblyVersion)' == '' ">$(Version).0</AssemblyVersion>
<FileVersion Condition=" '$(FileVersion)' == '' ">$(AssemblyVersion)</FileVersion>
<NeutralLanguage>en</NeutralLanguage>
Expand Down
2 changes: 1 addition & 1 deletion lib/node/alphaskia-linux/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coderline/alphaskia-linux",
"version": "2.1.0",
"version": "2.2.0",
"description": "The node addon for alphaSkia enabling it to run on Linux",
"engines": {
"node": ">=18.0.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/node/alphaskia-macos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coderline/alphaskia-macos",
"version": "2.1.0",
"version": "2.2.0",
"description": "The node addon for alphaSkia enabling it to run on MacOS",
"engines": {
"node": ">=18.0.0"
Expand Down
2 changes: 1 addition & 1 deletion lib/node/alphaskia-windows/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coderline/alphaskia-windows",
"version": "2.1.0",
"version": "2.2.0",
"description": "The node addon for alphaSkia enabling it to run on Windows",
"engines": {
"node": ">=18.0.0"
Expand Down
8 changes: 4 additions & 4 deletions lib/node/alphaskia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coderline/alphaskia",
"version": "2.1.0",
"version": "2.2.0",
"description": "A Skia based rendering backend for alphaTab.",
"module": "./dist/alphaskia.mjs",
"typings": "./dist/alphaskia.d.ts",
Expand Down Expand Up @@ -34,9 +34,9 @@
},
"homepage": "https://github.com/CoderLine/alphaSkia",
"optionalDependencies": {
"@coderline/alphaskia-linux": "^2.1.0",
"@coderline/alphaskia-macos": "^2.1.0",
"@coderline/alphaskia-windows": "^2.1.0"
"@coderline/alphaskia-linux": "^2.2.0",
"@coderline/alphaskia-macos": "^2.2.0",
"@coderline/alphaskia-windows": "^2.2.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
Expand Down
2 changes: 1 addition & 1 deletion test/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "alphaTab.alphaSkia"
version = "2.1.0-LOCAL"
version = "2.2.0-LOCAL"
// Use any latest version
var alphaSkiaVersion = version

Expand Down
3 changes: 3 additions & 0 deletions test/native/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#include <iostream>
#include <fstream>

#include <stdio.h>
#include <string.h>

#ifndef ALPHASKIA_TEST_RID
#error "Missing alphaSkia runtime identifier, please specify ALPHASKIA_TEST_RID";
#endif
Expand Down
2 changes: 1 addition & 1 deletion test/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alphaskiatest",
"version": "2.1.0",
"version": "2.2.0",
"private": true,
"scripts": {
"start": "tsx index.ts"
Expand Down

0 comments on commit e1171b8

Please sign in to comment.