Skip to content

Commit 19293a4

Browse files
committed
build: Bump version to 1.3.1
1 parent dae73e2 commit 19293a4

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@coderline/alphatab",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "alphaTab is a music notation and guitar tablature rendering library",
55
"keywords": [
66
"guitar",

scripts/update-kotlin-version.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ let version = pkg.version.match(/([0-9]+\.[0-9]+\.[0-9]+)/)[0];
66

77
if(process.argv.length === 3) {
88
// update-kotlin-version.js SNAPSHOT
9-
// -> version = "1.3.0-SNAPSHOT"
9+
// -> version = "1.3.1-SNAPSHOT"
1010
version = `${version}-${process.argv[2]}`;
1111
} else if(process.argv.length === 2) {
1212
// update-kotlin-version.js
13-
// -> version = "1.3.0"
13+
// -> version = "1.3.1"
1414
}
1515

1616
console.log(`Updating Version to ${version}`);

src.csharp/Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
<PropertyGroup>
33
<DebugType>portable</DebugType>
44
<DebugSymbols>true</DebugSymbols>
5-
<Version>1.3.0</Version>
6-
<AssemblyVersion>1.3.0.0</AssemblyVersion>
5+
<Version>1.3.1</Version>
6+
<AssemblyVersion>1.3.1.0</AssemblyVersion>
77
<FileVersion>$(AssemblyVersion)</FileVersion>
88
<Authors>Danielku15</Authors>
99
<Company>CoderLine</Company>

src.kotlin/alphaTab/alphaTab/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import java.util.Properties
66
// Common
77

88
group = "net.alphatab"
9-
version = "1.3.0-SNAPSHOT"
9+
version = "1.3.1-SNAPSHOT"
1010
plugins {
1111
// Common
1212
alias(libs.plugins.kotlinMultiplatform)

0 commit comments

Comments
 (0)